Replies: 1 comment
-
I found the solution for this in this Stack Overflow-thread. In case anyone stumbles upon this problem: const googleMapsOptions = {
...
styles: [
{
featureType: 'poi',
elementType: 'labels',
stylers: [{ visibility: 'off' }],
},
],
}; |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
As referenced here, the Maps JavaScript API allows us to set custom CSS for each individual Maps feature. Specifically, I need to omit all Places/POI markers, since I want to add custom POIs using Markers.
Is this possible anyhow?
Beta Was this translation helpful? Give feedback.
All reactions