gpt4 book ai didi

javascript - 框中的 Google map 标记内容

转载 作者:行者123 更新时间:2023-11-30 23:10:01 24 4
gpt4 key购买 nike

我从 MySQL 表中获取了坐标、名称和“ID”,但为什么在每个标记中都有相同的文本和相同的链接?

为什么文本没有不同???

它只显示最后一个 ID,但它应该在数据库中的每个元素之后添加另一个标记!

标记在正确的位置,源代码中的“内容”也正确但不在标记处,为什么?!

请帮忙

<script type="text/javascript">
function initialize() {
var mapOptions = {
center: new google.maps.LatLng(51.124213, 10.60936),
zoom: 5,
mapTypeId: google.maps.MapTypeId.ROADMAP
};
var map = new
google.maps.Map(document.getElementById("map_canvas"),
mapOptions);
var contentString;
var elementeInArray = 0;
var LatLngList = new Array;

<? php
$i = 1;

foreach($FertigID as $ID) {

$result = mysql_query("SELECT * FROM Daten_CH WHERE Objektnummer = ".$ID.
"");

while ($Ergebnisse = mysql_fetch_array($result)) {
// Werden alle ergebnisse (ID´s) in einen Array geschriebenn

echo $$Ergebnisse["Objektnummer"];

if (isset($Ergebnisse["Gis_y"]) && $Ergebnisse["Gis_y"] != "" &&
$Ergebnisse["Gis_y"] != " ") {

echo $i; ?>

// MARKER TEXT

contentString = '<?php echo $i; ?> </br><?php echo
$Ergebnisse["Objektname"]; ?>
</br><a href="Change.php?ID=<?php echo $ID; ?>">
<input type="button" value="BEARBEITEN"></button></a>';



var Position = new google.maps.LatLng( <? php echo $Ergebnisse["Gis_y"]; ?> , <? php echo $Ergebnisse["Gis_x"]; ?> );

var infowindow = new google.maps.InfoWindow({
content: contentString
});

var marker <? php echo $i; ?> = new google.maps.Marker({
position: Position,
map: map,
title: '<?php echo $Ergebnisse["AA_Objektname"]; ?>'
});

google.maps.event.addListener(marker <? php echo $i; ?> , 'click', function () {

infowindow.open(map, marker <? php echo $i; ?> );
});

LatLngList[elementeInArray] = new google.maps.LatLng( <? php echo $Ergebnisse["Gis_y"]; ?> , <? php echo $Ergebnisse["Gis_x"]; ?> );
elementeInArray++;
<? php
}
}

$i++;
}

?>

// Create a new viewpoint bound
var bounds = new google.maps.LatLngBounds();
// Go through each...
for (var i = 0, LtLgLen = LatLngList.length; i < LtLgLen; i++) {
// And increase the bounds to take this point
bounds.extend(LatLngList[i]);
}
// Fit these bounds to the map
map.fitBounds(bounds);

var opt = {
minZoom: 1,
maxZoom: 12
};
map.setOptions(opt);
}

google.maps.event.addDomListener(window, 'load', initialize);
</script>

最佳答案

因为您应该将 contentString 分配给标记,并用每个标记分配的内容更新信息窗口。现在,唯一可用的 contentStringlast 创建的。此外,您真的不必创建多个编号标记。您只需要一个标记引用。

var infowindow = new google.maps.InfoWindow();

var marker = new google.maps.Marker({
position: Position,
map: map,
content: contenString, // <-- assign content to the marker itself
title: '<?php echo $Ergebnisse["AA_Objektname"]; ?>'
});

google.maps.event.addListener(marker, 'click', function () {
infoWindow.setContent(this.content);
infowindow.open(map, this);
});

这样就可以了。

关于javascript - 框中的 Google map 标记内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20238246/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com