Skip to content

Commit 590200e

Browse files
author
Scott Kang
committed
release notes for 2.3.2 / 3.0.0
1 parent 4317abf commit 590200e

File tree

1 file changed

+46
-6
lines changed

1 file changed

+46
-6
lines changed

articles/azure-maps/release-notes-map-control.md

Lines changed: 46 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,40 @@ services: azure-maps
1414

1515
This document contains information about new features and other changes to the Map Control.
1616

17-
## v3 (preview)
17+
## v3 (latest)
18+
19+
### [3.0.0] (August 11, 2023)
20+
21+
#### Bug fixes (3.0.0)
22+
23+
- Fixed zoom control to take into account the `maxBounds` [CameraOptions].
24+
25+
#### Other changes (3.0.0)
26+
27+
- Phased out the style definition version `2022-08-05` and switched the default `styleDefinitionsVersion` to `2023-01-01`.
28+
29+
- Added the `mvc` parameter to encompass the map control version in both definitions and style requests.
30+
31+
#### Installation (3.0.0)
32+
33+
The version is available on [npm][3.0.0] and CDN.
34+
35+
- **NPM:** Refer to the instructions at [[email protected]][3.0.0]
36+
37+
- **CDN:** Reference the following CSS and JavaScript in the `<head>` element of an HTML file:
38+
39+
```html
40+
<link href="https://atlas.microsoft.com/sdk/javascript/mapcontrol/3.0/atlas.min.css" rel="stylesheet" />
41+
<script src="https://atlas.microsoft.com/sdk/javascript/mapcontrol/3.0/atlas.min.js"></script>
42+
```
1843

1944
### [3.0.0-preview.10] (July 11, 2023)
2045

2146
#### Bug fixes (3.0.0-preview.10)
2247

2348
- Dynamic pixel ratio fixed in underlying maplibre-gl dependency.
2449

25-
- Fixed an issue where `sortKey`, `radialOffset`, `variableAnchor` is not applied when used in `SymbolLayer` options.
50+
- Fixed an issue where `sortKey`, `radialOffset`, `variableAnchor` isn't applied when used in `SymbolLayer` options.
2651

2752
#### Installation (3.0.0-preview.10)
2853

@@ -305,17 +330,29 @@ This update is the first preview of the upcoming 3.0.0 release. The underlying [
305330
})
306331
```
307332

308-
## v2 (latest)
333+
## v2
334+
335+
### [2.3.2] (August 11, 2023)
336+
337+
#### Bug fixes (2.3.2)
338+
339+
- Fixed an issue where accessibility-related duplicated DOM elements may result when `map.setServiceOptions` is called.
340+
341+
- Fixed zoom control to take into account the `maxBounds` [CameraOptions].
342+
343+
#### Other changes (2.3.2)
344+
345+
- Added the `mvc` parameter to encompass the map control version in both definitions and style requests.
309346

310347
### [2.3.1] (June 27, 2023)
311348

312349
#### Bug fixes (2.3.1)
313350

314-
- fix `ImageSpriteManager` icon images may get removed during style change
351+
- Fix `ImageSpriteManager` icon images may get removed during style change
315352

316353
#### Other changes (2.3.1)
317354

318-
- security: insecure-randomness fix in UUID generation.
355+
- Security: insecure-randomness fix in UUID generation.
319356

320357
### [2.3.0] (June 2, 2023)
321358

@@ -325,7 +362,7 @@ This update is the first preview of the upcoming 3.0.0 release. The underlying [
325362

326363
#### Bug fixes (2.3.0)
327364

328-
- Fixed an exception that occurred while updating the property of a layout that that no longer exists.
365+
- Fixed an exception that occurred while updating the property of a layout that no longer exists.
329366

330367
- Fixed an issue where BubbleLayer's accessible indicators didn't update when the data source was modified.
331368

@@ -424,6 +461,7 @@ Stay up to date on Azure Maps:
424461
> [!div class="nextstepaction"]
425462
> [Azure Maps Blog]
426463
464+
[3.0.0]: https://www.npmjs.com/package/azure-maps-control/v/3.0.0
427465
[3.0.0-preview.10]: https://www.npmjs.com/package/azure-maps-control/v/3.0.0-preview.10
428466
[3.0.0-preview.9]: https://www.npmjs.com/package/azure-maps-control/v/3.0.0-preview.9
429467
[3.0.0-preview.8]: https://www.npmjs.com/package/azure-maps-control/v/3.0.0-preview.8
@@ -434,6 +472,7 @@ Stay up to date on Azure Maps:
434472
[3.0.0-preview.3]: https://www.npmjs.com/package/azure-maps-control/v/3.0.0-preview.3
435473
[3.0.0-preview.2]: https://www.npmjs.com/package/azure-maps-control/v/3.0.0-preview.2
436474
[3.0.0-preview.1]: https://www.npmjs.com/package/azure-maps-control/v/3.0.0-preview.1
475+
[2.3.2]: https://www.npmjs.com/package/azure-maps-control/v/2.3.2
437476
[2.3.1]: https://www.npmjs.com/package/azure-maps-control/v/2.3.1
438477
[2.3.0]: https://www.npmjs.com/package/azure-maps-control/v/2.3.0
439478
[2.2.7]: https://www.npmjs.com/package/azure-maps-control/v/2.2.7
@@ -446,6 +485,7 @@ Stay up to date on Azure Maps:
446485
[adal-angular]: https://github.com/AzureAD/azure-activedirectory-library-for-js
447486
[@azure/msal-browser]: https://github.com/AzureAD/microsoft-authentication-library-for-js
448487
[migration guide]: ../active-directory/develop/msal-compare-msal-js-and-adal-js.md
488+
[CameraOptions]: /javascript/api/azure-maps-control/atlas.cameraoptions?view=azure-maps-typescript-latest
449489
[CameraBoundsOptions]: /javascript/api/azure-maps-control/atlas.cameraboundsoptions?view=azure-maps-typescript-latest
450490
[Map.dispose()]: /javascript/api/azure-maps-control/atlas.map?view=azure-maps-typescript-latest#azure-maps-control-atlas-map-dispose
451491
[Map.setCamera(options)]: /javascript/api/azure-maps-control/atlas.map?view=azure-maps-typescript-latest#azure-maps-control-atlas-map-setcamera

0 commit comments

Comments
 (0)