diff --git a/samples/3d-accessibility-features/index.ts b/samples/3d-accessibility-features/index.ts index 55c8cfa1a..56311d1af 100644 --- a/samples/3d-accessibility-features/index.ts +++ b/samples/3d-accessibility-features/index.ts @@ -20,7 +20,6 @@ async function init() { tilt: 67.44, heading: 0.01, mode: 'SATELLITE', - gestureHandling: 'COOPERATIVE', }); // Set LatLng and title text for the markers. The first marker (Boynton Pass) diff --git a/samples/3d-camera-boundary/index.ts b/samples/3d-camera-boundary/index.ts index 6693e2695..cedd47479 100644 --- a/samples/3d-camera-boundary/index.ts +++ b/samples/3d-camera-boundary/index.ts @@ -13,7 +13,6 @@ async function init() { tilt: 67.5, mode: 'HYBRID', bounds: { south: -48.3, west: 163.56, north: -32.86, east: -180 }, - gestureHandling: 'COOPERATIVE', }); document.body.append(map); diff --git a/samples/3d-camera-to-around/index.ts b/samples/3d-camera-to-around/index.ts index 57341ee76..3a8a0a558 100644 --- a/samples/3d-camera-to-around/index.ts +++ b/samples/3d-camera-to-around/index.ts @@ -17,7 +17,6 @@ async function init() { range: 6062.016931506805, tilt: 81.17100663963272, heading: -56.047035719765596, - gestureHandling: 'COOPERATIVE', }); map.mode = 'SATELLITE'; diff --git a/samples/3d-clamp-mode/index.ts b/samples/3d-clamp-mode/index.ts index dfc9ea12f..099c87015 100644 --- a/samples/3d-clamp-mode/index.ts +++ b/samples/3d-clamp-mode/index.ts @@ -21,7 +21,6 @@ async function init() { range: 4800, heading: 31, mode: 'SATELLITE', - gestureHandling: 'COOPERATIVE', }); polyline = new Polyline3DElement({ diff --git a/samples/3d-label-toggle/index.ts b/samples/3d-label-toggle/index.ts index ca42dc892..9ae52788c 100644 --- a/samples/3d-label-toggle/index.ts +++ b/samples/3d-label-toggle/index.ts @@ -18,7 +18,6 @@ async function init() { range: 6062.016931506805, tilt: 81.17100663963272, heading: -56.047035719765596, - gestureHandling: 'COOPERATIVE', }); map.mode = 'SATELLITE'; diff --git a/samples/3d-localization/index.ts b/samples/3d-localization/index.ts index bf5a01a68..6ba7b24de 100644 --- a/samples/3d-localization/index.ts +++ b/samples/3d-localization/index.ts @@ -20,7 +20,6 @@ async function init() { language: 'ZH', region: 'CN', mode: 'HYBRID', - gestureHandling: 'COOPERATIVE', }); document.body.append(map); diff --git a/samples/3d-map-styling/index.ts b/samples/3d-map-styling/index.ts index cc9ff1706..8a7162b5e 100644 --- a/samples/3d-map-styling/index.ts +++ b/samples/3d-map-styling/index.ts @@ -19,7 +19,6 @@ async function init() { range: 6605.57279990986, mapId: 'bcce776b92de1336e22c569f', // Styles are associated with map IDs. mode: 'HYBRID', - gestureHandling: 'COOPERATIVE', }); document.body.append(map); diff --git a/samples/3d-marker-click-event/index.ts b/samples/3d-marker-click-event/index.ts index 7bcad5269..550d8dbe9 100644 --- a/samples/3d-marker-click-event/index.ts +++ b/samples/3d-marker-click-event/index.ts @@ -21,7 +21,6 @@ async function init() { const map = new Map3DElement({ ...originalCamera, mode: 'SATELLITE', - gestureHandling: 'COOPERATIVE', }); // Create the interactive marker and set the attributes. diff --git a/samples/3d-marker-collision-behavior/index.ts b/samples/3d-marker-collision-behavior/index.ts index d0646c157..ab5a164c2 100644 --- a/samples/3d-marker-collision-behavior/index.ts +++ b/samples/3d-marker-collision-behavior/index.ts @@ -16,7 +16,6 @@ async function init() { center: { lat: 47.6094, lng: -122.339, altitude: 0 }, range: 1000, mode: 'HYBRID', - gestureHandling: 'COOPERATIVE', }); for (const [lng, lat] of positions) { diff --git a/samples/3d-marker-customization/index.ts b/samples/3d-marker-customization/index.ts index 2dbbec290..5b656cae7 100644 --- a/samples/3d-marker-customization/index.ts +++ b/samples/3d-marker-customization/index.ts @@ -17,7 +17,6 @@ async function init() { tilt: 67.5, range: 7000, mode: 'HYBRID', - gestureHandling: 'COOPERATIVE', }); map.mode = 'SATELLITE'; diff --git a/samples/3d-marker-graphics/index.ts b/samples/3d-marker-graphics/index.ts index 4aba123d8..00fbea3df 100644 --- a/samples/3d-marker-graphics/index.ts +++ b/samples/3d-marker-graphics/index.ts @@ -18,7 +18,6 @@ async function init() { tilt: 67.5, range: 4000, mode: 'SATELLITE', - gestureHandling: 'COOPERATIVE', }); // [START maps_3d_marker_graphics_png] diff --git a/samples/3d-marker-interactive/index.ts b/samples/3d-marker-interactive/index.ts index e5e096642..b53c71654 100644 --- a/samples/3d-marker-interactive/index.ts +++ b/samples/3d-marker-interactive/index.ts @@ -15,7 +15,6 @@ async function init() { tilt: 67.5, range: 45000, mode: 'HYBRID', - gestureHandling: 'COOPERATIVE', }); map.mode = 'SATELLITE'; diff --git a/samples/3d-model-interactive/index.ts b/samples/3d-model-interactive/index.ts index 1ece3307a..2b6be4932 100644 --- a/samples/3d-model-interactive/index.ts +++ b/samples/3d-model-interactive/index.ts @@ -16,7 +16,6 @@ async function init() { tilt: 74, heading: 0, mode: 'HYBRID', - gestureHandling: 'COOPERATIVE', }); const model = new Model3DInteractiveElement({ diff --git a/samples/3d-model/index.ts b/samples/3d-model/index.ts index 5cd9d1ccd..3d4387cb9 100644 --- a/samples/3d-model/index.ts +++ b/samples/3d-model/index.ts @@ -16,7 +16,6 @@ async function init() { tilt: 74, heading: 0, mode: 'HYBRID', - gestureHandling: 'COOPERATIVE', }); const model = new Model3DElement({ diff --git a/samples/3d-places-autocomplete/index.ts b/samples/3d-places-autocomplete/index.ts index 8512400c3..4bf5ff2bf 100644 --- a/samples/3d-places-autocomplete/index.ts +++ b/samples/3d-places-autocomplete/index.ts @@ -20,7 +20,6 @@ async function init() { heading: 0, roll: 0, mode: 'HYBRID', - gestureHandling: 'COOPERATIVE', }); document.body.append(map); diff --git a/samples/3d-places/index.ts b/samples/3d-places/index.ts index 72db50a49..224466e6f 100644 --- a/samples/3d-places/index.ts +++ b/samples/3d-places/index.ts @@ -14,7 +14,6 @@ async function init() { tilt: 64, heading: -5, mode: 'HYBRID', - gestureHandling: 'COOPERATIVE', }); document.body.append(map3DElement); diff --git a/samples/3d-polygon-click-event/index.ts b/samples/3d-polygon-click-event/index.ts index cf3e584ef..27e7664c5 100644 --- a/samples/3d-polygon-click-event/index.ts +++ b/samples/3d-polygon-click-event/index.ts @@ -14,7 +14,6 @@ async function init() { heading: 340, tilt: 70, mode: 'HYBRID', - gestureHandling: 'COOPERATIVE', }); document.body.append(map); diff --git a/samples/3d-polygon-extruded-hole/index.ts b/samples/3d-polygon-extruded-hole/index.ts index 66cbfa6c9..94a3cd53d 100644 --- a/samples/3d-polygon-extruded-hole/index.ts +++ b/samples/3d-polygon-extruded-hole/index.ts @@ -14,7 +14,6 @@ async function init() { heading: 340, tilt: 70, mode: 'HYBRID', - gestureHandling: 'COOPERATIVE', }); const polygonOptions: google.maps.maps3d.Polygon3DElementOptions = { diff --git a/samples/3d-polygon/index.ts b/samples/3d-polygon/index.ts index a7be3a12e..142064a00 100644 --- a/samples/3d-polygon/index.ts +++ b/samples/3d-polygon/index.ts @@ -14,7 +14,6 @@ async function init() { heading: 340, tilt: 70, mode: 'HYBRID', - gestureHandling: 'COOPERATIVE', }); const polygonOptions = { diff --git a/samples/3d-polyline-click-event/index.ts b/samples/3d-polyline-click-event/index.ts index 6c10881c3..3e1a41be3 100644 --- a/samples/3d-polyline-click-event/index.ts +++ b/samples/3d-polyline-click-event/index.ts @@ -16,7 +16,6 @@ async function init() { tilt: 64.01, heading: 25.0, mode: 'SATELLITE', - gestureHandling: 'COOPERATIVE', }); document.body.append(map); diff --git a/samples/3d-polyline-extruded/index.ts b/samples/3d-polyline-extruded/index.ts index ee24a29ef..44c42043e 100644 --- a/samples/3d-polyline-extruded/index.ts +++ b/samples/3d-polyline-extruded/index.ts @@ -16,7 +16,6 @@ async function init() { tilt: 64.01, heading: 25.0, mode: 'SATELLITE', - gestureHandling: 'COOPERATIVE', }); document.body.append(map); diff --git a/samples/3d-polyline/index.ts b/samples/3d-polyline/index.ts index ec18f0d6e..acc2fe36f 100644 --- a/samples/3d-polyline/index.ts +++ b/samples/3d-polyline/index.ts @@ -16,7 +16,6 @@ async function init() { tilt: 64.01, heading: 25.0, mode: 'SATELLITE', - gestureHandling: 'COOPERATIVE', }); document.body.append(map); diff --git a/samples/3d-popover-location/index.ts b/samples/3d-popover-location/index.ts index d23f2fa61..752df21bd 100644 --- a/samples/3d-popover-location/index.ts +++ b/samples/3d-popover-location/index.ts @@ -15,7 +15,6 @@ async function init() { tilt: 74, heading: 38, mode: 'HYBRID', - gestureHandling: 'COOPERATIVE', }); const popover = new PopoverElement({ diff --git a/samples/3d-popover-marker/index.ts b/samples/3d-popover-marker/index.ts index 2210debae..d79387978 100644 --- a/samples/3d-popover-marker/index.ts +++ b/samples/3d-popover-marker/index.ts @@ -15,7 +15,6 @@ async function init() { tilt: 74, heading: 38, mode: 'HYBRID', - gestureHandling: 'COOPERATIVE', }); // Popovers can only be added to interactive Markers diff --git a/samples/3d-simple-map/index.ts b/samples/3d-simple-map/index.ts index d8de48ae7..9d930cf39 100644 --- a/samples/3d-simple-map/index.ts +++ b/samples/3d-simple-map/index.ts @@ -12,7 +12,6 @@ async function init() { center: { lat: 37.7704, lng: -122.3985, altitude: 500 }, tilt: 67.5, mode: 'HYBRID', - gestureHandling: 'COOPERATIVE', }); document.body.append(map); diff --git a/samples/3d-simple-marker/index.ts b/samples/3d-simple-marker/index.ts index be072caa6..24b46d7a3 100644 --- a/samples/3d-simple-marker/index.ts +++ b/samples/3d-simple-marker/index.ts @@ -14,7 +14,6 @@ async function init() { tilt: 67.5, range: 1000, mode: 'SATELLITE', - gestureHandling: 'COOPERATIVE', }); const marker = new Marker3DElement({