{
  "schemaVersion": "1.0.0",
  "readme": "",
  "modules": [
    {
      "kind": "javascript-module",
      "path": "vaadin-map.js",
      "declarations": [],
      "exports": [
        {
          "kind": "js",
          "name": "*",
          "declaration": {
            "name": "*",
            "module": "src/vaadin-map.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "src/vaadin-map-mixin.js",
      "declarations": [
        {
          "kind": "mixin",
          "description": "",
          "name": "MapMixin",
          "members": [
            {
              "kind": "field",
              "name": "configuration",
              "description": "The internal OpenLayers map instance used to configure the map.\nSee the OpenLayers [API](https://openlayers.org/en/latest/apidoc/) and\n[examples](https://openlayers.org/en/latest/examples/) for further information.",
              "return": {
                "type": {
                  "text": "*"
                }
              },
              "readonly": true
            }
          ],
          "mixins": [
            {
              "name": "FocusMixin",
              "package": "@vaadin/a11y-base/src/focus-mixin.js"
            },
            {
              "name": "ResizeMixin",
              "package": "@vaadin/component-base/src/resize-mixin.js"
            }
          ],
          "parameters": [
            {
              "name": "superClass"
            }
          ]
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "MapMixin",
          "declaration": {
            "name": "MapMixin",
            "module": "src/vaadin-map-mixin.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "src/vaadin-map.js",
      "declarations": [
        {
          "kind": "class",
          "description": "`vaadin-map` is a web component for displaying web maps.\n\nThe component is a light-weight wrapper around the OpenLayers mapping library.\n\n### Basic Usage\n\nAdd a `<vaadin-map>` element to your HTML:\n\n```html\n<vaadin-map></vaadin-map>\n```\n\nThen use the exposed OpenLayers API to configure it:\n```html\n<script type=\"module\">\n  import \"@vaadin/map\";\n  import TileLayer from \"ol/layer/Tile\";\n  import OSM from \"ol/source/OSM\";\n  import View from \"ol/View\";\n\n  const map = document.querySelector(\"vaadin-map\");\n  customElements.whenDefined(\"vaadin-map\").then(() => {\n    map.configuration.addLayer(new TileLayer({\n      source: new OSM()\n    }));\n    map.configuration.setView(new View({\n      center: [0, 0],\n      zoom: 3\n    }));\n  });\n</script>\n```",
          "name": "Map",
          "members": [
            {
              "kind": "field",
              "name": "configuration",
              "description": "The internal OpenLayers map instance used to configure the map.\nSee the OpenLayers [API](https://openlayers.org/en/latest/apidoc/) and\n[examples](https://openlayers.org/en/latest/examples/) for further information.",
              "return": {
                "type": {
                  "text": "*"
                }
              },
              "readonly": true,
              "inheritedFrom": {
                "name": "MapMixin",
                "module": "src/vaadin-map-mixin.js"
              }
            }
          ],
          "mixins": [
            {
              "name": "MapMixin",
              "module": "src/vaadin-map-mixin.js"
            },
            {
              "name": "ThemableMixin",
              "package": "@vaadin/vaadin-themable-mixin/vaadin-themable-mixin.js"
            },
            {
              "name": "ElementMixin",
              "package": "@vaadin/component-base/src/element-mixin.js"
            },
            {
              "name": "PolylitMixin",
              "package": "@vaadin/component-base/src/polylit-mixin.js"
            },
            {
              "name": "LumoInjectionMixin",
              "package": "@vaadin/vaadin-themable-mixin/lumo-injection-mixin.js"
            }
          ],
          "superclass": {
            "name": "LitElement",
            "package": "lit"
          },
          "tagName": "vaadin-map",
          "customElement": true,
          "attributes": [],
          "events": []
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "Map",
          "declaration": {
            "name": "Map",
            "module": "src/vaadin-map.js"
          }
        }
      ]
    }
  ]
}
