Rectangle

A rectangular area defined by two corners

EnvironmentGeocodingGeolocationMapsNavigationPlacesRoutingSolar

Properties

Name Type Description
low object
high object
View JSON Schema on GitHub

JSON Schema

google-maps-rectangle-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Rectangle",
  "title": "Rectangle",
  "type": "object",
  "description": "A rectangular area defined by two corners",
  "properties": {
    "low": {
      "$ref": "#/components/schemas/LatLng"
    },
    "high": {
      "$ref": "#/components/schemas/LatLng"
    }
  },
  "required": [
    "low",
    "high"
  ]
}