LatLng

A latitude/longitude coordinate pair

EnvironmentGeocodingGeolocationMapsNavigationPlacesRoutingSolar

Properties

Name Type Description
lat number Latitude in decimal degrees
lng number Longitude in decimal degrees
View JSON Schema on GitHub

JSON Schema

google-maps-latlng-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/LatLng",
  "title": "LatLng",
  "type": "object",
  "description": "A latitude/longitude coordinate pair",
  "properties": {
    "lat": {
      "type": "number",
      "format": "double",
      "description": "Latitude in decimal degrees",
      "example": 42.5
    },
    "lng": {
      "type": "number",
      "format": "double",
      "description": "Longitude in decimal degrees",
      "example": 42.5
    }
  },
  "required": [
    "lat",
    "lng"
  ]
}