azure-maps-control 2.1.5 → 2.1.6

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.1.5",
4
+ "version": "2.1.6",
5
5
  "description": "Map SDK for Azure Maps",
6
6
  "keywords": [
7
7
  "azure",
@@ -4361,6 +4361,23 @@ declare namespace atlas {
4361
4361
  * @default true
4362
4362
  */
4363
4363
  enableAccessibility?: boolean;
4364
+ /**
4365
+ * Controls the duration of the fade-in/fade-out animation for label collisions, in milliseconds.
4366
+ * This setting affects all symbol layers.
4367
+ * This setting does not affect the duration of runtime styling transitions or raster tile cross-fading.
4368
+ * @default 300
4369
+ */
4370
+ fadeDuration?: number;
4371
+ /**
4372
+ * Defines a CSS font-family for locally overriding generation of glyphs in the
4373
+ * 'CJK Unified Ideographs', 'Hiragana', 'Katakana' and 'Hangul Syllables' ranges.
4374
+ * In these ranges, font settings from the map's style will be ignored,
4375
+ * except for font-weight keywords (light/regular/medium/bold). Set to false,
4376
+ * to enable font settings from the map's style for these glyph ranges.
4377
+ * The purpose of this option is to avoid bandwidth-intensive glyph server requests.
4378
+ * @default 'sans-serif'
4379
+ */
4380
+ localIdeographFontFamily?: string;
4364
4381
  /**
4365
4382
  * Maximum number of images (raster tiles, sprites, icons) to load in parallel,
4366
4383
  * which affects performance in raster-heavy maps. 16 by default.