map_error_position

이벤트의 위치를 확인할 수 없을 때 지도에 표시되는 위치를 정의합니다

LatLng map_error_position;

Deprecated

더 나은 방법은 다음과 같습니다:

scheduler.config.map_settings = {
    error_position: {
       lat: 15,
       lng: 15
    }
}

Example

scheduler.config.map_error_position = new google.maps.LatLng(51.477840, -0.001492);
...
scheduler.init('scheduler_here',new Date(2013,05,11),"map");


Default value:

google.maps.LatLng(15, 15)
Applicable views:Map View
Details

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

'error position'은 다음 상황에서 적용됩니다:

  1. 이벤트에 하나 또는 두 개의 좌표가 없을 때(예: 좌표 값이 '0', 'null', 또는 'undefined'인 경우) 그리고 map_resolve_event_location 옵션이 비활성화된 경우.
  2. 이벤트에 하나 또는 두 개의 좌표가 없고 map_resolve_event_location 옵션이 활성화되어 있지만, 스케줄러가 위치를 해결하지 못하는 경우.
See also
Change log

v7.1부터 deprecated

맨 위로