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
{{ message }}
This repository was archived by the owner on Oct 16, 2020. It is now read-only.
The error in Goto.js file at gotoCoordinate function this.map.centerAt(latlongCoord);
The map is not Zoomin to the location and no marker pin added on map.
This is what I tried to do in _setGraphicCoordinateAttr method but it did not work :
if (coordinate) {
var point = new Point(coordinate, new SpatialReference({
wkid: 4326
}));
debugger;
// start project parameters
var projectParams = new ProjectParameters();
projectParams.geometries = [point];
projectParams.outSR = new SpatialReference(2932); //{ wkid: 3857 }; //4326;//this.map.spatialReference;
//projectParams.transformation = {
// wkid: 2932
//};
//projectParams.transformationForward = true;
var defer = esri.config.defaults.geometryService.project(projectParams).then(lang.hitch(this, function (projectedGeometry) {
debugger;
if (projectedGeometry.length > 0) {
this.graphic.setGeometry(projectedGeometry[0]);
this.graphic.show();
}
}));
this.graphic.setGeometry(point);
this.graphic.show();
}