ui.Map.setGestureHandling
Controls how gestures are handled on the map.
See https://developers.google.com/maps/documentation/javascript/reference/map#MapOptions.gestureHandling.
Usage | Returns |
---|
Map.setGestureHandling(option) | |
Argument | Type | Details |
---|
this: ui.map | ui.Map | The ui.Map instance. |
option | String | The option that controls how gestures are handled on the map. Allowed values:
- "cooperative": Scroll events and one-finger touch gestures scroll the page, and do not zoom or pan the map. Two-finger touch gestures pan and zoom the map. Scroll events with a ctrl key or ⌘ key pressed zoom the map. In this mode the map cooperates with the page.
- "greedy": All touch gestures and scroll events pan or zoom the map.
- "none": The map cannot be panned or zoomed by user gestures.
- "auto": (default) Gesture handling is either cooperative or greedy, depending on whether the page is scrollable or in an iframe.
|
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2024-02-20 UTC.
[null,null,["Last updated 2024-02-20 UTC."],[[["Defines how users interact with the map through gestures like scrolling, panning, and zooming."],["Offers four options: \"cooperative\", \"greedy\", \"none\", and the default \"auto\", to control gesture behavior."],["\"Cooperative\" mode prioritizes page scrolling over map interaction for single-finger gestures, while \"greedy\" mode prioritizes map interactions for all gestures."],["Allows developers to disable all gestures with the \"none\" option or let the map automatically determine the best gesture handling based on context with \"auto\"."],["Can be set using the `Map.setGestureHandling(option)` method, where 'option' is one of the allowed string values."]]],[]]