Skip to content

Commit 2142e15

Browse files
author
Scott Kang
committed
update links, dates, and notes
1 parent ce93acd commit 2142e15

File tree

1 file changed

+37
-32
lines changed

1 file changed

+37
-32
lines changed

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

Lines changed: 37 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -4,50 +4,55 @@ titleSuffix: Microsoft Azure Maps
44
description: Release notes for the Azure Maps Web SDK.
55
author: stevemunk
66
ms.author: v-munksteve
7-
ms.date: 12/06/2022
7+
ms.date: 12/16/2022
88
ms.topic: reference
99
ms.service: azure-maps
1010
services: azure-maps
1111
---
1212

13-
# Release notes - Map Control
13+
# Web SDK map control release notes
1414

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

17-
## [3.0.0-preview.2](https://www.npmjs.com/package/azure-maps-control/v/3.0.0-preview.2) (December 9, 2022)
17+
## [3.0.0-preview.2](https://www.npmjs.com/package/azure-maps-control/v/3.0.0-preview.2) (December 16, 2022)
1818

19-
### New Features
19+
### New feature
2020

21-
- Add `progressiveLoading` and `progressiveLoadingInitialLayerGroups` to [StyleOptions][StyleOptions] to enable the capability of loading map layers progressively. This feature improves the perceived loading time of the map. For more information, see [2.2.1 release notes](#221-december-9-2022).
21+
Add `progressiveLoading` and `progressiveLoadingInitialLayerGroups` to [StyleOptions][StyleOptions] to enable the capability of loading map layers progressively. This feature improves the perceived loading time of the map. For more information, see [2.2.2 release notes](#222-december-15-2022).
2222

23-
### Bug Fixes
23+
The preview is available on [npm](https://www.npmjs.com/package/azure-maps-control/v/3.0.0-preview.2) and CDN.
24+
25+
- Install [azure-maps-control@next][azure-maps-control] to your dependencies:
26+
```shell
27+
npm i azure-maps-control@next
28+
```
29+
30+
- Reference the following CSS and JavaScript in the `<head>` element of an HTML file:
31+
```html
32+
<link href="https://atlas.microsoft.com/sdk/javascript/mapcontrol/3.0.0-preview.2/atlas.min.css" rel="stylesheet" />
33+
<script src="https://atlas.microsoft.com/sdk/javascript/mapcontrol/3.0.0-preview.2/atlas.min.js"></script>
34+
```
35+
36+
### Bug fixes
2437

2538
- Fix an issue that the ordering of user layers wasn't preserved after calling `map.layers.move()`.
2639
27-
- Fix the initial state of `incidents` will always be true in [TrafficControl][TrafficControl].
40+
- Fix the inability to disable traffic incidents in [TrafficControlOptions][TrafficControlOptions] when `new atlas.control.TrafficControl({incidents: false})` is used.
2841
2942
- Add `.atlas-map` to all css selectors to scope the styles within the map container. The fix prevents the css from accidentally adding unwanted styles to other elements on the page.
3043
3144
## [3.0.0-preview.1](https://www.npmjs.com/package/azure-maps-control/v/3.0.0-preview.1) (November 18, 2022)
3245
33-
### New Features
46+
### New feature
3447
35-
- This update is the first preview of the upcoming 3.0.0 release. There's no breaking change except that the underlying [maplibre-gl][maplibre-gl] dependency has been upgraded from `1.14` to `3.0.0-pre.1`, which offers improvements in stability and performance. The preview is available on npm and CDN.
48+
This update is the first preview of the upcoming 3.0.0 release. The underlying [maplibre-gl][maplibre-gl] dependency has been upgraded from `1.14` to `3.0.0-pre.1`, offering improvements in stability and performance. The preview is available on [npm](https://www.npmjs.com/package/azure-maps-control/v/3.0.0-preview.1).
3649
3750
- Install [azure-maps-control@next][azure-maps-control] to your dependencies:
3851
```shell
3952
npm i azure-maps-control@next
4053
```
4154
42-
- Reference the following CSS and JavaScript in the `<head>` element of an HTML file:
43-
```html
44-
<link href="https://atlas.microsoft.com/sdk/javascript/mapcontrol/3.0/atlas.min.css" rel="stylesheet" />
45-
<script src="https://atlas.microsoft.com/sdk/javascript/mapcontrol/3.0/atlas.min.js"></script>
46-
```
47-
48-
49-
50-
### Bug Fixes
55+
### Bug fixes
5156
5257
- Fix a regression issue that prevents IndoorManager from removing a tileset by using
5358
```js
@@ -56,25 +61,25 @@ This document contains information about new features and other changes to the M
5661
})
5762
```
5863
59-
## [2.2.1](https://www.npmjs.com/package/azure-maps-control/v/2.2.1) (December 9, 2022)
64+
## [2.2.2](https://www.npmjs.com/package/azure-maps-control/v/2.2.2) (December 15, 2022)
6065
61-
### New Features
66+
### New feature
6267
63-
- Add `progressiveLoading` and `progressiveLoadingInitialLayerGroups` to [StyleOptions][StyleOptions] to enable the capability of loading map layers progressively. This feature improves the perceived loading time of the map.
64-
- `progressiveLoading`
65-
- Enables progressive loading of map layers.
66-
- Defaults to false.
67-
- `progressiveLoadingInitialLayerGroups`
68-
- Specifies the layer groups to load first.
69-
- Defaults to ["base"].
70-
- Possible values are `base`, `transit`, `labels`, `buildings`, and `labels_places`.
71-
- Other layer groups are deferred such that the initial layer groups can be loaded first.
68+
Add `progressiveLoading` and `progressiveLoadingInitialLayerGroups` to [StyleOptions][StyleOptions] to enable the capability of loading map layers progressively. This feature improves the perceived loading time of the map.
69+
- `progressiveLoading`
70+
- Enables progressive loading of map layers.
71+
- Defaults to `false`.
72+
- `progressiveLoadingInitialLayerGroups`
73+
- Specifies the layer groups to load first.
74+
- Defaults to `["base"]`.
75+
- Possible values are `base`, `transit`, `labels`, `buildings`, and `labels_places`.
76+
- Other layer groups are deferred such that the initial layer groups can be loaded first.
7277
73-
### Bug Fixes
78+
### Bug fixes
7479
7580
- Fix an issue that the ordering of user layers wasn't preserved after calling `map.layers.move()`.
7681
77-
- Fix the initial state of `incidents` will always be true in [TrafficControl][TrafficControl].
82+
- Fix the inability to disable traffic incidents in [TrafficControlOptions][TrafficControlOptions] when `new atlas.control.TrafficControl({incidents: false})` is used.
7883
7984
## Next steps
8085
@@ -89,4 +94,4 @@ Stay up to date on Azure Maps:
8994
[azure-maps-control]: https://www.npmjs.com/package/azure-maps-control
9095
[maplibre-gl]: https://www.npmjs.com/package/maplibre-gl
9196
[StyleOptions]: /javascript/api/azure-maps-control/atlas.styleoptions
92-
[TrafficControl]: /javascript/api/azure-maps-control/atlas.control.trafficcontrol
97+
[TrafficControlOptions]: /javascript/api/azure-maps-control/atlas.trafficcontroloptions

0 commit comments

Comments
 (0)