src/app/features/location/geo-location.ts
A location both as custom string and an optional geo location lookup.
Properties |
|
geoLookup |
geoLookup:
|
Type : GeoResult
|
Optional |
locationString |
locationString:
|
Type : string
|
Optional |
import { GeoResult } from "./geo.service";
/**
* A location both as custom string and an optional geo location lookup.
*/
export interface GeoLocation {
locationString?: string;
geoLookup?: GeoResult;
}