Added better distance measuring

This commit is contained in:
ztimson
2019-07-22 12:58:17 -04:00
parent 105d1bb27d
commit 4c3c233f06
4 changed files with 34 additions and 17 deletions

3
src/app/models/map.ts Normal file
View File

@ -0,0 +1,3 @@
export interface Map {
name: string
}

8
src/app/models/marker.ts Normal file
View File

@ -0,0 +1,8 @@
export class Marker {
latitude: number;
longitude: number;
name: string;
color: string;
notes: string;
icon: string;
}