gpt4 book ai didi

android - 如何将谷歌地图从 sateliteView 更改为 TrafficView

转载 作者:行者123 更新时间:2023-11-29 00:39:35 25 4
gpt4 key购买 nike

是否可以将选项菜单添加到谷歌地图?

即通过选择选项菜单将 map 从卫星 View 更改为交通 View ?

如有任何帮助,我们将不胜感激。

提前致谢。

最佳答案

您可以通过在选项菜单中输入以下代码来完成代码:

mapView.setSatellite(false);
mapView.setTraffic(true);

要创建 OptionMenu,请按照以下步骤操作:

放代码:

    @Override
public boolean onCreateOptionsMenu(Menu menu) {
super.onCreateOptionsMenu(menu);
menu.add(0, 1, 0, "Satelite");
menu.add(0, 2, 0, "Traffic");
return true;
}

并在下方添加代码:

@Override
public boolean onOptionsItemSelected(MenuItem item) {
super.onOptionsItemSelected(item);
switch (item.getItemId()) {
case 1:
mapView.setSatellite(true);
mapView.setTraffic(false);
return true;


case 2:
mapView.setSatellite(false);
mapView.setTraffic(true);
return true;



default:
return false;
}
}

希望对你有所帮助。

享受吧。 :)

关于android - 如何将谷歌地图从 sateliteView 更改为 TrafficView,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10316340/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com