Syncing drawings!

This commit is contained in:
2019-08-30 23:30:15 -04:00
parent 1ef1655ccb
commit 50986f06b7
4 changed files with 177 additions and 107 deletions

View File

@ -7,6 +7,7 @@ export interface MapData {
circles?: Circle[];
markers?: Marker[];
measurements?: Measurement[];
polylines?: Polyline[];
rectangles?: Rectangle[];
}
@ -35,6 +36,7 @@ export interface Rectangle extends MapSymbol {
export interface Polyline extends MapSymbol {
latlng: LatLng[];
weight?: number;
}
export interface Marker extends MapSymbol {