sets the position that will be displayed on the map in case the event's location can't be identified
instead you can use:
scheduler.config.map_settings = {
error_position: {
lat: 15,
lng: 15
}
}
scheduler.config.map_error_position = new google.maps.LatLng(51.477840, -0.001492);
...
scheduler.init('scheduler_here',new Date(2013,05,11),"map");
The property requires the map_view plugin to be activated.
The 'error position' will be applied in 2 cases:
deprecated since v7.1
Back to top