map_type

sets the type of Google Maps

MapTypeId map_type;

Values

  • HYBRID,ROADMAP,SATELLITE,TERRAIN
  • Deprecated

    instead you use:

    scheduler.config.map_settings = {
        type: google.maps.MapTypeId.HYBRID
    }

    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.

    Change log

    deprecated since v7.1

    Back to top