0

我有一个 JavaScript 邮政编码搜索,根据输入的内容搜索英国的 3 家壁橱商店。目前它发现 3 家商店都很好。

首先,我想在输入的邮政编码处放置一个标记。

其次,当三个结果出现时,它们会被标记在地图上。我想要一个名为方向的链接,一旦单击,它将显示从起点到所选商店的方向。

我尝试了以下代码,但它不起作用......但是它确实从输入和方向链接中获取邮政编码数据并在控制台中显示它们。我需要将它们转换为 long 和 lat 才能正常工作吗?

function calcRoute() {
    var start = document.getElementById('address').value;
    var end = document.getElementById('get-directions').name;
    //console.log(start, end)
    var request = {
        origin:start,
        destination:end,
        travelMode: google.maps.DirectionsTravelMode.DRIVING
    };
    directionsService.route(request, function(response, status) {
      if (status == google.maps.DirectionsStatus.OK) {
        directionsDisplay.setDirections(response);
      }
    });
  }

我的开始标记有这段代码,但这似乎也不起作用

function initialize() {
    var start_marker = new google.maps.LatLng(document.getElementById('address').value);
    directionsDisplay = new google.maps.DirectionsRenderer();
    var mapOptions = {
      zoom:7,
      mapTypeId: google.maps.MapTypeId.ROADMAP,
      center: start_marker
    }
    marker = new google.maps.Marker({
          map:map,
          draggable:false,
          animation: google.maps.Animation.DROP,
          position: start_marker,
        });
    map = new google.maps.Map(document.getElementById('map'), mapOptions);
    directionsDisplay.setMap(map);
  }

这部分从邮政编码中获取长/纬度数据,

this.geocode = function(address, callbackFunction) {
  geocoder.geocode( { 'address': address}, function(results, status) {
    if (status == google.maps.GeocoderStatus.OK) {
      var result = {};
      result.latitude = results[0].geometry.location.lat();
      result.longitude = results[0].geometry.location.lng();
      callbackFunction(result);
      //console.log(result);
        //console.log("Geocoding " + geometry.location + " OK");
        addMarker(map, results[0].geometry.location);
    } else {
      alert("Geocode was not successful for the following reason: " + status);
      callbackFunction(null);
    }
  });

addMarker 的功能在这里:

function addMarker(map, location) {

console.log("Setting marker for (location: " + location + ")");
marker = new google.maps.Marker({
map : map,
animation: google.maps.Animation.DROP,
position : location
});

}

任何帮助将不胜感激!

4

1 回答 1

0

google.maps.LatLng的构造函数需要两个浮点数作为参数,而不是字符串:

var start_marker = new google.maps.LatLng(document.getElementById('address').value);

如果您只有一个地址,如果您想在地图上显示一个标记,则需要使用地理编码服务来检索该地址的坐标。

于 2012-10-24T12:15:31.667 回答