如何使用 google map api 自动完成添加额外的结果?
How to add extra result with google map api autocomplete?
一般来说,如果我们使用 Google 地图,它会自动完成 returns 5 行。例如,如果我们键入 dfw,google 自动完成将显示以下输出:
如何使用此 Google 地图自动完成结果添加额外的结果?我想在结果中添加额外的行。预期输出如下:
我正在使用 google 地图 JavaScript API。
var placeSearch,自动完成;
var componentForm = {
street_number: 'short_name',
路线:'long_name',
地点:'long_name',
administrative_area_level_1: 'short_name',
国家:'long_name',
postal_code: 'short_name'
};
function initAutocomplete() {
// Create the autocomplete object, restricting the search to geographical
// location types.
autocomplete = new google.maps.places.Autocomplete(
(document.getElementById('autocomplete')),
{types: ['geocode']});
// When the user selects an address from the dropdown, populate the address
// fields in the form.
autocomplete.addListener('place_changed', fillInAddress);
}
function fillInAddress() {
// Get the place details from the autocomplete object.
var place = autocomplete.getPlace();
for (var component in componentForm) {
document.getElementById(component).value = '';
document.getElementById(component).disabled = false;
}
// Get each component of the address from the place details
// and fill the corresponding field on the form.
for (var i = 0; i < place.address_components.length; i++) {
var addressType = place.address_components[i].types[0];
if (componentForm[addressType]) {
var val = place.address_components[i][componentForm[addressType]];
document.getElementById(addressType).value = val;
}
}
}
// Bias the autocomplete object to the user's geographical location,
// as supplied by the browser's 'navigator.geolocation' object.
function geolocate() {
if (navigator.geolocation) {
navigator.geolocation.getCurrentPosition(function(position) {
var geolocation = {
lat: position.coords.latitude,
lng: position.coords.longitude
};
var circle = new google.maps.Circle({
center: geolocation,
radius: position.coords.accuracy
});
autocomplete.setBounds(circle.getBounds());
});
}
}
HTML 是:
<input id="street_number" name="street_number" type="hidden" />
<input id="route" name="route" type="hidden" />
<input id="locality" name="locality" type="hidden" />
<input id="administrative_area_level_1" name="administrative_area_level_1" type="hidden" />
<input id="country" name="country" type="hidden" />
<input id="postal_code" name="postal_code" type="hidden" />
<input id="autocomplete" type="text" placeholder="Enter your address" onFocus="geolocate()" />
Google 为其地点搜索提供了多种地点类型。在这里您可以找到所有 Place Types which are available and here some information of how to add places.
我们这个..
var autocomplete = new google.maps.places.Autocomplete(document.getElementById('MyAutocomplete'));
setTimeout(function(){
$(".pac-container").append('<div id="areasearch" class="pac-item" onmousedown="alert(\'Yes, working\')"><span class="pac-icon icon-airport"></span><span class="pac-item-query"><span class="pac-matched"></span>Sample Address</span> <span>it\'s Working</span></div>');
}, 500);
一般来说,如果我们使用 Google 地图,它会自动完成 returns 5 行。例如,如果我们键入 dfw,google 自动完成将显示以下输出:
如何使用此 Google 地图自动完成结果添加额外的结果?我想在结果中添加额外的行。预期输出如下:
我正在使用 google 地图 JavaScript API。 var placeSearch,自动完成; var componentForm = { street_number: 'short_name', 路线:'long_name', 地点:'long_name', administrative_area_level_1: 'short_name', 国家:'long_name', postal_code: 'short_name' };
function initAutocomplete() {
// Create the autocomplete object, restricting the search to geographical
// location types.
autocomplete = new google.maps.places.Autocomplete(
(document.getElementById('autocomplete')),
{types: ['geocode']});
// When the user selects an address from the dropdown, populate the address
// fields in the form.
autocomplete.addListener('place_changed', fillInAddress);
}
function fillInAddress() {
// Get the place details from the autocomplete object.
var place = autocomplete.getPlace();
for (var component in componentForm) {
document.getElementById(component).value = '';
document.getElementById(component).disabled = false;
}
// Get each component of the address from the place details
// and fill the corresponding field on the form.
for (var i = 0; i < place.address_components.length; i++) {
var addressType = place.address_components[i].types[0];
if (componentForm[addressType]) {
var val = place.address_components[i][componentForm[addressType]];
document.getElementById(addressType).value = val;
}
}
}
// Bias the autocomplete object to the user's geographical location,
// as supplied by the browser's 'navigator.geolocation' object.
function geolocate() {
if (navigator.geolocation) {
navigator.geolocation.getCurrentPosition(function(position) {
var geolocation = {
lat: position.coords.latitude,
lng: position.coords.longitude
};
var circle = new google.maps.Circle({
center: geolocation,
radius: position.coords.accuracy
});
autocomplete.setBounds(circle.getBounds());
});
}
}
HTML 是:
<input id="street_number" name="street_number" type="hidden" />
<input id="route" name="route" type="hidden" />
<input id="locality" name="locality" type="hidden" />
<input id="administrative_area_level_1" name="administrative_area_level_1" type="hidden" />
<input id="country" name="country" type="hidden" />
<input id="postal_code" name="postal_code" type="hidden" />
<input id="autocomplete" type="text" placeholder="Enter your address" onFocus="geolocate()" />
Google 为其地点搜索提供了多种地点类型。在这里您可以找到所有 Place Types which are available and here some information of how to add places.
我们这个..
var autocomplete = new google.maps.places.Autocomplete(document.getElementById('MyAutocomplete'));
setTimeout(function(){
$(".pac-container").append('<div id="areasearch" class="pac-item" onmousedown="alert(\'Yes, working\')"><span class="pac-icon icon-airport"></span><span class="pac-item-query"><span class="pac-matched"></span>Sample Address</span> <span>it\'s Working</span></div>');
}, 500);