본문 바로가기
안드로이드 웹앱 콘테츠 개발자 양성(국비지원)/Android 기능

Android Studio(기능) LBS 3 (지도 앱에 해당 위치 표시하기)

by 차누감 2019. 10. 10.
반응형

주소와 위도를 바꿔주는 코딩

이름을 검색하여 위도, 경도를 찾을 수 있고, 위도,경도로 해당 주소 이름을 찾기 가능
얻어온 위도, 경도로 지도앱에 표시할 수 있다.

activity_main.xml 코드

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    android:padding="16dp"
    tools:context=".MainActivity">
 
    <EditText
        android:id="@+id/et_address"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:hint="input address"
        android:inputType="text"/>
 
    <Button
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="search"
        android:onClick="clickBtn"/>
 
    <EditText
        android:id="@+id/et_lat"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:hint="input latitude"
        android:inputType="numberDecimal"
        android:layout_marginTop="24sp"/>
    <EditText
        android:id="@+id/et_lng"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:hint="input longitude"
        android:inputType="numberDecimal"/>
    <Button
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="search"
        android:onClick="clickBtn2"/>
</LinearLayout>
 
cs

MainActivity.java 코드

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
 
 
import android.location.Address;
import android.location.Geocoder;
 
 
public class MainActivity extends AppCompatActivity {
 
    EditText etAddress;
    EditText etLat, etLng;
 
 
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
 
        etAddress=findViewById(R.id.et_address);
        etLat=findViewById(R.id.et_lat);
        etLng=findViewById(R.id.et_lng);
    }
 
    public void clickBtn(View view) {
        // 주소 -> 좌표 (지오코딩)
        String addr= etAddress.getText().toString();
 
        //지오 코딩 작업을 수행하는 객체 생성
        Geocoder geocoder= new Geocoder(thisLocale.KOREA);
 
        //지오코더에게 지오코딩작업 요청
        try {
            List<Address> addresses=geocoder.getFromLocationName(addr,3); //최대 3개까지 받는데, 0~3개까지 있으면 받는다.
 
            StringBuffer buffer= new StringBuffer();
            for(Address t : addresses){
                buffer.append(t.getLatitude()+", "+t.getLongitude()+"\n");
            }
 
            //다이얼로그로 좌표들 보여주기
            AlertDialog.Builder builder= new AlertDialog.Builder(this);
            builder.setMessage(buffer.toString()).setPositiveButton("OK",null).create().show();
 
        } catch (IOException e) {
            Toast.makeText(this"검색 실패", Toast.LENGTH_SHORT).show();
        }
    }
 
    public void clickBtn2(View view) {
        // 좌표 -> 주소 (역지오코딩)
        double lat=Double.parseDouble(etLat.getText().toString());
        double lng=Double.parseDouble(etLng.getText().toString());
 
        Geocoder geocoder= new Geocoder(thisLocale.KOREA);
 
        try {
            List<Address> addresses=geocoder.getFromLocation(lat,lng,3);
 
            StringBuffer buffer= new StringBuffer();
            for(Address t : addresses){
                buffer.append(t.getCountryName()+"\n"); //나라이름
                buffer.append(t.getPostalCode()+"\n"); //우편번호
                buffer.append(t.getAddressLine(0)+"\n"); //주소 1
                buffer.append(t.getAddressLine(1)+"\n"); //주소 2 - 없으면 null
                buffer.append(t.getAddressLine(2)+"\n"); //주소 3 - 없으면 null
                buffer.append("---------------\n");
            }
 
            //다이얼로그로 결과 보여주기
            new AlertDialog.Builder(this).setMessage(buffer.toString()).setPositiveButton("OK",null).create().show();
        } catch (IOException e) {
            Toast.makeText(this"검색 실패", Toast.LENGTH_SHORT).show();
        }
 
    }
}
 
 
 

위 코드를 작성하면 아래와 같이 실행될 것이다.

 

이제 위도, 경도 정보로 지도에 위치를 표시하자.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    android:padding="16dp"
    tools:context=".MainActivity">
 
    <EditText
        android:id="@+id/et_address"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:hint="input address"
        android:inputType="text"/>
 
    <Button
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="search"
        android:onClick="clickBtn"/>
    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="show map"
        android:onClick="clickShowMap"/>
 
    <EditText
        android:id="@+id/et_lat"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:hint="input latitude"
        android:inputType="numberDecimal"
        android:layout_marginTop="24sp"/>
    <EditText
        android:id="@+id/et_lng"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:hint="input longitude"
        android:inputType="numberDecimal"/>
    <Button
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="search"
        android:onClick="clickBtn2"/>
</LinearLayout>
 
 

&q= 마커 표시, (aaa) 는 지도에 표시될 이름

반응형

댓글