azure-maps-control 2.2.6 → 2.2.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/dist/atlas-core-bare-snr.js +131 -46
- package/dist/atlas-core-bare.js +131 -46
- package/dist/atlas-core-bare.min.js +1 -1
- package/dist/atlas-core-snr.js +131 -46
- package/dist/atlas-core.js +131 -46
- package/dist/atlas-core.min.js +1 -1
- package/dist/atlas.js +131 -46
- package/dist/atlas.min.js +1 -1
- package/package.json +1 -1
- package/typings/index.d.ts +13 -0
package/package.json
CHANGED
package/typings/index.d.ts
CHANGED
|
@@ -1965,6 +1965,10 @@ declare namespace atlas {
|
|
|
1965
1965
|
* @param options Options for the initial display and interactability with the map.
|
|
1966
1966
|
*/
|
|
1967
1967
|
constructor(container: string | HTMLElement, options: ServiceOptions & StyleOptions & UserInteractionOptions & (CameraOptions | CameraBoundsOptions));
|
|
1968
|
+
/**
|
|
1969
|
+
* Returns true if the map has been disposed.
|
|
1970
|
+
*/
|
|
1971
|
+
get isDisposed(): boolean;
|
|
1968
1972
|
/**
|
|
1969
1973
|
* Returns the HTMLCanvasElement that the map is drawn to.
|
|
1970
1974
|
*/
|
|
@@ -4648,6 +4652,15 @@ declare namespace atlas {
|
|
|
4648
4652
|
* The map configuration defines the set of styles available to the map.
|
|
4649
4653
|
*/
|
|
4650
4654
|
mapConfiguration?: string | MapConfiguration;
|
|
4655
|
+
/**
|
|
4656
|
+
* The style definitions version to request when requesting styles
|
|
4657
|
+
* from styleDefinitionsPath.
|
|
4658
|
+
*/
|
|
4659
|
+
styleDefinitionsVersion?: string;
|
|
4660
|
+
/**
|
|
4661
|
+
* The style API version used when requesting styles and stylesets
|
|
4662
|
+
*/
|
|
4663
|
+
styleAPIVersion?: string;
|
|
4651
4664
|
/**
|
|
4652
4665
|
* Enable accessibility
|
|
4653
4666
|
* default: true
|