Initial Map Zoom / Other Config

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.

Hello,

So what options are failing for you?
I’ve tried using following:

scheduler.config.map_resolve_user_location = false; scheduler.config.map_initial_position = new google.maps.LatLng(48.1366069, 11.5770851); // Hello, Munich scheduler.config.map_inital_zoom = 20; // very close
Works fine.

Kind regards,
Ilya

AHA!!! In trying to isolate exactly what was, and wasn’t working I discovered that commenting out resolve_user_location didn’t do anything…I had to set it to false! When I did, viola, everything is hunky-dory!!! Both the initial location and the default zoom are perfect.

Thanks!!