User positions

This commit is contained in:
2019-09-01 15:00:05 -04:00
parent eff9b213ed
commit ceced97496
5 changed files with 118 additions and 92 deletions

View File

@ -5,7 +5,7 @@ export interface LatLng {
export interface MapData {
circles?: Circle[];
locations?: Marker[];
locations?: {[key: string]: Marker};
markers?: Marker[];
measurements?: Measurement[];
polygons?: Polygon[];
@ -16,6 +16,7 @@ export interface MapData {
export interface MapSymbol {
symbol?: any;
latlng?: LatLng | LatLng[];
new?: boolean;
noDelete?: boolean;
noDeleteTool?: boolean;
noSelect?: boolean;