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-geocoding-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": {
    "lat": {
      "type": "number",
      "description": "Latitude in decimal degrees"
    },
    "lng": {
      "type": "number",
      "description": "Longitude in decimal degrees"
    }
  }
}