禁用Google地图的内置行为

时间:2015-09-18 17:57:47

标签: android google-maps

我在Android应用中使用Google地图,但它有一些不受欢迎的行为。当我点击地图时,它会显示两个图标,您可以使用它们切换到网络版。

当我第一次创建地图时,它看起来像这样: screenshot of first map

当我点按它时,会显示以下两个按钮: enter image description here

我想禁用它,我该怎么做?

2 个答案:

答案 0 :(得分:1)

您需要致电UiSettings.setMapToolbarEnabled(false)以禁用该功能。

此处有更多信息:https://developers.google.com/maps/documentation/android-api/interactivity#toolbar

答案 1 :(得分:1)

getMapAsync(new OnMapReadyCallback() {
    @Override
    public void onMapReady(GoogleMap map) {
        UiSettings ui = map.getUiSettings();
        ui.setMapToolbarEnabled(false);
    }
});