Région de recherche :

Date :

https://developers.google.com › maps › documentation › javascript › controls

Controls | Maps JavaScript API | Google for Developers

Learn how to use and customize the default controls in the Maps JavaScript API, such as zoom, camera, map type, street view, and more. You can also create your own custom controls with CSS and event handlers.

https://stackoverflow.com › questions › 3897744

Automatically adjust zoom to accommodate all marker in a google map

To zoom your map to include your new markers, you use the fitBounds method on the map object. fitBounds takes a latLngBounds object as a parameter. This object has a handy extend method which will adjust the bounds to include a new latitude/longitude.

https://developers.google.com › maps › documentation › javascript › examples › control-positioning

Control Positioning | Maps JavaScript API - Google Developers

This example demontrates custom positioning of the map controls. The zoom control options are placed on the left of the map and the map type controls are placed along the top of the map....

https://developers.google.com › maps › documentation › android-sdk › views

Camera and view | Maps SDK for Android - Google Developers

The maps in the Maps SDK for Android can be tilted and rotated with easy gestures, giving users the ability to adjust the map with an orientation that makes sense for them. At any zoom...

Camera and view | Maps SDK for Android - Google Developers

https://developers.google.com › maps › documentation › javascript › reference › control

Controls | Maps JavaScript API | Google for Developers

The default position is embedded within the navigation (zoom and pan) controls. If this position is empty or the same as that specified in the zoomControlOptions or panControlOptions , the...

https://www.w3schools.com › graphics › google_maps_controls.asp

Google Maps Controls - W3Schools

Learn how to use and customize the default and additional controls of Google Maps, such as zoom, pan, map type, street view, scale, rotate and overview map. See examples, options and properties for each control.

https://mapsplatform.google.com › resources › blog › smart-scrolling-comes-to-mobile-web-maps

Smart scrolling comes to mobile web maps - Google Maps Platform

Today we're introducing intuitive scrolling for sites with embedded maps and making the full-screen control visible by default on mobile devices. This should give your users a more intuitive...

https://developers.google.com › maps › documentation › android-sdk › controls

Controls and Gestures | Maps SDK for Android - Google Developers

The Maps API provides built-in zoom controls that appear in the bottom right hand corner of the map. These are disabled by default, but can be enabled by calling...

https://stackoverflow.com › questions › 51884423

How to change the size of Google Maps API controls?

You can set the size of the controls by setting controlSize in options when creating the map. map = new google.maps.Map(document.getElementById("map"), {. center: {. lat: -34.397, lng: 150.644. }, zoom: 8, controlSize: 20, });