azure-maps-control 2.3.6 → 2.3.7
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.js +28 -8
- package/dist/atlas-core-bare.js +28 -8
- package/dist/atlas-core-bare.min.js +1 -1
- package/dist/atlas-core-snr.js +28 -8
- package/dist/atlas-core.js +28 -8
- package/dist/atlas-core.min.js +1 -1
- package/dist/atlas.css +3 -2
- package/dist/atlas.js +28 -8
- package/dist/atlas.min.css +1 -1
- package/dist/atlas.min.js +1 -1
- package/package.json +1 -1
- package/typings/index.d.ts +8 -3
package/package.json
CHANGED
package/typings/index.d.ts
CHANGED
|
@@ -3358,11 +3358,16 @@ declare namespace atlas {
|
|
|
3358
3358
|
* @default 0.5
|
|
3359
3359
|
*/
|
|
3360
3360
|
fillOpacity?: number | Expression;
|
|
3361
|
-
|
|
3362
3361
|
/**
|
|
3363
3362
|
* 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).
|
|
3364
3363
|
*/
|
|
3365
3364
|
fillPattern?: string | Expression;
|
|
3365
|
+
/**
|
|
3366
|
+
* Whether or not the fill should be antialiased.
|
|
3367
|
+
* Default `true`.
|
|
3368
|
+
* @default true
|
|
3369
|
+
*/
|
|
3370
|
+
fillAntialias?: boolean;
|
|
3366
3371
|
}
|
|
3367
3372
|
|
|
3368
3373
|
/**
|
|
@@ -4718,10 +4723,10 @@ declare namespace atlas {
|
|
|
4718
4723
|
*/
|
|
4719
4724
|
enableAccessibility?: boolean;
|
|
4720
4725
|
/**
|
|
4721
|
-
* Enable fallback to geocoder for
|
|
4726
|
+
* Enable the fallback to the REST API geocoder for detecting location accessibility if extracting location from vector data fails.
|
|
4727
|
+
* Disabling this option will prevent the generation of geocode API requests but may lead to a lack of location information for screen readers.
|
|
4722
4728
|
* default: true
|
|
4723
4729
|
* @default true
|
|
4724
|
-
* @internal
|
|
4725
4730
|
*/
|
|
4726
4731
|
enableAccessibilityLocationFallback?: boolean;
|
|
4727
4732
|
/**
|