I am currently looking at ways to implement an autocomplete search for a Flex application I'm building. So the user needs to be able to search for addresses and roads and have the text autocomplete like Googles search.
A co-worker of mine has successfully implemented this through using Flex flash commander and a web service to query the data in SQL server.
I'm thinking there must be better ways to do this, by either querying the map service, using a geocoder or having the data in an XML file.
Previously, I've been doing it through a geocoder, but not sure how you could get a type ahead to work with that.
Any idea on this?