본문
180907(금) - Google Maps (Hiding Map Features with Styilng)
Mobile/Google Maps 2018. 9. 7. 16:19
Google Maps
Hiding Map Features with Styling
- features change 뿐만 아니라 hide 도 가능
- 마찬가지로 normal map type에서만 동작하며, indoor maps에서는 적용안된다.
Pass a JSON style object to your map
<resources>
<string name="style_json">
[
{
\"featureType\": \"poi.business\",
\"elementType\": \"all\",
\"stylers\": [
{
\"visibility\": \"off\"
}
]
}
]
</string>
</resources>
<resources>
<string name="style_json">
[
{
\"featureType\": \"poi.business\",
\"elementType\": \"all\",
\"stylers\": [
{
\"visibility\": \"off\"
}
]
},
{
\"featureType\": \"transit\",
\"elementType\": \"labels.icon\",
\"stylers\": [
{
\"visibility\": \"off\"
}
]
}
]
</string>
</resources>
'Mobile > Google Maps' 카테고리의 다른 글
180910(월) - Google Maps (Controls and Gestures) (0) | 2018.09.10 |
---|---|
180910(월) - Google Maps (Style Reference) (0) | 2018.09.10 |
180907(금) - Google Maps (Adding a Styled Map) (0) | 2018.09.07 |
180907(금) - Google Maps (Launch Google Maps) (0) | 2018.09.07 |
180907(금) - Google Maps (Lite Mode) (0) | 2018.09.07 |
댓글