Hello,
I'd like when I first look on my map, that I see the world with a bit of zoom, and not centered on USA but we could see all the continents (Oceania included).
when I have this "implementation":
Proj4Projection proj4 = new Proj4Projection(); proj4.InternalProjectionParametersString =Proj4Projection.GetEpsgParametersString(4326); //Geodetic (decimal degrees). proj4.ExternalProjectionParametersString = Proj4Projection.GetGoogleMapParametersString();// Google Map projection (Spherical Mercator) //Maximum and minimum longitude and latitude values the map to be centered on. double minx = -88.0656; //Mininum Longitude double miny = 24.6526; //Minimum Latitude double maxx = -79.0724; //Maximum Longitude double maxy = 31.3938; //Maximum Latitude //Gets the RectangleShape in the Google Map projection. proj4.Open(); RectangleShape googleMapRectangleShape = proj4.ConvertToExternalProjection(new RectangleShape(minx, maxy, maxx, miny)); proj4.Close(); MyMap.CurrentExtent = googleMapRectangleShape; MyMap.MapUnit = GeographyUnit.Meter; it would be the ZoomLevel03 that I want to display at the first "look". Anybody which are the coordinates of it ?? Thanks in advance.