projects/geocoder-ts/src/lib/models/Location.ts
Properties |
| city |
city:
|
Type : string
|
| country |
country:
|
Type : string
|
| latitude |
latitude:
|
Type : number
|
| longitude |
longitude:
|
Type : number
|
| state |
state:
|
Type : string
|
| zip |
zip:
|
Type : string
|
export interface Location {
city: string;
state: string;
zip: string;
country: string;
latitude: number;
longitude: number;
}