使用Mapbox样式地图,左下角有一个Logo和Attribution

image-20240521151850335

那么怎么去除这个水印呢

private val mapView by lazy {
binding.mapView
}

//去除mapbox的Logo
mapView.logo.enabled = false
//去除Attribution
mapView.attribution.enabled = false

最终效果如图

image-20240521152133339