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
按钮时使地图刷新。