在 Google地图中,我需要制作文字颜色,地图的背景颜色可使用简单的字符串参数进行配置,但基于Google文档https://developers.google.com/maps/documentation/android-api/hiding-features,我们可以通过传递JSON样式对象来实现此目的到你的地图所以有没有可能改变城市的文字颜色,没有JSON风格的地图的背景颜色。
[
{
"elementType": "labels.text",
"stylers": [
{
"color": "#000000"
},
{
"lightness": -55
},
{
"visibility": "simplified"
},
{
"weight": 2
}
]
}
]