2

我花了几个小时看这个,找不到我想要的解决方案。我知道我错过了一些东西,但可以通过一点帮助来做。

本质上,我有一个带有记录集保存地址的经典 ASP 页面。我想将这些地址拉到页面中(带有重复区域)。完成那一点,并获得谷歌期望的字符串和正确的信息。

<script>var map_locations = [{"lat":52.954145,"lng":-4.101083,"title":"Nice House in Wales","street":"Prenteg, Porthmadog, LL49 9SR","price":"55,500"}]</script>

但是,我想用以下内容替换“lat”等:

<script>var map_locations = [{"address":"<%=(rsLocations.Fields.Item("locPostCode").Value)%>","title":"Nice house in Wales","street":"Prenteg, Porthmadog, LL49 9SR","price":"55,500"}]</script>
  • 我不持有地址的纬度/经度
  • 我已经浏览了 Google 关于 GeoCoding 的 API 文档。找到了一些有用的东西,但无法弄清楚如何将我的“邮政编码”“绑定”到我的 JS 文件内的地址函数中。(链接:https ://developers.google.com/maps/documentation/javascript/geocoding )。

这是谷歌根据上面的链接建议我做的事情。 谷歌地理编码

var geocoder;
var map;
function initialize() {
geocoder = new google.maps.Geocoder();
var latlng = new google.maps.LatLng(-34.397, 150.644);
var mapOptions = {
  zoom: 8,
  center: latlng,
  mapTypeId: google.maps.MapTypeId.ROADMAP
}
map = new google.maps.Map(document.getElementById("map_canvas"), mapOptions);
}

function codeAddress() {
var address = document.getElementById("address").value;
geocoder.geocode( { 'address': address}, function(results, status) {
  if (status == google.maps.GeocoderStatus.OK) {
    map.setCenter(results[0].geometry.location);
    var marker = new google.maps.Marker({
        map: map,
        position: results[0].geometry.location
    });
  } else {
    alert("Geocode was not successful for the following reason: " + status);
  }
});
}

<body onload="initialize()">
<div id="map_canvas" style="width: 320px; height: 480px;"></div>
<div>
<input id="address" type="textbox" value="Sydney, NSW">
<input type="button" value="Encode" onclick="codeAddress()">
</div>
</body>

现在,Google 的文档使用“地址”的输入变量,因此您可以将其与以下内容一起使用:

var address = document.getElementById("address").value;

我的问题是,如何让记录集绑定成为地址?ASP 和 JS 文件不能很好地混合,并且不确定如何将其放入地址中以使地理编码正常工作。

如果我通过 Lat/Lngs 发送,我的 JS 文件 (global.js) 包含以下内容,它为用户提供了样式精美的标记和信息框以与之交互。

处理编写 Google 地图内容的 JS 文件

var map;
function initializePropertiesMap() {
if($('#map_canvas').length == 0)
    return;
var myLatlng = new google.maps.LatLng(52.954145,-4.101083);
var myOptions = {
    zoom: 8,
    center: myLatlng,
    mapTypeId: google.maps.MapTypeId.ROADMAP
}
var infowindow = new google.maps.InfoWindow();
var map = new google.maps.Map(document.getElementById("map_canvas"), myOptions);
$.each(map_locations, function(key, value) { 
    var marker = new google.maps.Marker({
        position: new google.maps.LatLng(value['lat'], value['lng']),
        map: map,
        icon: 'css/images/marker.png',
        scrollwheel: false,
        streetViewControl:true,
        title: value['title']
    });

    var link = "link";
    google.maps.event.addListener( marker, 'click', function() {
        // Setting the content of the InfoWindow
        var content = '<div id="info" class="span5"><div class="row">' + '<div     class="span2"><img src="css/images/houses/house_'+(key+1)+'.jpg" class="thumbnail" style="width:135px"/></div>' + '<div class="span3"><h3>' + value['title'] + '</h3><h6>' + value['street'] + '</h6>' + '<strong>&pound;' + value['price'] + '</strong>' + '<p><a href="listing-detail.asp">Read More >></a></p>' + '</div></div></div>';
        infowindow.setContent(content );
        infowindow.open(map, marker);
    });

});


}

对此进行了调整后,我无法使其正常工作,并想知道是否有人对我有任何建议?

谢谢尼克

更新

只是想我会提到我已经尝试过这个:

var address = <%=rsLocations.Fields.Item("locPostcode").value%>;

这显然不会作为 JS 文件错误起作用。

4

1 回答 1

-2

This answer to a similar question about geocoding addresses from XML可能会有所帮助。

您对地理编码器的异步性质有疑问,如果您添加许多地址,您将遇到地理编码器配额/速率限制的问题(特别是因为您的代码不查看地理编码器的返回状态)。

最简单的解决方案是使用函数闭包将地理编码器的调用与返回的结果相关联

如果您有这些点的纬度和经度,请将其存储在您的数据库中并使用它来显示您的点。虽然您可以在页面加载时使用(异步)地理编码器对地址进行地理编码,但如果您有超过 10 个地址,您将遇到地理编码器配额/速率限制。 这篇关于地理编码策略的文章可能有助于做到这一点。

于 2012-11-12T20:09:03.450 回答