Constructor 링크 복사

주간 주행 테마로 밝은 색상의 지도에 주행에 필요한 요소들이 부각되어 표시됩니다.

fun driveDayTheme() {
    mapView.mapTheme = KNMapTheme.driveDay()
}
fun driveDayTheme() {
    mapView.mapTheme = KNMapTheme.driveDay()
}
코드가 숨겨졌습니다.

야간 주행 테마로 어두운 색상의 지도에 주행에 필요한 요소들이 부각되어 표시됩니다.

fun driveNightTheme() {
    mapView.mapTheme = KNMapTheme.driveNight()
}
fun driveNightTheme() {
    mapView.mapTheme = KNMapTheme.driveNight()
}
코드가 숨겨졌습니다.

주간 지도 검색 테마로 밝은 색상의 지도에 관심 지점(POI), 건물, 이정표 등 지도 검색 시 확인할 수 있는 요소들이 부각되어 표시됩니다.

fun searchDayTheme() {
    mapView.mapTheme = KNMapTheme.searchDay()
}
fun searchDayTheme() {
    mapView.mapTheme = KNMapTheme.searchDay()
}
코드가 숨겨졌습니다.

야간 지도 검색 테마로 어두운 색상의 지도에 관심 지점(POI), 건물, 이정표 등 지도 검색 시 확인할 수 있는 요소들이 부각되어 표시됩니다.

fun searchNightTheme() {
    mapView.mapTheme = KNMapTheme.searchNight()
}
fun searchNightTheme() {
    mapView.mapTheme = KNMapTheme.searchNight()
}
코드가 숨겨졌습니다.