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

[Kotlin] 다음 지도, 기본 마커(Marker) 추가

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

지도뷰 위에 올라가는 마커를 생성할 수 있다.

 

    val marker = MapPOIItem()


    marker.itemName = "(주)블루모바일"
    marker.tag = 0
    marker.mapPoint = mapPoint

 

    // 기본으로 제공하는 BluePin 마커 모양.
    marker.markerType = MapPOIItem.MarkerType.BluePin

 

    // 마커를 클릭했을때, 기본으로 제공하는 RedPin 마커 모양.

    marker.selectedMarkerType = MapPOIItem.MarkerType.RedPin

 

    mapView.addPOIItem(marker)

 

 

기본으로 제공하는 핀에는 BluePin, RedPin, YellowPin 이 있다.