1. 마커 추가
var myLocation : MapPoint = MapPoint.mapPointWithGeoCoord(위도, 경도)
var marker :MapPOIItem = MapPOIItem()
marker.setItemName("Default Marker")
marker.setTag(0)
marker.setMapPoint(myLocation)
marker.setMarkerType(MapPOIItem.MarkerType.BluePin) // 기본으로 제공하는 BluePin 마커 모양.
marker.setSelectedMarkerType(MapPOIItem.MarkerType.RedPin) // 마커를 클릭했을때, 기본으로 제공하는 RedPin 마커 모양.
mapView.addPOIItem(marker);
더보기
조금씩 추가 해 나갈 예정
'프로그래밍 > Kotlin' 카테고리의 다른 글
[Kotlin] 날짜간 차이 계산 및 형식변환 (0) | 2021.09.15 |
---|---|
숫자 형식맞춰 출력하기 (#,###) - DecimalFormat (0) | 2021.08.19 |
코틀린 버튼 클릭시 특정 사이트로 이동 (0) | 2021.06.29 |
[Kotlin] 콘솔에서 데이터 입력받는법 (0) | 2021.06.29 |
사용자의 활동 상태를 알려주는 API (0) | 2021.06.29 |
댓글