map_initial_position

设置地图的初始显示位置

LatLng map_initial_position;

Deprecated

您现在可以使用以下方式替代:

scheduler.config.map_settings = {
    initial_position: {
       lat: 48.724,
       lng: 8.215
    }
}

Example

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


Default value:

google.maps.LatLng(48.724, 8.215)
Applicable views:地图视图
Details

该属性需要启用 map_view 插件。

See also
Change log

自 v7.1 版本起已废弃

返回顶部