Suggest Addresses in a SuggestBox in GWT/Java
问题 I want to define a SuggestBox , which behaves like the search bar in Google Maps: When you begin to type, real addresses, starting with the typed letters, appear. I think, that I need to use the Geocoder.getLocations(String address, LocationCallback callback) method, but I have no idea how to connect this with the oracle, which is needed by the suggest box to produce its suggestions. Can you please give me ideas how do I connect the getLocations Method with the SuggestOracle ? 回答1: I solved