location maps
This commit is contained in:
@@ -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;
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
export interface MarkerEl {
|
||||
coordinate: Coordinate;
|
||||
markerId: string;
|
||||
title: string;
|
||||
snippet: string;
|
||||
}
|
||||
|
||||
export interface Coordinate {
|
||||
lat: number;
|
||||
lng: number;
|
||||
}
|
||||
Reference in New Issue
Block a user