Everything but user location & drawings are saving

This commit is contained in:
2019-08-30 22:51:29 -04:00
parent ac01076973
commit 1ef1655ccb
8 changed files with 7995 additions and 135 deletions

View File

@ -3,6 +3,13 @@ export interface LatLng {
lng: number;
}
export interface MapData {
circles?: Circle[];
markers?: Marker[];
measurements?: Measurement[];
rectangles?: Rectangle[];
}
export interface MapSymbol {
symbol?: any;
latlng?: LatLng | LatLng[];