src/lib/interface/marker-icon.ts
Properties |
|
fillColor |
fillColor:
|
Type : string
|
Optional |
fillOpacity |
fillOpacity:
|
Type : number
|
Optional |
path |
path:
|
Type : string | undefined
|
rotation |
rotation:
|
Type : number
|
Optional |
scale |
scale:
|
Type : number
|
Optional |
strokeColor |
strokeColor:
|
Type : string
|
Optional |
strokeOpacity |
strokeOpacity:
|
Type : number
|
Optional |
strokeWeight |
strokeWeight:
|
Type : number
|
Optional |
url |
url:
|
Type : string
|
Optional |
export interface MarkerIcon {
url?: string;
fillColor?: string;
fillOpacity?: number;
path: string | undefined;
rotation?: number;
scale?: number;
strokeColor?: string;
strokeOpacity?: number;
strokeWeight?: number;
}