@vaadin/map 23.3.3 → 24.0.0-alpha10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +6 -6
- package/src/vaadin-map.d.ts +1 -1
- package/src/vaadin-map.js +11 -11
- package/theme/lumo/vaadin-map-styles.js +1 -1
- package/theme/lumo/vaadin-map.js +1 -1
- package/theme/material/vaadin-map-styles.js +1 -1
- package/theme/material/vaadin-map.js +1 -1
- package/web-types.json +1 -1
- package/web-types.lit.json +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vaadin/map",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "24.0.0-alpha10",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -36,10 +36,10 @@
|
|
|
36
36
|
],
|
|
37
37
|
"dependencies": {
|
|
38
38
|
"@polymer/polymer": "^3.0.0",
|
|
39
|
-
"@vaadin/component-base": "
|
|
40
|
-
"@vaadin/vaadin-lumo-styles": "
|
|
41
|
-
"@vaadin/vaadin-material-styles": "
|
|
42
|
-
"@vaadin/vaadin-themable-mixin": "
|
|
39
|
+
"@vaadin/component-base": "24.0.0-alpha10",
|
|
40
|
+
"@vaadin/vaadin-lumo-styles": "24.0.0-alpha10",
|
|
41
|
+
"@vaadin/vaadin-material-styles": "24.0.0-alpha10",
|
|
42
|
+
"@vaadin/vaadin-themable-mixin": "24.0.0-alpha10",
|
|
43
43
|
"ol": "6.13.0"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
@@ -52,5 +52,5 @@
|
|
|
52
52
|
"web-types.json",
|
|
53
53
|
"web-types.lit.json"
|
|
54
54
|
],
|
|
55
|
-
"gitHead": "
|
|
55
|
+
"gitHead": "2e04534d8b47bcd216f89b5f849bafef1a73b174"
|
|
56
56
|
}
|
package/src/vaadin-map.d.ts
CHANGED
package/src/vaadin-map.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @license
|
|
3
|
-
* Copyright (c) 2000 -
|
|
3
|
+
* Copyright (c) 2000 - 2023 Vaadin Ltd.
|
|
4
4
|
*
|
|
5
5
|
* This program is available under Vaadin Commercial License and Service Terms.
|
|
6
6
|
*
|
|
@@ -379,16 +379,6 @@ class Map extends ResizeMixin(FocusMixin(ElementMixin(ThemableMixin(PolymerEleme
|
|
|
379
379
|
return 'vaadin-map';
|
|
380
380
|
}
|
|
381
381
|
|
|
382
|
-
/**
|
|
383
|
-
* The internal OpenLayers map instance used to configure the map.
|
|
384
|
-
* See the OpenLayers [API](https://openlayers.org/en/latest/apidoc/) and
|
|
385
|
-
* [examples](https://openlayers.org/en/latest/examples/) for further information.
|
|
386
|
-
* @returns {*}
|
|
387
|
-
*/
|
|
388
|
-
get configuration() {
|
|
389
|
-
return this._configuration;
|
|
390
|
-
}
|
|
391
|
-
|
|
392
382
|
constructor() {
|
|
393
383
|
super();
|
|
394
384
|
// Create map container element and initialize OL map instance
|
|
@@ -410,6 +400,16 @@ class Map extends ResizeMixin(FocusMixin(ElementMixin(ThemableMixin(PolymerEleme
|
|
|
410
400
|
this._configuration = new OpenLayersMap(options);
|
|
411
401
|
}
|
|
412
402
|
|
|
403
|
+
/**
|
|
404
|
+
* The internal OpenLayers map instance used to configure the map.
|
|
405
|
+
* See the OpenLayers [API](https://openlayers.org/en/latest/apidoc/) and
|
|
406
|
+
* [examples](https://openlayers.org/en/latest/examples/) for further information.
|
|
407
|
+
* @returns {*}
|
|
408
|
+
*/
|
|
409
|
+
get configuration() {
|
|
410
|
+
return this._configuration;
|
|
411
|
+
}
|
|
412
|
+
|
|
413
413
|
/** @protected */
|
|
414
414
|
ready() {
|
|
415
415
|
super.ready();
|
package/theme/lumo/vaadin-map.js
CHANGED
package/web-types.json
CHANGED