UNPKG

@metadev/lux

Version:

Lux: Library with User Interface components for Angular.

8 lines (7 loc) 165 B
/** From https://en.wikipedia.org/wiki/GeoJSON * Stored as [ longitude, latitude ] */ export interface GeoPoint { type: 'Point'; coordinates: number[]; }