3

JS:

function initialize() {
  var latLng = new google.maps.LatLng({{location_latitude}}, {{location_longitude}});
  var map = new google.maps.Map(document.getElementById('mapCanvas'), {
    zoom: 8,
    center: latLng,
    mapTypeId: google.maps.MapTypeId.ROADMAP
  });

地图在页面加载时加载。

除此之外,我需要它在单击按钮时刷新地图,即"<button>Refresh Map</button>"

如何在单击Refresh Map按钮时使地图刷新。

4

1 回答 1

3
$('button').on('click',initialize);
于 2013-06-05T16:43:11.683 回答