map_type

sets the type of Google Maps

MapTypeId map_type;

Values

  • HYBRID
  • displays a transparent layer of major streets on satellite images.
  • ROADMAP
  • displays a normal street map.
  • SATELLITE
  • displays satellite images.
  • TERRAIN
  • displays maps with physical features such as terrain and vegetation.
  • Example

    scheduler.config.map_type = google.maps.MapTypeId.HYBRID;
    ...
    scheduler.init('scheduler_here',new Date(2013,05,11),"map");


    Default value:

    ROADMAP
    Applicable views:Map View
    Details

    The property requires the map_view plugin to be activated.

    Back to top