Made Aircrafts fetch from Server. Added OSM Objects to mission
This commit is contained in:
@@ -1,8 +1,8 @@
|
||||
export interface MissionVehicleLog {
|
||||
wayID: string;
|
||||
tags: string[];
|
||||
export interface OSMWay {
|
||||
wayID: number;
|
||||
tags: Record<string, string>;
|
||||
nodes: {
|
||||
lat: number;
|
||||
lon: number;
|
||||
};
|
||||
}[];
|
||||
}
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
export * from "./ParticipantLog";
|
||||
export * from "./MissionVehicleLog";
|
||||
export * from "./User";
|
||||
export * from "./OSMway";
|
||||
|
||||
Reference in New Issue
Block a user