まず、貧しい人の英語を謝っていますが、私の質問にはすべてのフランス語フォーラムで答えが見つかりません。ウェブページをリロードせずにマーカーを更新するgoogle maps v3
私は、車両群のリアルタイム追跡を行うアプリケーションを開発しています。
私はこのアプリケーションの最後ですが、問題があります。私は私のウェブページをリロードせずにマーカを更新することはできません。
私はsettimeout()
と試みたが、それはまだここに私マップ
充電は私のコードであるあなたの助けをありがとうございました。
PS:完了したときに、このアプリケーションが使用してあなたがマーカーのデータを返すressource(PHPスクリプトかもしれない)(tableauLieux)を要求する必要があります
<html lang="fr">
<head>
<link rel="stylesheet" media="screen" type="text/css" title="Exemple" href="theme.css"/>
<meta name="viewport" content="initial-scale=1.0, user-scalable=no" />
<meta charset="UTF-8" />
<title>Geonano V1</title>
<style type="text/css">
html{height: 100%}
body{height: 100%; margin: 0px; padding: 0px}
#EmplacementDeMaCarte{height: 100%}
</style>
<script type="text/javascript" src="http://maps.googleapis.com/maps/api/js?sensor=false"></script>
<script type="text/javascript">
function initialisation() {
var tableauLieux = [
//here I have a loop in php to get my markers in my database
["Paris", 48.86110, 2.34459],
["Versailles", 48.78199, 2.11045]
];
var optionsCarte = {
mapTypeId: google.maps.MapTypeId.ROADMAP
};
var maCarte = new google.maps.Map(document.getElementById("EmplacementDeMaCarte"), optionsCarte);
var bounds = new google.maps.LatLngBounds();
for (var i = 0; i < tableauLieux.length; i++) {
var Lieu = tableauLieux[i];
var pointLieu = new google.maps.LatLng(Lieu[1], Lieu[2]);
bounds.extend(pointLieu);
var marqueurLieu = new google.maps.Marker({
position: pointLieu,
map: maCarte,
title: Lieu[0],
icon : Lieu[3],
clickable: true
});
//création de l'info-bulle
var infoBulle = new google.maps.InfoWindow({
content: Lieu[0]//ici on peut mettre des balises HTML
});
google.maps.event.addListener(marqueurLieu, 'click', function() {
infowindow.setContent(Lieu[i][0]);
infoBulle .open(maCarte,marqueurLieu);
});
}
maCarte.fitBounds(bounds);
}
google.maps.event.addDomListener(window, 'load', initialisation);
setInterval("initialisation()", 5000);
</script>
</head>
<body>
<div id="EmplacementDeMaCarte"></div>
</body>
<META HTTP-EQUIV="Refresh" CONTENT="120; URL=http://localhost/geonano.php">
</html>
ようなものを使っているし、それはです無料のAPIキーを使用するには、[利用規約](http://code.google.com/apis/maps/terms.html#section_10_2)を参照してください。 –
英語を使用してコードを作成すると、次のコードでは誰がこのコードで作業するのか分かりません。 – MJB