Skip to content

Commit

Permalink
fix(AgmMap): Add missing control opt inputs
Browse files Browse the repository at this point in the history
Closes #863
  • Loading branch information
jinder authored and sebholstein committed Jan 22, 2017
1 parent 0048ccf commit 52315b3
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions src/core/directives/map.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,10 @@ import {DataLayerManager} from './../services/managers/data-layer-manager';
inputs: [
'longitude', 'latitude', 'zoom', 'minZoom', 'maxZoom', 'draggable: mapDraggable',
'disableDoubleClickZoom', 'disableDefaultUI', 'scrollwheel', 'backgroundColor', 'draggableCursor',
'draggingCursor', 'keyboardShortcuts', 'zoomControl', 'styles', 'usePanning', 'streetViewControl',
'fitBounds', 'scaleControl', 'mapTypeControl'
'draggingCursor', 'keyboardShortcuts', 'zoomControl', 'zoomControlOptions', 'styles', 'usePanning',
'streetViewControl', 'streetViewControlOptions', 'fitBounds', 'mapTypeControl', 'mapTypeControlOptions',
'panControlOptions', 'rotateControl', 'rotateControlOptions', 'fullscreenControl', 'fullscreenControlOptions',
'scaleControl', 'scaleControlOptions'
],
outputs: [
'mapClick', 'mapRightClick', 'mapDblClick', 'centerChange', 'idle', 'boundsChange', 'zoomChange'
Expand Down Expand Up @@ -247,7 +249,7 @@ export class AgmMap implements OnChanges, OnInit, OnDestroy {
'keyboardShortcuts', 'zoomControl', 'zoomControlOptions', 'styles', 'streetViewControl',
'streetViewControlOptions', 'zoom', 'mapTypeControl', 'mapTypeControlOptions', 'minZoom',
'maxZoom', 'panControl', 'panControlOptions', 'rotateControl', 'rotateControlOptions',
'fullscreenControl', 'fullscreenControlOptions'
'fullscreenControl', 'fullscreenControlOptions', 'scaleControl', 'scaleControlOptions'
];

private _observableSubscriptions: Subscription[] = [];
Expand Down

0 comments on commit 52315b3

Please sign in to comment.