TomTom · Schema

LatLon

MapsTrafficTransportationNavigationLocationGeospatialRoutingGeocoding

Properties

Name Type Description
latitude number
longitude number
View JSON Schema on GitHub

JSON Schema

tomtom-latlon-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/LatLon",
  "title": "LatLon",
  "type": "object",
  "properties": {
    "latitude": {
      "type": "number",
      "format": "double"
    },
    "longitude": {
      "type": "number",
      "format": "double"
    }
  }
}