프로그래밍245 카카오맵 예제 코드 모음 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(mark.. 2021. 7. 24. 안드로이드 어플 아이콘 변경 res 우클릭 - New - Image Asset에 아이콘 추가 AndroidManifest.xml 을 열고 application 의 icon 과 roundIcon 부분을 추가한 아이콘으로 수정. 캡쳐화면 출처 : https://louie0724.tistory.com/509 New -> Image Asset"을 클릭함 - 이미지의 이름을 입력함 - 이미지 파일을 " data-og-host="louie0724.tistory.com" data-og-source-url="https://louie0724.tistory.com/509" data-og-url="https://louie0724.tistory.com/509" data-og-image="https://scrap.kakaocdn.net/dn/v2ol1/h.. 2021. 7. 24. 카카오맵 NativeBaseNetConnection 해결법 manifest.xml 코드를 아래와 같이 변경 2021. 7. 24. 카카오맵 API 사용을 위한 해시키 값 구하기 코드 사용보다는 cmd 창에서 명령어로 구하는것이 더 간편하다디버그 해시키 값 구하기keytool -exportcert -alias androiddebugkey -keystore %USERPROFILE%\.android\debug.keystore -storepass android -keypass android | openssl sha1 -binary | openssl base64 릴리즈 해시키 값 구하기keytool -exportcert -alias -keystore | openssl sha1 -binary | PATH_TO_OPENSSL_LIBRARY\bin\openssl base64 openssl을 사용하여 해시키 값을 구하면 이상한 해시키 값을 가져올 수 있다고해서 코틀린 코드를 이용해 찾.. 2021. 7. 24. 이전 1 ··· 48 49 50 51 52 53 54 ··· 62 다음