I have turned on the Map tab in my scheduler. It is awesome, but I’m having some problems with a couple of the config items. I’m trying to start the map at a certain location, and I want a default zoom value. Changes in these lines don’t seem to modify the map at all. I looked at the 19_map_view.html sample and changed the zoom value there, and it didn’t seem to make any difference either. Here’s what I’m using in my code:
function doOnLoad() {
scheduler.config.multi_day = true;
scheduler.config.xml_date="%Y-%m-%d %H:%i";
scheduler.config.event_duration = 120;
scheduler.config.prevent_cache = true;
scheduler.config.map_resolve_event_location = true;
scheduler.config.map_initial_position = new google.maps.LatLng(38.1394888, -85.8875425);
scheduler.config.map_error_position = new google.maps.LatLng("38.1394888", "-85.8875425");
//scheduler.config.map_resolve_user_location = true;
scheduler.config.map_inital_zoom = 100;
I have tried with and without the quotes around lat and lng, by the way. Any advice is very much appreciated.