주소에서 위도와 경도를 어떻게 사용합니까?
Google지도에 주소의 위치를 표시하고 싶습니다.
Google Maps API를 사용하여 주소의 위도와 경도를 얻으려면 어디에서 있습니까?
public GeoPoint getLocationFromAddress(String strAddress){
Geocoder coder = new Geocoder(this);
List<Address> address;
GeoPoint p1 = null;
try {
address = coder.getFromLocationName(strAddress,5);
if (address==null) {
return null;
}
Address location=address.get(0);
location.getLatitude();
location.getLongitude();
p1 = new GeoPoint((double) (location.getLatitude() * 1E6),
(double) (location.getLongitude() * 1E6));
return p1;
}
}
strAddress주소가 포함 된 것입니다. address변수는 변환 된 주소를 보유하고 있습니다.
API가 업데이트 된 Ud_an의 솔루션
참고 : LatLng 클래스는 Google Play 서비스의 일부입니다.
필수 :
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/>
<uses-permission android:name="android.permission.INTERNET"/>
업데이트 : SDK 23 이상이있는 경우 위치에 대한 실행 권한을 관리해야합니다.
public LatLng getLocationFromAddress(Context context,String strAddress) {
Geocoder coder = new Geocoder(context);
List<Address> address;
LatLng p1 = null;
try {
// May throw an IOException
address = coder.getFromLocationName(strAddress, 5);
if (address == null) {
return null;
}
Address location = address.get(0);
p1 = new LatLng(location.getLatitude(), location.getLongitude() );
} catch (IOException ex) {
ex.printStackTrace();
}
return p1;
}
Google지도에 주소를 등록하려면 다음을 사용하는 쉬운 방법
Intent searchAddress = new Intent(Intent.ACTION_VIEW,Uri.parse("geo:0,0?q="+address));
startActivity(searchAddress);
또는
당신이 당신의 주소에서 위도 긴 포함 위해 필요한 경우 다음 사용 Google 플레이스 API를 다음과
다음과 같이 HTTP 호출 의 응답으로 JSONObject 를 반환하는 메서드를 만듭니다.
public static JSONObject getLocationInfo(String address) {
StringBuilder stringBuilder = new StringBuilder();
try {
address = address.replaceAll(" ","%20");
HttpPost httppost = new HttpPost("http://maps.google.com/maps/api/geocode/json?address=" + address + "&sensor=false");
HttpClient client = new DefaultHttpClient();
HttpResponse response;
stringBuilder = new StringBuilder();
response = client.execute(httppost);
HttpEntity entity = response.getEntity();
InputStream stream = entity.getContent();
int b;
while ((b = stream.read()) != -1) {
stringBuilder.append((char) b);
}
} catch (ClientProtocolException e) {
} catch (IOException e) {
}
JSONObject jsonObject = new JSONObject();
try {
jsonObject = new JSONObject(stringBuilder.toString());
} catch (JSONException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
return jsonObject;
}
이제 JSONObject 를 다음과 같이 getLatLong () 메서드에 전달합니다.
public static boolean getLatLong(JSONObject jsonObject) {
try {
longitute = ((JSONArray)jsonObject.get("results")).getJSONObject(0)
.getJSONObject("geometry").getJSONObject("location")
.getDouble("lng");
latitude = ((JSONArray)jsonObject.get("results")).getJSONObject(0)
.getJSONObject("geometry").getJSONObject("location")
.getDouble("lat");
} catch (JSONException e) {
return false;
}
return true;
}
다른 사람을 찾는 데 도움이 되었으면합니다 .. !! 감사합니다..!!
다음 코드는 google apiv2에서 작동합니다.
public void convertAddress() {
if (address != null && !address.isEmpty()) {
try {
List<Address> addressList = geoCoder.getFromLocationName(address, 1);
if (addressList != null && addressList.size() > 0) {
double lat = addressList.get(0).getLatitude();
double lng = addressList.get(0).getLongitude();
}
} catch (Exception e) {
e.printStackTrace();
} // end catch
} // end if
} // end convertAddress
여기서 address는 LatLng로 변환하려는 문자열 (123 Testing Rd City State zip)입니다.
이것이지도를 클릭 한 곳의 위도와 경도를 찾는 방법입니다.
public boolean onTouchEvent(MotionEvent event, MapView mapView)
{
//---when user lifts his finger---
if (event.getAction() == 1)
{
GeoPoint p = mapView.getProjection().fromPixels(
(int) event.getX(),
(int) event.getY());
Toast.makeText(getBaseContext(),
p.getLatitudeE6() / 1E6 + "," +
p.getLongitudeE6() /1E6 ,
Toast.LENGTH_SHORT).show();
}
return false;
}
잘 작동한다.
위치 주소를 얻기 위해 지오 코더 클래스를 사용할 수 있습니다.
위의 Kandha 문제에 대한 답변 :
"java.io.IOException 서비스를 사용할 수 없음"이 발생합니다. 이미 해당 권한을 부여하고 라이브러리를 포함합니다.지도보기를 얻을 수 있습니다. 지오 코더에서 IOException이 발생합니다.
시도 후 catch IOException을 추가했는데 문제가 해결되었습니다.
catch(IOException ioEx){
return null;
}
Geocoder coder = new Geocoder(this);
List<Address> addresses;
try {
addresses = coder.getFromLocationName(address, 5);
if (addresses == null) {
}
Address location = addresses.get(0);
double lat = location.getLatitude();
double lng = location.getLongitude();
Log.i("Lat",""+lat);
Log.i("Lng",""+lng);
LatLng latLng = new LatLng(lat,lng);
MarkerOptions markerOptions = new MarkerOptions();
markerOptions.position(latLng);
googleMap.addMarker(markerOptions);
googleMap.animateCamera(CameraUpdateFactory.newLatLngZoom(latLng,12));
} catch (IOException e) {
e.printStackTrace();
}
참고 URL : https://stackoverflow.com/questions/3574644/how-can-i-find-the-latitude-and-longitude-from-address
'IT' 카테고리의 다른 글
| RegEx가없는 String.replaceAll (0) | 2020.08.14 |
|---|---|
| EC2에서 파일을 다운로드해야합니까? (0) | 2020.08.14 |
| Git 사전 푸시 후크 (0) | 2020.08.14 |
| ipython 노트북의 matplotlib 중간에 임의의 줄 추가 (0) | 2020.08.14 |
| 자바에서 적으로 메서드를 호출하는 방법 (0) | 2020.08.14 |