[6.2.0] change the map style

This commit is contained in:
zhongchao
2023-11-29 19:24:50 +08:00
parent 0f97882cde
commit d9c8c8885d
4 changed files with 26 additions and 4 deletions

View File

@@ -475,5 +475,5 @@ interface IMapController {
fun setStreetLightEffectIsEnable(isEnable: Boolean)
fun setHDTypeVisibile(type: IntArray?)
fun setHDTypeVisible(type: IntArray?)
}

View File

@@ -2218,7 +2218,7 @@ class MapController(private var context: Context?, private val mMapView: IMapVie
}
}
override fun setHDTypeVisibile(type: IntArray?){
override fun setHDTypeVisible(type: IntArray?){
mMapView.getMapEngine().setHDTypeVisibile(type)
}

View File

@@ -1524,8 +1524,8 @@ class MapAutoViewHelper(mapAutoView: MapAutoView) {
}
//设置显示高精元素
fun setHDTypeVisibile(type: IntArray?){
mMapAutoView.getMapController()?.setHDTypeVisibile(type)
fun setHDTypeVisible(type: IntArray?){
mMapAutoView.getMapController()?.setHDTypeVisible(type)
}
}