Reputation: 156
Generally if we use Google map autocomplete it returns 5 rows. For example if we type dfw the google autocomplete will display the following output:
How can I add extra result with this Google map autocomplete result? I want to add extra row with the result. Expected output is given bellow:
I am using google map JavaScript API. var placeSearch, autocomplete; var componentForm = { street_number: 'short_name', route: 'long_name', locality: 'long_name', administrative_area_level_1: 'short_name', country: '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 is:
<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()" />
Upvotes: 0
Views: 2423
Reputation: 156
Us this..
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);
Upvotes: 1
Reputation: 682
Google offers numerous place types for its places search. Here you find all Place Types which are available and here some information of how to add places.
Upvotes: 0