Geocircle

A geographic circle (Geocircle class)

DesktopOperating SystemUWPWin32Windows

Properties

Name Type Description
center object
radiusInMeters number
View JSON Schema on GitHub

JSON Schema

microsoft-windows-10-geocircle-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Geocircle",
  "title": "Geocircle",
  "type": "object",
  "description": "A geographic circle (Geocircle class)",
  "properties": {
    "center": {
      "type": "object",
      "properties": {
        "latitude": {
          "type": "number",
          "format": "double"
        },
        "longitude": {
          "type": "number",
          "format": "double"
        },
        "altitude": {
          "type": "number",
          "format": "double"
        }
      }
    },
    "radiusInMeters": {
      "type": "number",
      "format": "double"
    }
  }
}