如何在不刷新MAP的情况下刷新经度和纬度

时间:2013-11-06 15:51:04

标签: google-maps refresh latitude-longitude

我们的网站上有Google地图。我们希望每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!"
});

1 个答案:

答案 0 :(得分:0)

您必须对后端脚本使用AJAX调用,该脚本将返回带有新标记数据的JSON字符串。

jQuery代码:

setInterval(function () {

    $.post('your-file.php', { }, function (r) {
        var result = eval('(' + r + ')');

        var newLatLng = new google.maps.LatLng(result.latitude, result.longitude);

        marker.setMap(null); 

        /* Recreate the marker here or update coordinates from result.latitude and result.longitude */
        });
}, 5000);

这是你的文件.php:

/* MySQL Query here */

echo json_encode('latitude' => $latitude, 'longitude' => $longitude);

使用marker.setMap(null)您可以从地图中删除标记,然后使用正确的坐标再次创建它,否则只需使用marker.setPosition(newLatLng);