ThinkGeo.com    |     Documentation    |     Premium Support

Graticules grid on GoogleMapsLayer problem

I am using GoogleMapsLayer and OpenStreetsLayer and would like to show Graticules grid (adornment layer) showing Latitude/Longitude. Problem is that GoogleMapsLayer is in some projection that is not Latitude/Longitude. Showing grid with GoogleMapsLayer real coordinates seem to be useless to user.


Can it be done, Graticules grid Latitude/Longitude on GoogleMapsLayer?



Hi Mark, 
  
 Would you please try to use the following code: 
  
    GraticuleAdornmentLayer graticuleLayer = new GraticuleAdornmentLayer(); 
             ManagedProj4Projection projection = new ManagedProj4Projection(); 
             projection.InternalProjectionParametersString = ManagedProj4Projection.GetEpsgParametersString(4326); 
             projection.ExternalProjectionParametersString = ManagedProj4Projection.GetGoogleMapParametersString(); 
             graticuleLayer.Projection = projection; 
  
 Hope it helps 
  
 Summer