Thanks Dan, I saw you had an earlier posting on this. That's the
danger of using non-API stuff. Now all my code's been migrated, and
except for the clunkier UI it does look like there's been some good
engineering improvements made in M5.
On Feb 17, 9:23 pm, "Dan U." <dan....@gmail.com> wrote:
GmmGeocoder, but it's not documented/supported, so don't expect it to
be available in the next sdk. Geocoder I think is supposed to be the
actual class to use, but it doesn't do much (there's a few pieces of
mock data in the db and that's it). Anyway, here's some GmmGeocoder
code that takes a String text containing your location search query.
You should also be able to reverse lookup as well...
GmmGeocoder geocoder = new GmmGeocoder(Locale.getDefault());
Address[] addresses = geocoder.query(text,
GmmGeocoder.QUERY_TYPE_LOCATION, 0, 0, 180, 360);
On Feb 17, 9:09 pm, burevestnikov <stoy...@gmail.com> wrote:
Thanks for the tips on upgrading to M5! I am almost done migrating my
code, but I am having trouble migrating these two
import com.google.googlenav.Placemark
import com.google.googlenav.Search