Hi all - I'm working on an app that uses a Google Maps widget, and I'd like to hide the default businesses/landmarks to keep things clean. Reading through the Google Maps API documentation, this is done by setting visibility to "off" in the "poi" style declaration via JSON:
"featureType": "poi",
"stylers": [
{
"visibility": "off"
}
]
Does anyone know how I'd go about doing this in FF? I'd assume this is done via custom code (I don't see a custom style option in the UI), but I'm unsure how to do this.
Any help would be appreciated. Thanks!