16

アプリでマップ API 2 を使用してリバース ジオコーディングを実行したいのですが、その方法が正確にわかりませんか?何かアイデアはありますか?

4

5 に答える 5

17

ジオコーダーを使用する:

Geocoder geoCoder = new Geocoder(context);
List<Address> matches = geoCoder.getFromLocation(latitude, longitude, 1);
Address bestMatch = (matches.isEmpty() ? null : matches.get(0));
于 2013-03-03T21:25:09.553 に答える