azure-maps-control 2.3.3 → 2.3.5
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 +21 -16
- package/dist/atlas-core-bare.js +39 -33
- package/dist/atlas-core-bare.min.js +1 -1
- package/dist/atlas-core-snr.js +22 -17
- package/dist/atlas-core.js +40 -34
- package/dist/atlas-core.min.js +1 -1
- package/dist/atlas.js +40 -34
- package/dist/atlas.min.js +1 -1
- package/package.json +1 -1
- package/typings/index.d.ts +5 -5
package/package.json
CHANGED
package/typings/index.d.ts
CHANGED
|
@@ -220,7 +220,7 @@ declare namespace atlas {
|
|
|
220
220
|
* @param data The FeatureCollection, Feature, Geometry, Shape or array of these objects to calculate the bounding box for.
|
|
221
221
|
* @returns A bounding box in the format [minLon, minLat, maxLon, maxLat].
|
|
222
222
|
*/
|
|
223
|
-
static fromData(data: FeatureCollection | Feature<Geometry, any> | Geometry | Shape | Array<FeatureCollection | Feature<Geometry, any> | Geometry>): BoundingBox;
|
|
223
|
+
static fromData(data: FeatureCollection | Feature<Geometry, any> | Geometry | Shape | Array<FeatureCollection | Feature<Geometry, any> | Geometry | Shape>): BoundingBox;
|
|
224
224
|
/**
|
|
225
225
|
* Splits a BoundingBox that crosses the Antimeridian into two BoundingBox's. One entirely west of the Antimerdian and another entirely east of the Antimerdian.
|
|
226
226
|
* @param bounds
|
|
@@ -2029,7 +2029,7 @@ declare namespace atlas {
|
|
|
2029
2029
|
*/
|
|
2030
2030
|
getTraffic(): TrafficOptions;
|
|
2031
2031
|
/**
|
|
2032
|
-
* Removes all
|
|
2032
|
+
* Removes all sources, layers, markers, and popups from the map.
|
|
2033
2033
|
* User added images are preserved.
|
|
2034
2034
|
*/
|
|
2035
2035
|
clear(): void;
|
|
@@ -4662,8 +4662,8 @@ declare namespace atlas {
|
|
|
4662
4662
|
*/
|
|
4663
4663
|
styleAPIVersion?: string;
|
|
4664
4664
|
/**
|
|
4665
|
-
* Enable accessibility
|
|
4666
|
-
*
|
|
4665
|
+
* Enable the accessibility feature to provide screen reader support for users who have difficulty visualizing the web application.
|
|
4666
|
+
* This property is set to true by default.
|
|
4667
4667
|
* @default true
|
|
4668
4668
|
*/
|
|
4669
4669
|
enableAccessibility?: boolean;
|
|
@@ -5368,7 +5368,7 @@ declare namespace atlas {
|
|
|
5368
5368
|
*/
|
|
5369
5369
|
add(layer: atlas.layer.Layer | atlas.layer.Layer[], before?: string | atlas.layer.Layer): void;
|
|
5370
5370
|
/**
|
|
5371
|
-
* Removes all
|
|
5371
|
+
* Removes all layers from the map.
|
|
5372
5372
|
*/
|
|
5373
5373
|
clear(): void;
|
|
5374
5374
|
/**
|