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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "azure-maps-control",
3
3
  "author": "Microsoft Corporation",
4
- "version": "2.3.6",
4
+ "version": "2.3.7",
5
5
  "description": "Map SDK for Azure Maps",
6
6
  "keywords": [
7
7
  "azure",
@@ -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 accessibility location, if failed to extract location from vector data.
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
  /**