azure-maps-control 3.1.0 → 3.1.2
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 +29 -8
- package/dist/atlas-core-bare.js +29 -8
- package/dist/atlas-core-bare.min.js +1 -1
- package/dist/atlas-core-snr.js +29 -8
- package/dist/atlas-core.js +29 -8
- package/dist/atlas-core.min.js +1 -1
- package/dist/atlas-esm.js +493 -557
- package/dist/atlas-esm.min.js +1 -1
- package/dist/atlas.css +3 -2
- package/dist/atlas.js +493 -557
- package/dist/atlas.min.css +1 -1
- package/dist/atlas.min.js +4 -4
- package/package.json +5 -5
- package/thirdpartynotices.txt +0 -0
- package/typings/index.d.ts +8 -3
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "azure-maps-control",
|
|
3
3
|
"author": "Microsoft Corporation",
|
|
4
|
-
"version": "3.1.
|
|
4
|
+
"version": "3.1.2",
|
|
5
5
|
"description": "Map SDK for Azure Maps",
|
|
6
6
|
"keywords": [
|
|
7
7
|
"azure",
|
|
@@ -40,8 +40,8 @@
|
|
|
40
40
|
},
|
|
41
41
|
"devDependencies": {
|
|
42
42
|
"@mapbox/mapbox-gl-rtl-text": "^0.2.3",
|
|
43
|
-
"@microsoft/applicationinsights-web": "^3.0.
|
|
44
|
-
"@playwright/test": "^1.
|
|
43
|
+
"@microsoft/applicationinsights-web": "^3.0.7",
|
|
44
|
+
"@playwright/test": "^1.41.1",
|
|
45
45
|
"@rollup/plugin-commonjs": "^25.0.4",
|
|
46
46
|
"@rollup/plugin-json": "^6.0.0",
|
|
47
47
|
"@rollup/plugin-node-resolve": "^15.1.0",
|
|
@@ -56,7 +56,7 @@
|
|
|
56
56
|
"azuremaps-maplibre-gl": "^3.6.1",
|
|
57
57
|
"canvas": "^2.10.2",
|
|
58
58
|
"es-abstract": "^1.22.1",
|
|
59
|
-
"eslint": "^8.
|
|
59
|
+
"eslint": "^8.55.0",
|
|
60
60
|
"eslint-plugin-security": "^1.5.0",
|
|
61
61
|
"estree-walker": "^3.0.0",
|
|
62
62
|
"fs-extra": "^11.0.0",
|
|
@@ -77,7 +77,7 @@
|
|
|
77
77
|
"rollup-plugin-sourcemaps": "^0.6.3",
|
|
78
78
|
"rollup-plugin-uglify": "^6.0.4",
|
|
79
79
|
"simplify-ts": "^1.0.2",
|
|
80
|
-
"ts-jest": "^29.
|
|
80
|
+
"ts-jest": "^29.1.1",
|
|
81
81
|
"ts-node": "^10.0.0",
|
|
82
82
|
"typescript": "^5.0.0",
|
|
83
83
|
"utf-8-validate": "^6.0.0",
|
package/thirdpartynotices.txt
CHANGED
|
Binary file
|
package/typings/index.d.ts
CHANGED
|
@@ -3426,11 +3426,16 @@ declare namespace atlas {
|
|
|
3426
3426
|
* @default 0.5
|
|
3427
3427
|
*/
|
|
3428
3428
|
fillOpacity?: number | DataDrivenPropertyValueSpecification<number>;
|
|
3429
|
-
|
|
3430
3429
|
/**
|
|
3431
3430
|
* Name of image in sprite to use for drawing image fills. For seamless patterns, image width must be a factor of two (2, 4, 8, ..., 512).
|
|
3432
3431
|
*/
|
|
3433
3432
|
fillPattern?: string | DataDrivenPropertyValueSpecification<string>;
|
|
3433
|
+
/**
|
|
3434
|
+
* Whether or not the fill should be antialiased.
|
|
3435
|
+
* Default `true`.
|
|
3436
|
+
* @default true
|
|
3437
|
+
*/
|
|
3438
|
+
fillAntialias?: boolean;
|
|
3434
3439
|
}
|
|
3435
3440
|
|
|
3436
3441
|
/**
|
|
@@ -4831,10 +4836,10 @@ declare namespace atlas {
|
|
|
4831
4836
|
*/
|
|
4832
4837
|
enableAccessibility?: boolean;
|
|
4833
4838
|
/**
|
|
4834
|
-
* Enable fallback to geocoder for
|
|
4839
|
+
* Enable the fallback to the REST API geocoder for detecting location accessibility if extracting location from vector data fails.
|
|
4840
|
+
* Disabling this option will prevent the generation of geocode API requests but may lead to a lack of location information for screen readers.
|
|
4835
4841
|
* default: true
|
|
4836
4842
|
* @default true
|
|
4837
|
-
* @internal
|
|
4838
4843
|
*/
|
|
4839
4844
|
enableAccessibilityLocationFallback?: boolean;
|
|
4840
4845
|
/**
|