Bug-ID-Nummer |
BUG-000126314 |
Eingereicht | October 25, 2019 |
Zuletzt geändert | June 5, 2024 |
Gilt für | ArcGIS API for JavaScript |
Gefunden in Version | 4.13 |
Status | Will Not Be Addressed
Das Entwicklungsteam hat das Problem bzw. die Anforderung sorgfältig geprüft und ist zu dem Schluss gekommen, es nicht zu beheben bzw. keine weiteren Schritte zu unternehmen. Weitere Erläuterungen finden Sie ggf. im Abschnitt "Zusätzliche Informationen" des jeweiligen Problems.
|
Zusätzliche Informationen
The view.scale still updates. Although it takes a bit longer to update, use view.goTo();
console.log("[BEFORE] MapView.scale", view.scale);
view.goTo({scale: view.scale+10000}).then(function(){
console.log("[AFTER] MapView.scale", view.scale);
});
The “AFTER” value would wait to log in the console until the view’s scale has updated.
Workaround
Use ArcGIS API for JavaScript 4.12.
Schritte zur Reproduzierung