export class GeoJSON { geometry: GeoGeometry = null as any; properties: GeoProperties = null as any; type: string = null as any; } export class GeoGeometry { coordinates: number[][] = null as any; type: string = null as any; } export class GeoProperties { 'stroke-opacity': number = null as any; 'stroke-width': number = null as any; MarkerLocation?: number[] = null as any; label: string = null as any; stroke: string = null as any; }