Circle

A circle defined by center point and radius

EnvironmentGeocodingGeolocationMapsNavigationPlacesRoutingSolar

Properties

Name Type Description
center object
radius number The radius of the circle in meters
View JSON Schema on GitHub

JSON Schema

google-maps-circle-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Circle",
  "title": "Circle",
  "type": "object",
  "description": "A circle defined by center point and radius",
  "properties": {
    "center": {
      "$ref": "#/components/schemas/LatLng"
    },
    "radius": {
      "type": "number",
      "format": "double",
      "description": "The radius of the circle in meters",
      "example": 500.0
    }
  },
  "required": [
    "center",
    "radius"
  ]
}