Does somebody know if there is any way to reproduce an ajax suggestion box like http://maps.google.com/ have in my webpage using the google maps api?
The idea would be f
There is an API example from Google.
Make sure you load the places
library:
Next your javascript:
var autocomplete;
function initialize() {
autocomplete = new google.maps.places.Autocomplete(
document.getElementById('autocomplete'),
{ types: ['geocode'] }
);
}
google.maps.event.addDomListener(window, 'load', initialize);
With HTML
Also see https://developers.google.com/maps/documentation/javascript/examples/places-autocomplete-addressform