Menu
×
   ❮     
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS R TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AI GO KOTLIN SASS VUE DSA GEN AI SCIPY AWS CYBERSECURITY DATA SCIENCE
     ❯   

Google Maps Controls


Google Maps - The Default Controls

When showing a standard Google map, it comes with the default control set:

  • Zoom - displays a slider or "+/-" buttons to control the zoom level of the map
  • Pan - displays a pan control for panning the map
  • MapType - lets the user toggle between map types (roadmap and satellite)
  • Street View - displays a Pegman icon which can be dragged to the map to enable Street View

Google Maps - More Controls

In addition to the default controls, Google Maps also has:

  • Scale - displays a map scale element
  • Rotate - displays a small circular icon which allows you to rotate maps
  • Overview Map - displays a thumbnail overview map reflecting the current map viewport within a wider area

You can specify which controls to show when creating the map (inside MapOptions) or by calling setOptions() to change the map's options.


Google Maps - Disabling The Default Controls

You may instead wish to turn off the default controls.

To do so, set the Map's disableDefaultUI property (within the Map options object) to true:

Example

var mapOptions {disableDefaultUI: true}


Google Maps - Turn On All Controls

Some controls appear on the map by default; while others will not appear unless you set them.

Adding or removing controls from the map is specified in the Map options object.

Set the control to true to make it visible - Set the control to false to hide it.

The following example turns "on" all controls:

Example

var mapOptions {
  panControl: true,
  zoomControl: true,
  mapTypeControl: true,
  scaleControl: true,
  streetViewControl: true,
  overviewMapControl: true,
  rotateControl: true
}

Google Maps - Modifying Controls

Several of the map controls are configurable.

The controls can be modified by specifying control options fields.

For example, options for modifying a Zoom control are specified in the zoomControlOptions field. The zoomControlOptions field may contain:

  • google.maps.ZoomControlStyle.SMALL - displays a mini-zoom control (only + and - buttons)
  • google.maps.ZoomControlStyle.LARGE - displays the standard zoom slider control
  • google.maps.ZoomControlStyle.DEFAULT - picks the best zoom control based on device and map size

Example

zoomControl: true,
zoomControlOptions: {
    style: google.maps.ZoomControlStyle.SMALL
}

Note: If you modify a control, always enable the control first (set it to true).

Another configurable control is the MapType control.

Options for modifying a control are specified in the mapTypeControlOptions field. The mapTypeControlOptions field may contain::

  • google.maps.MapTypeControlStyle.HORIZONTAL_BAR - display one button for each map type
  • google.maps.MapTypeControlStyle.DROPDOWN_MENU - select map type via a dropdown menu
  • google.maps.MapTypeControlStyle.DEFAULT - displays the "default" behavior (depends on screen size)

Example

mapTypeControl: true,
mapTypeControlOptions: {
  style: google.maps.MapTypeControlStyle.DROPDOWN_MENU
}

You can also position a control, with the ControlPosition property:

Example

mapTypeControl: true,
mapTypeControlOptions: {
  style: google.maps.MapTypeControlStyle.DROPDOWN_MENU,
  position: google.maps.ControlPosition.TOP_CENTER
}

×

Contact Sales

If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
sales@w3schools.com

Report Error

If you want to report an error, or if you want to make a suggestion, send us an e-mail:
help@w3schools.com

W3Schools is optimized for learning and training. Examples might be simplified to improve reading and learning. Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness of all content. While using W3Schools, you agree to have read and accepted our terms of use, cookie and privacy policy.

Copyright 1999-2024 by Refsnes Data. All Rights Reserved. W3Schools is Powered by W3.CSS.