src/app/features/location/coordinates.ts
Properties |
| accuracy |
accuracy:
|
Type : number
|
| Optional |
|
optional accuracy (e.g. from GPS location sensor) |
| lat |
lat:
|
Type : number
|
| lon |
lon:
|
Type : number
|
export interface Coordinates {
lat: number;
lon: number;
/** optional accuracy (e.g. from GPS location sensor) */
accuracy?: number;
}