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 has been 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();
}
Thanks,
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Hi @BrianBunker @tmcgee @roemhildtg,
I am getting the Spatial reference error in Goto Coordinate widget.
Map: Geometry (wkid: 4326) cannot be converted to spatial reference of the map (wkid: 2932)
below is my map options in viewer.js file
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 :
Thanks,
The text was updated successfully, but these errors were encountered: