Interface CanonicalGeoPoint

Interface that satisfies the GeoJSON specification for a point. Any embedded object that adhere to this interface can be queried in geospatial queries. Additionally, this can be used as one of the possible forms of GeoPoint.

interface CanonicalGeoPoint {
    coordinates: GeoPosition;
    type: "Point";
}

Properties

Properties

coordinates: GeoPosition
type: "Point"

Generated using TypeDoc