Added better distance measuring
This commit is contained in:
3
src/app/models/map.ts
Normal file
3
src/app/models/map.ts
Normal file
@ -0,0 +1,3 @@
|
||||
export interface Map {
|
||||
name: string
|
||||
}
|
8
src/app/models/marker.ts
Normal file
8
src/app/models/marker.ts
Normal file
@ -0,0 +1,8 @@
|
||||
export class Marker {
|
||||
latitude: number;
|
||||
longitude: number;
|
||||
name: string;
|
||||
color: string;
|
||||
notes: string;
|
||||
icon: string;
|
||||
}
|
Reference in New Issue
Block a user