2016-04-21 56 views
0

我正在开发一个网站,我正在实施Gmap与设施。一切都很好,但现在我只是想自动完成限制到一个特定的国家。这是我的代码..如何限制gmap搜索自动完成到有限国家

$(document).ready(function() { 
initialize_direction_map(); 
setDestination(); 
$("#start").autocomplete({ 
    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) { 
     $("#s_latitude").val(ui.item.latitude); 
     $("#s_longitude").val(ui.item.longitude); 
     var location = new google.maps.LatLng(ui.item.latitude, ui.item.longitude); 
     map.setCenter(location); 
     map.setZoom(12); 
     var marker = new google.maps.Marker({ 
      position: location, 
      map: map 
     }); 
     document.getElementById('direction_box').style.display='block'; 
     calcRoute(); 
    } 
}); 

$("#end").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) { 
     $("#e_latitude").val(ui.item.latitude); 
     $("#e_longitude").val(ui.item.longitude); 
     var location = new google.maps.LatLng(ui.item.latitude, ui.item.longitude); 

     calcRoute(); 
     $("table.adp-directions").css("width","300px"); 
    } 
    }); 
}); 

function initialize_direction_map(){ 
//MAP 
directionsDisplay = new google.maps.DirectionsRenderer(); 
var latlng = new google.maps.LatLng(20.5937,78.9629); 
var options = { 
    zoom: 5, 
    center: latlng, 
    mapTypeId: google.maps.MapTypeId.ROADMAP 
}; 

map = new google.maps.Map(document.getElementById('map-canvas'), options); 
directionsDisplay.setMap(map); 
    directionsDisplay.setPanel(document.getElementById('directions-panel')); 

//GEOCODER 
geocoder = new google.maps.Geocoder(); 
} 
+0

你仍然遇到这个问题? –

回答

1

您可以使用Google Maps JavaScript API Places库。 Google Places JavaScript库中的功能使您的应用程序能够搜索包含在定义区域内的地点,例如地图边界或固定点。

下面是一个示例代码如何按国家限制:

function initialize() { 

var options = { 
types: ['(cities)'], 
componentRestrictions: {country: "us"} 
}; 

var input = document.getElementById('searchTextField'); 
var autocomplete = new google.maps.places.Autocomplete(input, options); 
} 
相关问题