Google地图自动填充列表

时间:2012-05-28 13:42:51

标签: javascript google-maps autocomplete google-api google-maps-autocomplete

我想知道是否有人可以帮助我。

我正在使用以下代码在用户输入地址详细信息时执行Google地图自动填充操作:

// JavaScript Document
var geocoder;
var map;
var marker;

function initialize(){
  var myOptions = {
    zoom: 6,
    center: new google.maps.LatLng(54.312195845815246, -4.45948481875007),
    mapTypeId: google.maps.MapTypeId.TERRAIN,
    mapTypeControl: true,
    mapTypeControlOptions: {
      style: google.maps.MapTypeControlStyle.HORIZONTAL_BAR,
      position: google.maps.ControlPosition.TOP_RIGHT
    },
    navigationControl: true,
    navigationControlOptions: {
      style: google.maps.NavigationControlStyle.ZOOM_PAN,
      position: google.maps.ControlPosition.TOP_LEFT
    },
    scaleControl: true,
    scaleControlOptions: {
      position: google.maps.ControlPosition.BOTTOM_LEFT
    }
  };

  map = new google.maps.Map(document.getElementById('map'), myOptions);
  geocoder = new google.maps.Geocoder();
  marker = new google.maps.Marker({
    map: map,
    draggable: true
  });
}

$(document).ready(function() { 
  initialize();
  $(function() {
    $("#address").autocomplete({
      //This bit uses the geocoder to fetch address values
      source: function(request, response) {       
        geocoder.geocode( {'address': request.term }, function(results, status) {
          response($.map(results, function(item) {
            return {
              label:  item.formatted_address,
              value: item.formatted_address,
              latitude: item.geometry.location.lat(),
              longitude: item.geometry.location.lng()
            }
          }));
        })
      },
      //This bit is executed upon selection of an address
      select: function(event, ui) {
        $("#osgb36lat").val(ui.item.latitude);
        $("#osgb36lon").val(ui.item.longitude);
        var location = new google.maps.LatLng(ui.item.latitude, ui.item.longitude);
        marker.setPosition(location); 
        map.setZoom(16); 
        map.setCenter(location);

      }
    });
  });

  google.maps.event.addListener(marker, 'dragend', function() {
    geocoder.geocode({'latLng': marker.getPosition()}, function(results, status) {
      if (status == google.maps.GeocoderStatus.OK) {
        if (results[0]) {
          $('#address').val(results[0].formatted_address);
          $('#osgb36lat').val(marker.getPosition().lat());
          $('#osgb36lon').val(marker.getPosition().lng());

          var point = marker.getPosition();
          map.panTo(point);
        }
      }
    });
  });
})

这就是我把它放在我的表格中的方式。

<div>
  <input name="address" type="text" id="address" size="40" maxlength="40" style="font:Calibri; font-size:12px" />
</div>

我现在希望能够做的是限制列表中可查看的项目数。我已经在几个论坛和谷歌地图网站上做了一些研究,但我似乎无法找到解决方案,所以我甚至不确定这是否可行。

我只是想知道是否有人可以看看这个,并提供一些指导我如何能够解决这个问题。

非常感谢和亲切的问候

2 个答案:

答案 0 :(得分:4)

Google Maps V3 API现在包含自动填充功能,可以将任何文本输入字段调整为自动填充位置和/或地点。它还没有显示缩略图,但是对于某些用例来说,添加Places会很棒,这里有详细信息:

文档:http://code.google.com/apis/maps/documentation/javascript/places.html#places_autocomplete

参考:http://code.google.com/apis/maps/documentation/javascript/reference.html#Autocomplete

示例:http://code.google.com/apis/maps/documentation/javascript/examples/places-autocomplete.html

我认为这些会对你有帮助.....

答案 1 :(得分:2)

经过一些进一步的研究,我在这里找到了一个很棒的教程:http://rjshade.com/2012/03/27/Google-Maps-autocomplete-with-jQuery-UI/我已经能够适应了。