waypoint visited percentage

This commit is contained in:
2023-05-07 11:09:46 +02:00
parent 4bd18c6d62
commit 92b216cbdc
7 changed files with 55 additions and 84 deletions

View File

@@ -1,5 +1,5 @@
export interface WaypointsEntity {
id?: number;
id: number;
name: string;
lat: number;
lon: number;
@@ -9,3 +9,11 @@ export interface WaypointsEntity {
distance?: number;
visited?: boolean;
}
export interface newWaypoint {
name: string;
lat: number;
lon: number;
description: string;
img: string;
locationName: string;
}