Bounds

A bounding box defined by northeast and southwest corners

EnvironmentGeocodingGeolocationMapsNavigationPlacesRoutingSolar

Properties

Name Type Description
northeast object
southwest object
View JSON Schema on GitHub

JSON Schema

google-maps-bounds-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Bounds",
  "title": "Bounds",
  "type": "object",
  "description": "A bounding box defined by northeast and southwest corners",
  "properties": {
    "northeast": {
      "$ref": "#/components/schemas/LatLng"
    },
    "southwest": {
      "$ref": "#/components/schemas/LatLng"
    }
  },
  "required": [
    "northeast",
    "southwest"
  ]
}