본문 바로가기
프로그램/Android

[Kotlin] 다음지도 중심점, 레벨(zoom) 변경

by 로드러너 2019. 4. 9.
336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.

// 중심점 변경

mapView.setMapCenterPoint(MapPoint.mapPointWithGeoCoord(37.53737528, 127.00557633), true);

 

// 줌 레벨 변경

mapView.setZoomLevel(7, true);

 

// 중심점 변경 + 줌 레벨 변경

mapView.setMapCenterPointAndZoomLevel(MapPoint.mapPointWithGeoCoord(33.41, 126.52), 9, true);

 

// 줌 인

mapView.zoomIn(true);

 

// 줌 아웃

mapView.zoomOut(true);