我正在使用谷歌地图API v3,我有一个问题。
我从数据库中获取坐标,我需要使用多个地图显示它们,我不知道地图的数量。
这里是代码php代码:
<div id="view-content">
<?php foreach ($this->tag as $tag) : ?>
<div id="list">
<div id="left">
<div id="map_canvas" style=" margin-left: 5px; width: 136px; height: 136px;"></div>
</div>
<div id="right">
<div id="listtitre">
<a href="<?php echo $this->url(array('action' => 'maptag', 'controller' => 'maptag', 'module' => 'agent', 'idtag' => $tag['idtag'])); ?>">
<?php echo $tag['name']; ?>
</a>
</div>
<div id="tagdisctitle">
<font>Address: </font><br/>
<font>Latitude: </font><br/>
<font>Longitude: </font><br/>
</div>
<div id="taglistdisc">
<?php
if (strlen($tag["address"]) > 52)
echo substr($tag["address"], 0, 52) . "...";
else
echo substr($tag["address"], 0, 52) . ".";
?> <br/>
<?php echo $tag['latitude']; ?><br/>
<?php echo $tag['longitude']; ?><br/>
</div>
</div>
</div>
<?php endforeach; ?>
</div>
JS代码:
function initialize() {
var myOptions = {
center: new google.maps.LatLng(36.6464862, 9.9565553 ),
zoom: 7,
mapTypeId: google.maps.MapTypeId.ROADMAP
};
var map = new google.maps.Map(document.getElementById("map_canvas"),
myOptions);
google.maps.event.addListener(map, 'click', function(event) {
placeMarker(event.latLng);
});
var marker;
function placeMarker(location) {
if(marker){ //on vérifie si le marqueur existe
marker.setPosition(location); //on change sa position
}else{
marker = new google.maps.Marker({ //on créé le marqueur
position: location,
map: map,
icon : "/images/mapgo.png"
});
}
latitude.value=location.lat();
longitude.value=location.lng();
}
}
感谢您的帮助
答案 0 :(得分:3)
页面上的ID必须是唯一的。由于您在循环中输出HTML,因此您正在创建重复的ID,包括map_canvas div。您需要修改HTML和javascript,以便在每次迭代时创建唯一的ID。最简单的方法是保持一个在每次迭代时递增的运行计数器,然后在ID中包含此计数器:
<div id="map_canvas<?=$counter?>"> [...] </div>
然后你需要改变你的JS来使用它。