开发者

Google Maps PanTo OnClick

I am trying to panTo an area on a map on click. The script is not working and page reloading. Perhaps someone can see the problem.

My function

function clickroute(lati,long) {

       map = google.maps.Map(document.getElementById("map_canvas"));
      map.panTo(lati,long)
  }

And the rest

var directionDisplay;
  var directionsService = new google.maps.DirectionsService();
  var map;

  function initialize() {
      geocoder = new google.maps.Geocoder();
    directionsDisplay = new google.maps.DirectionsRenderer();
    var chicago = new google.maps.LatLng(41.850033, -87.6500523);
    var myOptions = {
      zoom:10,
      mapTypeId: google.maps.MapTypeId.ROADMAP,
      center: chicago
    }
    map = new google.maps.Map(document.getElementById("map_canvas"), myOptions);

    var address = 'virginia water';
    geocoder.geocode( { 'address': address}, function(results, status) {
      if (status == google.maps.GeocoderStatus.OK) {
        map.setCenter(results[0].geometry.location);
        var marker = new google.maps.Marker({
            map: map, 
            position: results[0].geometry.location
        });
      } 
    });
    directionsDisplay.setMap(map);
  }

  function calcRoute() {
    var start = document.getElementById("start").value;
    var end = document.getElementById("end").value;
    var request = {
        origin:start, 
        destination:end,
        travelMode: google.maps.DirectionsTravelMode.DRIVING
    };
    directionsService.route(request, function(response, status) {
      if (status == google.maps.DirectionsStatus.OK) {
 开发者_Python百科       directionsDisplay.setDirections(response);
      }
    });
  }

And my event

<a href="" onclick="clickroute(51.433373, -0.712251)">test</a>


The issue is that your using map.panTo(latitude,longitude) but the google maps API uses this: panTo(latLng myLatLng) where latLng is a google map class.

try something like this (untested)

function clickroute(lati,long) {
      var latLng = new google.maps.LatLng(lati, long); //Makes a latlng
      map.panTo(latLng); //Make map global
  }

Look here for more info.

EDIT As someone else stated you don't want to remake a new map. Maybe its easier to make it global?


The panTo accepts LatLng object as parameters not just coordinates. Create a LatLng object before passing it to panTo method.

function clickroute(lati,long) {
    map.panTo(new google.maps.LatLng(lati,long));
    return false; //this will cancel your navigation
}

Your page reloads because you do not cancel the navigation event in onClick that you put in the anchor tag. See comment in code above.

And like the others say take out the map variable from this function and make map global.


you can also set a new marker on the fly:

   var LatLng = new google.maps.LatLng(lat, lng);
    var marker = new google.maps.Marker({
              content: "<h2>Hier wohne ich!</h2>",
              map: map,position: results[0].geometry.location 
              });
    map.panTo(LatLng);


You can do this:

var latLng = new google.maps.LatLng(lat_val, lng_value);
map.panTo(latLng);`


The line...

map = google.maps.Map(document.getElementById("map_canvas"));

.. is actually attempting to create a new Map within the #map_canvas Div. Since that map should already exist, you don't need that assignment statement. Just calling

map.panTo(lati,long)

should work?

Edit: Sorry, SSRide360 is correct that should be...

map.panTo(new google.maps.LatLng(lati, long));
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜