Hi Thinkgeo,
What is the best way to generate map from WorldMap kit data in ESPG:900913 projection rather than the default ESPG:4326?
I tried using the following in the WorldMapKitRenderLayer Loadlayer() method but not much success
Proj4Projection proj4Projection = new Proj4Projection();
proj4Projection.InternalProjectionParametersString = ProjProjection.GetEpsgParametersString(4326);
proj4Projection.ExternalProjectionParametersString =
Proj4Projection.GetEpsgParametersString(900913);
foreach (FeatureLayer layer in staticLayers)
{
layer.FeatureSource.Projection = proj4Projection;
}
foreach (FeatureLayer layer in dynamicLayers)
{
layer.FeatureSource.Projection = proj4Projection;
}
Regards,
Anil