You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am getting a warning message and unwanted behavior that is effected a mouse-over tooltipDialog popup that I am using on the geojson layers.The error is :" [Deprecation] Synchronous XMLHttpRequest on the main thread is deprecated because of its detrimental effects to the end user's experience." Is this common? I think its related to this function in the geojsonlayer.js file:
_getGeoJsonXhr: function (url) {
// xhr request to get data
var requestHandle = esriRequest({
url: url,
handleAs: "json"
});
requestHandle.then(lang.hitch(this, this._getGeoJson),
lang.hitch(this, this._errorGetGeoJsonXhr));
},
Is there a way to resolve this?
The text was updated successfully, but these errors were encountered:
I am getting a warning message and unwanted behavior that is effected a mouse-over tooltipDialog popup that I am using on the geojson layers.The error is :" [Deprecation] Synchronous XMLHttpRequest on the main thread is deprecated because of its detrimental effects to the end user's experience." Is this common? I think its related to this function in the geojsonlayer.js file:
_getGeoJsonXhr: function (url) {
// xhr request to get data
var requestHandle = esriRequest({
url: url,
handleAs: "json"
});
requestHandle.then(lang.hitch(this, this._getGeoJson),
lang.hitch(this, this._errorGetGeoJsonXhr));
},
Is there a way to resolve this?
The text was updated successfully, but these errors were encountered: