VEMap.EndContinuousPan Method

You are not viewing the latest version of the AJAX control. Bing Maps AJAX V7 is the recommended JavaScript control for Bing Maps. If you need this documentation, it is available in as a CHM or PDF download.

Stops the continuous map panning initiated by a call to the VEMap.StartContinuousPan Method.

VEMap.EndContinuousPan();

Example

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
   <head>
      <title></title>
      <meta http-equiv="Content-Type" content="text/html; charset=utf-8">

      <script type="text/javascript" src="https://ecn.dev.virtualearth.net/mapcontrol/mapcontrol.ashx?v=6.3"></script>

      <script type="text/javascript">
         var map = null;

         function GetMap()
         {
            map = new VEMap('myMap');
            map.LoadMap();
         }
        
         function StartContinuousPan()
         {
            map.StartContinuousPan(document.getElementById('panX').value, document.getElementById('panY').value);
         }
        
         function EndContinuousPan()
         {
            map.EndContinuousPan();
         }
      </script>
   </head>
   <body onload="GetMap();" style="font-family:Arial">
      <div id='myMap' style="position:relative; width:400px; height:400px;"></div>
      <INPUT id="startpan" type="button" value="Start Panning" name="startpan" 
         onclick="StartContinuousPan();"/>
      X: 
      <INPUT id="panX" type="text" value="1" name="panX" size="3"/>
      &nbsp;&nbsp;&nbsp;
      Y: 
      <INPUT id="panY" type="text" value="1" name="panY" size="3"/>
      <br />
      <INPUT id="endpan" type="button" value="End Pan" name="endpan" 
         onclick="EndContinuousPan();"/>
   </body>
</html>