我们的网站上有谷歌地图。我们希望每 5 秒更新一次纬度和经度(从 MySQL 调用)并更改地图上的标记位置,而 MAP 或页面不会重新加载它。我们的 JAVASCRIPT 代码是:
var myLatlng = new google.maps.LatLng(-25.363882,131.044922);
var mapOptions = {
zoom: 4,
center: myLatlng,
mapTypeId: google.maps.MapTypeId.ROADMAP
}
var map = new google.maps.Map(document.getElementById("map-canvas"), mapOptions);
// To add the marker to the map, use the 'map' property
var marker = new google.maps.Marker({
position: myLatlng,
map: map,
title:"Hello World!"
});