How to disable the display of map components? (Zoom buttons, pin info window etc.) #338
-
Hello Vladislav, I noticed that when I click on a pin, in the bottom right corner of the map, it shows the direction icon and a Google Maps icon that opens the pin using the Google Maps app. I want to display a plain Google Map without any built-in components. Is it possible to achieve this? (Currently working on android but I need same on iOS if there is any of such components) |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hello Antonio. You can disable zoom buttons (HasZoomEnabled), but it won't allow you zooming. Similar properties for other features: Has...Enabled. To disable window click, you can subscribe to InfoWindowClicked event and set HideInfoWindow = true. On iOS, maps uses Apple Maps, not google maps. |
Beta Was this translation helpful? Give feedback.
Hello Antonio. You can disable zoom buttons (HasZoomEnabled), but it won't allow you zooming. Similar properties for other features: Has...Enabled. To disable window click, you can subscribe to InfoWindowClicked event and set HideInfoWindow = true.
On iOS, maps uses Apple Maps, not google maps.