gpt4 book ai didi

android - 如何在 android 中显示没有标签或街道名称的谷歌地图?

转载 作者:搜寻专家 更新时间:2023-11-01 08:18:18 26 4
gpt4 key购买 nike

我正在开发一个 Android 应用程序,其中的 map 应该是干净的,并且不能显示街道名称或地点名称。我想使用不同位置的样式和设置优惠来自定义 map 布局。

最佳答案

from this site you can create custom map style

when you get on map ready callback you can set the custom map style like this

  @Override
public void onMapReady(GoogleMap googleMap) {

try {
// Customise the styling of the base map using a JSON object defined
// in a raw resource file.
boolean success = googleMap.setMapStyle(
MapStyleOptions.loadRawResourceStyle(
this, R.raw.style_json));

if (!success) {
Log.e(TAG, "Style parsing failed.");
}
} catch (Resources.NotFoundException e) {
Log.e(TAG, "Can't find style. Error: ", e);
}

}

关于android - 如何在 android 中显示没有标签或街道名称的谷歌地图?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55468130/

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