android2013. 6. 30. 17:56

add. 좌표로 서울 화면만 보기

 Map.java 파일에 
         MapView eventMap; //선언을 해주고

        onCreate함수 안에..

        eventMap = (MapView)findViewById(R.id.eventMapView);
       //eventMap.setSatellite(true); //위성GPS화면으로 보기
        eventMap.setBuiltInZoomControls(true);
        GeoPoint vMap = new GeoPoint(37566535, 126977969);
        MapController map = eventMap.getController();
        map.animateTo(vMap);
        map.setZoom(15);


add2. 주소로 GPS 좌표 찾기

 XML   : http://maps.google.co.kr/maps/api/geocode/xml?address=[찾을주소]&sensor=true
 JSON : http://maps.google.co.kr/maps/api/geocode/json?address=[찾을주소]&sensor=true

        ※ 위 좌표값에 1,000,000을 곱하고 반올림해서 자연수로 변환한후, "GeoPoint()"에게 넘겨줘야 합니다~

check. 
   구글맵의 GPS 정보는 자바를 기준으로 JSON 방식과 XML 방식으로 데이터를 제공하는데 XML은 사람이 이해하기 쉬 
   태그 방식으로 표기 하지만 JSON은 컴퓨터가 빨리 인식하도록 하기 위해 객체와 배열 구조로 만들어졌음. 편한걸로 이용^^





출처 : http://titis.tistory.com/entry/%EA%B5%AC%EA%B8%80%EB%A7%B5-Google-Map-%EC%82%AC%EC%9A%A9-comgoogleandroidmaps

Posted by 광포한곰돌이