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
|
@@ -748,6 +748,10 @@ EFFET JURIDIQUE. Le présent contrat décrit certains droits juridiques. Vous po
|
|
|
748
748
|
* A localized version of `"Detour"`.
|
|
749
749
|
*/
|
|
750
750
|
this.Detour = "Detour";
|
|
751
|
+
/**
|
|
752
|
+
* A localized version of `"Dummy"`.
|
|
753
|
+
*/
|
|
754
|
+
this.Dummy = "Dummy";
|
|
751
755
|
}
|
|
752
756
|
return LocalizedStrings;
|
|
753
757
|
}());
|
|
@@ -890,7 +894,7 @@ EFFET JURIDIQUE. Le présent contrat décrit certains droits juridiques. Vous po
|
|
|
890
894
|
return UserAgent;
|
|
891
895
|
}());
|
|
892
896
|
|
|
893
|
-
var version = "3.
|
|
897
|
+
var version = "3.7.1";
|
|
894
898
|
|
|
895
899
|
/**
|
|
896
900
|
* A helper class that provides methods for getting various forms of the map controls current version.
|
|
@@ -20906,7 +20910,6 @@ EFFET JURIDIQUE. Le présent contrat décrit certains droits juridiques. Vous po
|
|
|
20906
20910
|
_this.pitch = 0;
|
|
20907
20911
|
/**
|
|
20908
20912
|
* 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`.
|
|
20909
|
-
* Setting `minZoom` below 1 may result in an empty map when the zoom level is less than 1.
|
|
20910
20913
|
* Default `1`.
|
|
20911
20914
|
* @default 1
|
|
20912
20915
|
*/
|
|
@@ -23223,9 +23226,7 @@ EFFET JURIDIQUE. Le présent contrat décrit certains droits juridiques. Vous po
|
|
|
23223
23226
|
_this.events.invoke("error", errorData);
|
|
23224
23227
|
});
|
|
23225
23228
|
// --> Set initial camera state of map
|
|
23226
|
-
_this.setCamera(__assign(__assign({
|
|
23227
|
-
// Default minZoom to ensure the map doesn't zoom out to unsupported zoom levels.
|
|
23228
|
-
minZoom: 1 }, options), { type: "jump", duration: 0 }));
|
|
23229
|
+
_this.setCamera(__assign(__assign({}, options), { type: "jump", duration: 0 }));
|
|
23229
23230
|
_this.flowDelegate = new FlowServiceDelegate(_this);
|
|
23230
23231
|
_this.accessibleMapDelegate = new AccessibleMapDelegate(_this);
|
|
23231
23232
|
_this.userInteractionDelegate = new UserInteractionDelegate(_this, options);
|
|
@@ -23375,9 +23376,6 @@ EFFET JURIDIQUE. Le présent contrat décrit certains droits juridiques. Vous po
|
|
|
23375
23376
|
pitch: cameraOptions.pitch,
|
|
23376
23377
|
around: undefined
|
|
23377
23378
|
};
|
|
23378
|
-
if (cameraOptions.minZoom < 1) {
|
|
23379
|
-
console.warn("Setting minZoom below 1 may result in an empty map when the zoom level is less than 1.");
|
|
23380
|
-
}
|
|
23381
23379
|
this.map.setMinZoom(cameraOptions.minZoom);
|
|
23382
23380
|
this.map.setMaxZoom(cameraOptions.maxZoom);
|
|
23383
23381
|
if (cameraOptions.minPitch) {
|
package/dist/atlas-core-bare.js
CHANGED
|
@@ -748,6 +748,10 @@ EFFET JURIDIQUE. Le présent contrat décrit certains droits juridiques. Vous po
|
|
|
748
748
|
* A localized version of `"Detour"`.
|
|
749
749
|
*/
|
|
750
750
|
this.Detour = "Detour";
|
|
751
|
+
/**
|
|
752
|
+
* A localized version of `"Dummy"`.
|
|
753
|
+
*/
|
|
754
|
+
this.Dummy = "Dummy";
|
|
751
755
|
}
|
|
752
756
|
return LocalizedStrings;
|
|
753
757
|
}());
|
|
@@ -890,7 +894,7 @@ EFFET JURIDIQUE. Le présent contrat décrit certains droits juridiques. Vous po
|
|
|
890
894
|
return UserAgent;
|
|
891
895
|
}());
|
|
892
896
|
|
|
893
|
-
var version$2 = "3.
|
|
897
|
+
var version$2 = "3.7.1";
|
|
894
898
|
|
|
895
899
|
/**
|
|
896
900
|
* A helper class that provides methods for getting various forms of the map controls current version.
|
|
@@ -44567,7 +44571,6 @@ EFFET JURIDIQUE. Le présent contrat décrit certains droits juridiques. Vous po
|
|
|
44567
44571
|
_this.pitch = 0;
|
|
44568
44572
|
/**
|
|
44569
44573
|
* 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`.
|
|
44570
|
-
* Setting `minZoom` below 1 may result in an empty map when the zoom level is less than 1.
|
|
44571
44574
|
* Default `1`.
|
|
44572
44575
|
* @default 1
|
|
44573
44576
|
*/
|
|
@@ -46888,9 +46891,7 @@ EFFET JURIDIQUE. Le présent contrat décrit certains droits juridiques. Vous po
|
|
|
46888
46891
|
_this.events.invoke("error", errorData);
|
|
46889
46892
|
});
|
|
46890
46893
|
// --> Set initial camera state of map
|
|
46891
|
-
_this.setCamera(__assign(__assign({
|
|
46892
|
-
// Default minZoom to ensure the map doesn't zoom out to unsupported zoom levels.
|
|
46893
|
-
minZoom: 1 }, options), { type: "jump", duration: 0 }));
|
|
46894
|
+
_this.setCamera(__assign(__assign({}, options), { type: "jump", duration: 0 }));
|
|
46894
46895
|
// Add delegates to map
|
|
46895
46896
|
{
|
|
46896
46897
|
_this.incidentDelegate = new IncidentServiceDelegate(_this);
|
|
@@ -47042,9 +47043,6 @@ EFFET JURIDIQUE. Le présent contrat décrit certains droits juridiques. Vous po
|
|
|
47042
47043
|
pitch: cameraOptions.pitch,
|
|
47043
47044
|
around: undefined
|
|
47044
47045
|
};
|
|
47045
|
-
if (cameraOptions.minZoom < 1) {
|
|
47046
|
-
console.warn("Setting minZoom below 1 may result in an empty map when the zoom level is less than 1.");
|
|
47047
|
-
}
|
|
47048
47046
|
this.map.setMinZoom(cameraOptions.minZoom);
|
|
47049
47047
|
this.map.setMaxZoom(cameraOptions.maxZoom);
|
|
47050
47048
|
if (cameraOptions.minPitch) {
|