src/lib/interface/marker-options.ts
Properties |
| clickable |
clickable:
|
Type : boolean
|
| Optional |
| label |
label:
|
Type : string | google.maps.MarkerLabel
|
| Optional |
|
not supported by here maps |
| title |
title:
|
Type : string
|
| Optional |
|
not supported by here maps |
| visible |
visible:
|
Type : boolean
|
| Optional |
| zIndex |
zIndex:
|
Type : number
|
| Optional |
export interface MarkerOptions {
/**
* not supported by here maps
*/
label?: string | google.maps.MarkerLabel;
/**
* not supported by here maps
*/
title?: string;
visible?: boolean;
zIndex?: number;
clickable?: boolean;
}