src/interface/polyline-options.ts
Properties |
|
fillColor |
fillColor:
|
Type : string
|
Optional |
lineWidth |
lineWidth:
|
Type : number
|
Optional |
path |
path:
|
Type : LatLng[]
|
strokeColor |
strokeColor:
|
Type : string
|
Optional |
import { LatLng } from './lat-lng';
export interface PolylineOptions {
strokeColor?: string;
fillColor?: string;
lineWidth?: number;
path: LatLng[];
}