LatLng

A latitude/longitude coordinate pair

EnvironmentGeocodingGeolocationMapsNavigationPlacesRoutingSolar

Properties

Name Type Description
latitude number Latitude in decimal degrees
longitude number Longitude in decimal degrees
View JSON Schema on GitHub

JSON Schema

google-maps-places-lat-lng-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "LatLng",
  "type": "object",
  "description": "A latitude/longitude coordinate pair",
  "properties": {
    "latitude": {
      "type": "number",
      "description": "Latitude in decimal degrees"
    },
    "longitude": {
      "type": "number",
      "description": "Longitude in decimal degrees"
    }
  }
}