Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Google マップでは、タッチしたポイントの緯度と経度を取得できます。緯度と経度の住所を取得するにはどうすればよいですか(逆ジオコーディング)。
List<Address> addresses = null; try { Locale mLocale = new Locale("en"); Geocoder gCoder = new Geocoder(context , mLocale); addresses = gCoder.getFromLocation(lat, lng, 1); Address addr = addresses.get(0); ... ... .. } catch (Exception e) { }
ジオコーダー