azure-maps-control 3.2.1 → 3.3.0
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/dist/atlas-core-bare-snr-min.js +1 -1
- package/dist/atlas-core-bare-snr.js +295 -160
- package/dist/atlas-core-bare.js +295 -160
- package/dist/atlas-core-bare.min.js +1 -1
- package/dist/atlas-core-snr.js +295 -160
- package/dist/atlas-core.js +295 -160
- package/dist/atlas-core.min.js +1 -1
- package/dist/atlas-esm.js +295 -160
- package/dist/atlas-esm.min.js +3 -3
- package/dist/atlas.css +45 -6
- package/dist/atlas.js +295 -160
- package/dist/atlas.min.css +1 -1
- package/dist/atlas.min.js +1 -1
- package/package.json +3 -3
- package/typings/index.d.ts +11 -1
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "azure-maps-control",
|
|
3
3
|
"author": "Microsoft Corporation",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.3.0",
|
|
5
5
|
"description": "Map SDK for Azure Maps",
|
|
6
6
|
"keywords": [
|
|
7
7
|
"azure",
|
|
@@ -72,7 +72,7 @@
|
|
|
72
72
|
"lodash": "4.17.21",
|
|
73
73
|
"node-fetch": "^2.6.8",
|
|
74
74
|
"playwright-trx-reporter": "^1.0.6",
|
|
75
|
-
"puppeteer": "^
|
|
75
|
+
"puppeteer": "^22.14.0",
|
|
76
76
|
"rollup": "^3.28.0",
|
|
77
77
|
"rollup-plugin-sourcemaps": "^0.6.3",
|
|
78
78
|
"rollup-plugin-uglify": "^6.0.4",
|
|
@@ -88,7 +88,7 @@
|
|
|
88
88
|
"@babel/core": "7.24.4",
|
|
89
89
|
"rollup": "^3.28.0"
|
|
90
90
|
},
|
|
91
|
-
"license": "SEE LICENSE
|
|
91
|
+
"license": "SEE LICENSE.TXT",
|
|
92
92
|
"files": [
|
|
93
93
|
"typings/**/*",
|
|
94
94
|
"dist/**/*",
|
package/typings/index.d.ts
CHANGED
|
@@ -995,6 +995,15 @@ declare namespace atlas {
|
|
|
995
995
|
* Should perform any necessary cleanup for the layer.
|
|
996
996
|
*/
|
|
997
997
|
onRemove (): void;
|
|
998
|
+
/**
|
|
999
|
+
* Gets the options of the layer.
|
|
1000
|
+
*/
|
|
1001
|
+
abstract getOptions (): LayerOptions;
|
|
1002
|
+
/**
|
|
1003
|
+
* Sets the options of the layer.
|
|
1004
|
+
* @param options The new options of the layer.
|
|
1005
|
+
*/
|
|
1006
|
+
abstract setOptions (options: LayerOptions): void;
|
|
998
1007
|
}
|
|
999
1008
|
|
|
1000
1009
|
/**
|
|
@@ -4158,7 +4167,8 @@ declare namespace atlas {
|
|
|
4158
4167
|
*/
|
|
4159
4168
|
generateId?: boolean | undefined;
|
|
4160
4169
|
/**
|
|
4161
|
-
* A property to
|
|
4170
|
+
* A specified property name to be used as a feature ID (for feature state).
|
|
4171
|
+
* This can either be a property name or an object in the form `{<sourceLayer>: <propertyName>}`.
|
|
4162
4172
|
*/
|
|
4163
4173
|
promoteId?: { [key: string]: string } | string | undefined;
|
|
4164
4174
|
/**
|