@vaadin/map 24.0.0-alpha1 → 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/LICENSE +1105 -248
- package/README.md +1 -1
- package/package.json +6 -6
- package/src/vaadin-map.d.ts +7 -2
- package/src/vaadin-map.js +17 -12
- package/theme/lumo/vaadin-map-styles.js +7 -2
- package/theme/lumo/vaadin-map.js +7 -2
- package/theme/material/vaadin-map-styles.js +7 -2
- package/theme/material/vaadin-map.js +7 -2
- package/web-types.json +1 -1
- package/web-types.lit.json +1 -1
package/README.md
CHANGED
|
@@ -35,7 +35,7 @@ Read the [contributing guide](https://vaadin.com/docs/latest/contributing/overvi
|
|
|
35
35
|
|
|
36
36
|
## License
|
|
37
37
|
|
|
38
|
-
|
|
38
|
+
This program is available under Vaadin Commercial License and Service Terms. For license terms, see LICENSE.
|
|
39
39
|
|
|
40
40
|
Vaadin collects usage statistics at development time to improve this product.
|
|
41
41
|
For details and to opt-out, see https://github.com/vaadin/vaadin-usage-statistics.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vaadin/map",
|
|
3
|
-
"version": "24.0.0-
|
|
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": "24.0.0-
|
|
40
|
-
"@vaadin/vaadin-lumo-styles": "24.0.0-
|
|
41
|
-
"@vaadin/vaadin-material-styles": "24.0.0-
|
|
42
|
-
"@vaadin/vaadin-themable-mixin": "24.0.0-
|
|
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
|
@@ -1,7 +1,12 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @license
|
|
3
|
-
* Copyright (c)
|
|
4
|
-
*
|
|
3
|
+
* Copyright (c) 2000 - 2023 Vaadin Ltd.
|
|
4
|
+
*
|
|
5
|
+
* This program is available under Vaadin Commercial License and Service Terms.
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* See https://vaadin.com/commercial-license-and-service-terms for the full
|
|
9
|
+
* license.
|
|
5
10
|
*/
|
|
6
11
|
import type OpenLayersMap from 'ol/Map.js';
|
|
7
12
|
import { ElementMixin, FocusMixin, ResizeMixin } from '@vaadin/component-base';
|
package/src/vaadin-map.js
CHANGED
|
@@ -1,7 +1,12 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @license
|
|
3
|
-
* Copyright (c)
|
|
4
|
-
*
|
|
3
|
+
* Copyright (c) 2000 - 2023 Vaadin Ltd.
|
|
4
|
+
*
|
|
5
|
+
* This program is available under Vaadin Commercial License and Service Terms.
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* See https://vaadin.com/commercial-license-and-service-terms for the full
|
|
9
|
+
* license.
|
|
5
10
|
*/
|
|
6
11
|
import { html, PolymerElement } from '@polymer/polymer/polymer-element.js';
|
|
7
12
|
import { defaults as defaultControls } from 'ol/control';
|
|
@@ -374,16 +379,6 @@ class Map extends ResizeMixin(FocusMixin(ElementMixin(ThemableMixin(PolymerEleme
|
|
|
374
379
|
return 'vaadin-map';
|
|
375
380
|
}
|
|
376
381
|
|
|
377
|
-
/**
|
|
378
|
-
* The internal OpenLayers map instance used to configure the map.
|
|
379
|
-
* See the OpenLayers [API](https://openlayers.org/en/latest/apidoc/) and
|
|
380
|
-
* [examples](https://openlayers.org/en/latest/examples/) for further information.
|
|
381
|
-
* @returns {*}
|
|
382
|
-
*/
|
|
383
|
-
get configuration() {
|
|
384
|
-
return this._configuration;
|
|
385
|
-
}
|
|
386
|
-
|
|
387
382
|
constructor() {
|
|
388
383
|
super();
|
|
389
384
|
// Create map container element and initialize OL map instance
|
|
@@ -405,6 +400,16 @@ class Map extends ResizeMixin(FocusMixin(ElementMixin(ThemableMixin(PolymerEleme
|
|
|
405
400
|
this._configuration = new OpenLayersMap(options);
|
|
406
401
|
}
|
|
407
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
|
+
|
|
408
413
|
/** @protected */
|
|
409
414
|
ready() {
|
|
410
415
|
super.ready();
|
|
@@ -1,7 +1,12 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @license
|
|
3
|
-
* Copyright (c)
|
|
4
|
-
*
|
|
3
|
+
* Copyright (c) 2000 - 2023 Vaadin Ltd.
|
|
4
|
+
*
|
|
5
|
+
* This program is available under Vaadin Commercial License and Service Terms.
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* See https://vaadin.com/commercial-license-and-service-terms for the full
|
|
9
|
+
* license.
|
|
5
10
|
*/
|
|
6
11
|
import '@vaadin/vaadin-lumo-styles/color.js';
|
|
7
12
|
import '@vaadin/vaadin-lumo-styles/typography.js';
|
package/theme/lumo/vaadin-map.js
CHANGED
|
@@ -1,7 +1,12 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @license
|
|
3
|
-
* Copyright (c)
|
|
4
|
-
*
|
|
3
|
+
* Copyright (c) 2000 - 2023 Vaadin Ltd.
|
|
4
|
+
*
|
|
5
|
+
* This program is available under Vaadin Commercial License and Service Terms.
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* See https://vaadin.com/commercial-license-and-service-terms for the full
|
|
9
|
+
* license.
|
|
5
10
|
*/
|
|
6
11
|
import './vaadin-map-styles.js';
|
|
7
12
|
import '../../src/vaadin-map.js';
|
|
@@ -1,7 +1,12 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @license
|
|
3
|
-
* Copyright (c)
|
|
4
|
-
*
|
|
3
|
+
* Copyright (c) 2000 - 2023 Vaadin Ltd.
|
|
4
|
+
*
|
|
5
|
+
* This program is available under Vaadin Commercial License and Service Terms.
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* See https://vaadin.com/commercial-license-and-service-terms for the full
|
|
9
|
+
* license.
|
|
5
10
|
*/
|
|
6
11
|
import '@vaadin/vaadin-material-styles/color.js';
|
|
7
12
|
import '@vaadin/vaadin-material-styles/shadow.js';
|
|
@@ -1,7 +1,12 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @license
|
|
3
|
-
* Copyright (c)
|
|
4
|
-
*
|
|
3
|
+
* Copyright (c) 2000 - 2023 Vaadin Ltd.
|
|
4
|
+
*
|
|
5
|
+
* This program is available under Vaadin Commercial License and Service Terms.
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* See https://vaadin.com/commercial-license-and-service-terms for the full
|
|
9
|
+
* license.
|
|
5
10
|
*/
|
|
6
11
|
import './vaadin-map-styles.js';
|
|
7
12
|
import '../../src/vaadin-map.js';
|
package/web-types.json
CHANGED