I’m planning on doing a lot of refactoring related to projections in a WPF app. I was reading through https://thinkgeo.com/blog/map-projections and noticed it mentions “base map” a few times. What is considered a base map in this case? My app is strictly offline and I just create some overlays and have various layers in them.
I have many different layers from different formats that could be one of many different types of projections. Do I only have to worry about making sure the external projection of these layers are the same and that the map unit matches what the external projection’s measurement of unit is?
I’m still on v13* if that matters.
Currently I only allow two projections: WGS84 and web mercator. Whenever I switch between them, I simply change the map’s MapUnit to either DecimalDegree or Meter, and then loop through all the layers to set their external projection. There is no projection on the map object itself though right? I don’t see any properties related to it at least.
Thanks!