MYSQL データベースに座標を送信する GPS ベースのシステムがあります。
このコードの使用:
(function() {
window.onload = function() {
// Creating a new map
var map = new google.maps.Map(document.getElementById("map"), {
center: new google.maps.LatLng(41.65, -0.88),
zoom: 1,
mapTypeId: google.maps.MapTypeId.ROADMAP
});
function createPoints(json){
var infoWindow = new google.maps.InfoWindow();
// Looping through the JSON data
for (var i = 0, length = json.locations.length; i < length; i++) {
var data = json.locations[i],
latLng = new google.maps.LatLng(data.lat, data.long);
var iconBase = 'https://maps.google.com/mapfiles/kml/shapes/';
var marker = new google.maps.Marker({
position: latLng,
map: map,
title: data.nome,
icon: iconBase + 'schools_maps.png'
});
(function(marker, data) {
// Attaching a click event to the current marker
google.maps.event.addListener(marker, "click", function(e) {
infoWindow.setContent(data.nome);
infoWindow.open(map, marker);
});
})(marker, data);
/* moveMarker( map, marker ); */
}
}
// Get the JSON data from PHP script
var json ;
$.getJSON("http://mywebservice/nmea_last.php").done(function(data) {
json = data;
createPoints(json);
});
}
})();
文章を読むと、 gpsgetJSON("http://mywebservice/nmea_last.php")
がmysqlに(無作為に)送信する最後の座標を取得し、マーカーが正しく表示されます。私の質問は、マーカーを動的に更新してマップ上の動きをキャッチするにはどうすればよいですか?
setTimeout メソッドを使用する必要があると思います (または使用しませんか?) が、方法がわかりません。何か助けはありますか?前もって感謝します。