src/interface/marker-options.ts
Properties |
| icon |
icon:
|
Type : any
|
| Optional |
| label |
label:
|
Type : any
|
| Optional |
| position |
position:
|
Type : LatLng
|
| Optional |
| title |
title:
|
Type : string
|
| Optional |
| visible |
visible:
|
Type : boolean
|
| Optional |
| zIndex |
zIndex:
|
Type : number
|
| Optional |
import { LatLng } from './lat-lng';
export interface MarkerOptions {
position?: LatLng;
title?: string;
visible?: boolean;
zIndex?: number;
icon?: any;
label?: any;
}