azure-maps-control 3.6.1 → 3.7.1
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-min.js +1 -1
- package/dist/atlas-core-bare-snr.js +6 -8
- package/dist/atlas-core-bare.js +6 -8
- package/dist/atlas-core-bare.min.js +1 -1
- package/dist/atlas-core-snr.js +6 -8
- package/dist/atlas-core.js +6 -8
- package/dist/atlas-core.min.js +1 -1
- package/dist/atlas-esm.js +6 -8
- package/dist/atlas-esm.min.js +1 -1
- package/dist/atlas.js +6 -8
- package/dist/atlas.min.js +1 -1
- package/package.json +3 -3
- package/typings/index.d.ts +4 -5
package/dist/atlas.js
CHANGED
|
@@ -52079,6 +52079,10 @@ uniform ${precision} ${type} u_${name};
|
|
|
52079
52079
|
* A localized version of `"Detour"`.
|
|
52080
52080
|
*/
|
|
52081
52081
|
this.Detour = "Detour";
|
|
52082
|
+
/**
|
|
52083
|
+
* A localized version of `"Dummy"`.
|
|
52084
|
+
*/
|
|
52085
|
+
this.Dummy = "Dummy";
|
|
52082
52086
|
}
|
|
52083
52087
|
return LocalizedStrings;
|
|
52084
52088
|
}());
|
|
@@ -52221,7 +52225,7 @@ uniform ${precision} ${type} u_${name};
|
|
|
52221
52225
|
return UserAgent;
|
|
52222
52226
|
}());
|
|
52223
52227
|
|
|
52224
|
-
var version$3 = "3.
|
|
52228
|
+
var version$3 = "3.7.1";
|
|
52225
52229
|
|
|
52226
52230
|
/**
|
|
52227
52231
|
* A helper class that provides methods for getting various forms of the map controls current version.
|
|
@@ -113446,7 +113450,6 @@ uniform ${precision} ${type} u_${name};
|
|
|
113446
113450
|
_this.pitch = 0;
|
|
113447
113451
|
/**
|
|
113448
113452
|
* The minimum zoom level that the map can be zoomed out to during the animation. Must be between 0 and 24, and less than or equal to `maxZoom`.
|
|
113449
|
-
* Setting `minZoom` below 1 may result in an empty map when the zoom level is less than 1.
|
|
113450
113453
|
* Default `1`.
|
|
113451
113454
|
* @default 1
|
|
113452
113455
|
*/
|
|
@@ -115774,9 +115777,7 @@ uniform ${precision} ${type} u_${name};
|
|
|
115774
115777
|
_this.events.invoke("error", errorData);
|
|
115775
115778
|
});
|
|
115776
115779
|
// --> Set initial camera state of map
|
|
115777
|
-
_this.setCamera(__assign(__assign({
|
|
115778
|
-
// Default minZoom to ensure the map doesn't zoom out to unsupported zoom levels.
|
|
115779
|
-
minZoom: 1 }, options), { type: "jump", duration: 0 }));
|
|
115780
|
+
_this.setCamera(__assign(__assign({}, options), { type: "jump", duration: 0 }));
|
|
115780
115781
|
// Add delegates to map
|
|
115781
115782
|
{
|
|
115782
115783
|
_this.incidentDelegate = new IncidentServiceDelegate(_this);
|
|
@@ -115941,9 +115942,6 @@ uniform ${precision} ${type} u_${name};
|
|
|
115941
115942
|
pitch: cameraOptions.pitch,
|
|
115942
115943
|
around: undefined
|
|
115943
115944
|
};
|
|
115944
|
-
if (cameraOptions.minZoom < 1) {
|
|
115945
|
-
console.warn("Setting minZoom below 1 may result in an empty map when the zoom level is less than 1.");
|
|
115946
|
-
}
|
|
115947
115945
|
this.map.setMinZoom(cameraOptions.minZoom);
|
|
115948
115946
|
this.map.setMaxZoom(cameraOptions.maxZoom);
|
|
115949
115947
|
if (cameraOptions.minPitch) {
|