Hello,
I am currently using a map view for offline files (Tiff & shape), and I want to work with the projection of this files, not to set it programatically.
How can I get that file’s projection? or how can I get the projection of the map after adding layers for that files?
I tried to get the projection of the layers but it returns null
Projection proj = myShapeFileFeatureLayer.FeatureSource.Projection;
I need it because I want to add a PointShape to the map view, with its current projection.
Thanks.