location maps

This commit is contained in:
CHIEFSOFT\ameye
2023-10-25 17:34:16 -04:00
parent 21e31da332
commit 0ce80a0d20
21 changed files with 360 additions and 8 deletions
+14
View File
@@ -0,0 +1,14 @@
export interface Location {
country: string;
lat: number;
lng: number;
description: string;
locations: Array<Locations>;
}
export interface Locations {
name: string;
lat: number;
lng: number;
description: string;
}
+11
View File
@@ -0,0 +1,11 @@
export interface MarkerEl {
coordinate: Coordinate;
markerId: string;
title: string;
snippet: string;
}
export interface Coordinate {
lat: number;
lng: number;
}