4

对于我使用 Google Maps API 创建的页面,我需要查询多个标记位置以及有关每个标记的更多信息。我正在使用 ColdFusion 来查询数据库。

我已经绘制出该过程应该如何大致工作

 <cfquery datasource="mapInfo" name="markerQuery">
  Select * from locations
 </cfquery>

<cfset arr = ArrayNew(1)>
  <cfoutput query="markerQuery">
    <cfset marker = {#markerid# = 'new google.maps.LatLng(#markerQuery.lat#,#states.lng#)'}>
    <cfset arrayAppend(arr,marker)>
  </cfoutput>

<script type="text/javascript" charset="utf-8">
  var markers = <cfoutput>#serializeJson(arr)#</cfoutput>; 
 </script>

如何在 Javascript 中保留查询信息,以便在单击标记(或匹配按钮)时将其显示在文本框中?

4

1 回答 1

6

您应该做的是循环查询,将记录集中的数据直接输出到 Javascript 数组中。然后在你的 JS 中使用它来循环,创建标记和信息窗口。像这样的东西:

<script type="text/javascript">
    var arrMarkers = [];

    <cfoutput query="getData">
        arrMarkers.push({
            lat: #getData.lat#,
            lng: #getData.lng#,
            title: '#JSStringFormat(getData.title)#',
            description: '#JSStringFormat(getData.description)#'
        });
    </cfoutput>


    function initialize() { 
        var latlng, marker;

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

        var map = new google.maps.Map(document.getElementById("map"), {
            zoom:               15,
            center:             new google.maps.LatLng(51.532315,-0.1544),
            mapTypeId:          google.maps.MapTypeId.ROADMAP
        });

        for (var i = 0; i < arrMarkers.length; i++) {
            latlng = new google.maps.LatLng(arrMarkers[i].lat, arrMarkers[i].lng);
            marker = new google.maps.Marker({
                position: latlng, 
                map: map, 
                title: arrMarkers[i].title
            });

            bindInfoWindow(marker, map, infowindow, arrMarkers[i].description);
        }
    }

    function bindInfoWindow(marker, map, infowindow, strDescription) {
        google.maps.event.addListener(marker, 'click', function() {
            infowindow.setContent(strDescription);
            infowindow.open(map, marker);
        });
    }
</script>
于 2013-03-11T11:17:43.423 回答