The track and locate widget seem to be broken at 4.19. in other spatial references.
Sample code below ...
https://codepen.io/christophesuter/pen/gOgQyvo?editors=1000
Solved! Go to Solution.
We're working on this for version 4.20. Here's a temporary fix in the meantime: https://codepen.io/annefitz/pen/jOyXOzL?editors=1010
require(["esri/tasks/support/ProjectParameters"], function(ProjectParameters) {
Object.defineProperty(ProjectParameters.prototype, "outSR", {
set(value) {
this.outSpatialReference = value;
},
});
});
Thank you for reporting! We'll take a look.
We're working on this for version 4.20. Here's a temporary fix in the meantime: https://codepen.io/annefitz/pen/jOyXOzL?editors=1010
require(["esri/tasks/support/ProjectParameters"], function(ProjectParameters) {
Object.defineProperty(ProjectParameters.prototype, "outSR", {
set(value) {
this.outSpatialReference = value;
},
});
});
Works ! Thanks..