프로그램/Android

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

로드러너 2019. 4. 9. 01:46

// 중심점 변경

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);