I have seen
in the Release Notes of the Map Suite 8.0 that is possible to reproject Google Maps, Bing
Maps and OpenStreetMap layers and overlays. How can it
be done?
I currently
have a GeoTiff image as reference map and the map unit in meters. This
GeoTiff map has its correspondand epsg area, and all the other data that we add to the map is
converted using the projection:
ManagedProj4Projection GeoToUTM = new ManagedProj4Projection();
GeoToUTM.InternalProjectionParametersString
= Proj4Projection.GetEsriParametersString(4326); // WGS84
(Geodetic)
GeoToUTM.ExternalProjectionParametersString
= Proj4Projection.GetEpsgParametersString(mapEpsg);
If I
include an overlay in the map with Bing or Google Maps, the location of the GeoTiff image does not
match with the overaly.
BingMapsOverlay bingMaps = new BingMapsOverlay(“xxxx”);
winformsMap1.Overlays.Add("test",
bingMaps);
Is it necessary to reproject the Bing or Google Maps?
Or is it necessary to project the GeoTiff image?
Regards,
Jose Maria