框中的Google地图标记内容

时间:2013-11-27 09:19:09

标签: javascript mysql google-maps google-maps-api-3

我从MySQL表中获取坐标和名称以及“ID”,但为什么每个Marker中的同一个Text也是同一个链接?

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

它只显示最后一个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>

1 个答案:

答案 0 :(得分:0)

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

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);
});

这样就可以了。