map_type

定义 Google Maps 的类型

MapTypeId map_type;

Values

  • HYBRID,ROADMAP,SATELLITE,TERRAIN
  • Deprecated

    现在推荐的使用方式是:

    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:地图视图
    Details

    此属性需要启用 map_view 插件。

    Change log

    自 v7.1 起废弃

    返回顶部