Type alias GeoPoint

GeoPoint: {
    altitude?: number;
    latitude: number;
    longitude: number;
} | CanonicalGeoPoint | GeoPosition

Represents a point in spherical geometry. This type cannot be used on its own, only as a building block for the other geospatial types. (GeoCircle, GeoBox, GeoPolygon).

Type declaration

  • Optional altitude?: number
  • latitude: number
  • longitude: number

Generated using TypeDoc