src/interface/control-options.interface.ts
Properties |
| draggable |
draggable:
|
Type : boolean
|
| enableDoubleClickZoom |
enableDoubleClickZoom:
|
Type : boolean
|
| keyboardShortcuts |
keyboardShortcuts:
|
Type : boolean
|
| mapTypeControl |
mapTypeControl:
|
Type : boolean
|
| rotateControl |
rotateControl:
|
Type : boolean
|
| scaleControl |
scaleControl:
|
Type : boolean
|
| scrollwheel |
scrollwheel:
|
Type : boolean
|
| streetViewControl |
streetViewControl:
|
Type : boolean
|
| zoomControl |
zoomControl:
|
Type : boolean
|
export interface IControlOptions {
mapTypeControl: boolean;
rotateControl: boolean;
scaleControl: boolean;
streetViewControl: boolean;
zoomControl: boolean;
enableDoubleClickZoom: boolean; // Not Implemented
draggable: boolean; // Not Implemented
keyboardShortcuts: boolean; // Not Implemented
scrollwheel: boolean;
}