I have a point dataset.
I take the exact coordinates of a point and use the following to map it:
var point = new Point({
longitude: long,
latitude: lat
});
var pointGraphic = new Graphic({
geometry: point,
symbol: markerSymbol
});
view.graphics.add(pointGraphic);
The two points do not line up on top of each other like they should (see attached image).
When I do the same thing in ArcMap they do line up exactly.