merge code

This commit is contained in:
qiji4215 2023-05-30 14:00:32 +08:00
parent 7fb8af31b5
commit 7a7eb61401
2 changed files with 12 additions and 1 deletions

View File

@ -253,7 +253,7 @@ class MainActivity : BaseActivity() {
//开启定位
mapController.locationLayerHandler.startLocation()
mapController.mMapView.setLogoVisable(View.GONE)
//启动轨迹存储
// viewModel.startSaveTraceThread(this)

View File

@ -800,6 +800,17 @@ public final class NIMapView extends RelativeLayout {
}
}
/**
* 设置logo显隐
*
* @param position 按钮位置
*/
public void setLogoVisable(int visable) {
if (logoImage != null) {
logoImage.setVisibility(visable);
}
}
/**
* 设置缩放按钮位置
*