All my datasets are currently in British National Grid.
I have received a new dataset with Longitude and Latitude.
I would like to query this layer and display the points on a graphics layer.
However the points appear in the wrong location on the map.
for each (var graphic:Graphic in featureSet.features)
{
graphic.geometry.spatialReference = map.spatialReference
graphicsLayer.add(graphic);
}
Any ideas?