{
  "$schema": "https://schemas.wp.org/trunk/block.json",
  "apiVersion": 3,
  "name": "easy-map/easy-block-map",
  "version": "0.1.0",
  "title": "Easy Leaflet Map",
  "category": "widgets",
  "icon": "location",
  "description": "Easy block scaffolded with Create Block tool.",
  "example": {},
  "supports": {
    "html": false,
    "align": true
  },
  "attributes": {
    "lat": {
      "type": "number",
      "default": 51.505
    },
    "lon": {
      "type": "number",
      "default": -0.09
    },
    "zoom": {
      "type": "number",
      "default": 13
    },
    "height": {
      "type": "number",
      "default": 400
    },
    "dragging": {
      "type": "boolean",
      "default": true
    },
    "openPopup": {
      "type": "boolean",
      "default": false
    },
    "popup": {
      "type": "string",
      "default": ""
    },
    "zoomControl": {
      "type": "boolean",
      "default": true
    },
    "zoomControlPosition": {
      "type": "string",
      "default": "topleft"
    },
    "scrollWheelZoom": {
      "type": "boolean",
      "default": true
    },
    "fullScreen": {
      "type": "boolean",
      "default": false
    },
    "tilelayer": {
      "type": "string",
      "default": "osm"
    },
    "googleMapKey": {
      "type": "string",
      "default": ""
    }
  },
  "textdomain": "easy-map",
  "editorScript": "file:./index.js",
  "editorStyle": "file:./index.css",
  "style": "file:./style-index.css",
  "viewScript": "file:./view.js",
  "render": "file:./render.php"
}