ThinkGeo.com    |     Documentation    |     Premium Support

Javascript function to pan the map with OpenStreet,

 Hi,


I am able to pan the map on cleint side using javascript function with  my WMS server (Thinkgeo) but I have some trouble when using openstreet, google, bings,...


onclick="panOffset(0,-1);return false;


 


could you confirm that is the function to use when using the previuosly defined map providers?


 


thanks.


 



Hi Jean-marie,


The map unit of those map is Meter so 1 Meter is not too easy to see, we suggest you to use the function which pan the pixels,




        function panOffset(dx, dy) {
            var map = Map1.GetOpenLayersMap();
            map.pan(dx, dy, { animate: true, dragging: false });
        }

dx,dy are in pixels.


Hope it helps,


Edgar