{
  "apiVersion": 3,
  "title": "Map",
  "name": "brandy/map",
  "category": "brandy-blocks",
  "description": "Display an interactive map",
  "attributes": {
    "currentAddress": {
      "type": "string",
      "default": ""
    },
    "locations": {
      "type": "array",
      "default": [
        {
          "address": "New York, USA",
          "iconUrl": "",
          "popupText": ""
        }
      ],
      "items": {
        "type": "object",
        "properties": {
          "address": {
            "type": "string"
          },
          "iconUrl": {
            "type": "string"
          },
          "popupText": {
            "type": "string"
          }
        }
      }
    },
    "zoomLevel": {
      "type": "number",
      "default": 12
    }
  },
  "supports": {
    "reusable": false,
    "html": false,
    "spacing": {
      "blockGap": {
        "__experimentalDefault": "1.25em"
      },
      "margin": true,
      "padding": true,
      "__experimentalDefaultControls": {
        "blockGap": true
      }
    },
    "dimensions": {
      "minHeight": true
    },
    "__experimentalBorder": {
      "color": true,
      "radius": true,
      "style": true,
      "width": true,
      "__experimentalDefaultControls": {
        "color": true,
        "radius": true,
        "style": true,
        "width": true
      }
    },
    "interactivity": {
      "clientNavigation": true
    }
  },
  "example": {
    "viewportWidth": 1400
  },
  "editorScript": "file:./index.js",
  "editorStyle": "file:./index.css",
  "style": "file:./style-index.css",
  "script": "brandy-blocks/map"
}