After my recent success (with help from here), I wanted to finish up my script. Google agreed that it was ok to put the geocoded map result on the second page so I want to strip out the map display from my geocoding script on the first page.
I have this working here: http://jsfiddle.net/njDvn/15/
BUT! The only thing it doesnt have is autosuggest (the google one, not a jqueryUI one). Here is some code which does demonstrate the google autosuggest: http://jsfiddle.net/Rr5PL/63/
Now, the code that seems to enable the autosuggest is this:
var autocomplete = new google.maps.places.Autocomplete(address,options);
var autocompleteOptions = {types: ['geocode']};
I added this to my original code and unfortunatly it doesnt work! This code can be seen here: http://jsfiddle.net/njDvn/16/
So my question is, based on my original code in my FIRST LINK, how do I enable the google autocomplete suggestions?
Any help or input you can give would be much appreciated! Thank you.