gpt4 book ai didi

google-maps - 在 Google Maps API 中隐藏街道名称

转载 作者:行者123 更新时间:2023-12-05 06:43:57 24 4
gpt4 key购买 nike

我正在尝试用 map 做游戏。我需要一张没有街道名称的 map 。是否可以在 Google Maps API(iOS、Android)中隐藏街道名称(但不是其值)?

最佳答案

在res/raw中创建一个json文件,例如style_json.txt

在文件中,放入:

[
{
"featureType": "poi",
"stylers": [
{ "visibility": "off" }
]
}
]

然后在你的 onMapReady 中:

    @Override
public void onMapReady(GoogleMap googleMap) {
//your code
try {
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);
}
//your code
}

来源:https://developers.google.com/maps/documentation/android-api/poi和:https://developers.google.com/maps/documentation/android-api/hiding-features

关于google-maps - 在 Google Maps API 中隐藏街道名称,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31379502/

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