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:Map View
    Details

    이 속성은 map_view 플러그인이 활성화되어 있어야 합니다.

    Change log

    v7.1부터 deprecated 되었습니다

    맨 위로