Tagged: , , ,

This topic contains 4 replies, has 3 voices, and was last updated by  admin 3 years, 7 months ago.

  • Author
    Posts
  • #75437

    William Jarvis
    Participant

    When viewing the mode which shows pins on a map, if we have not selected a record to view the location, the map shows New York. Being based in the UK, how can we change this so if no record is displayed the map will display a location more relevant to us until a record is selected?

  • #75438

    admin
    Keymaster

    Hi William –

    While there is no option to modify this within the configuration, you can add the following into your Custom JS area in the settings file:

    scheduler.config.map_initial_position = new google.maps.LatLng(48.724, 8.215);

    Replace the two numbers in parenthesis with the Latitude and Longitude that you’d like to start.

    Instructions for adding this code:

    Add custom code to soSIMPLE Calendar

    Let us know how it goes.

  • #75439

    William Jarvis
    Participant

    Works perfectly. Exactly what we need. Now the user generally does not need to click into the list of events that day for the map to show the events it is listing. Thankfully the events are clustered around a particular area, which is why this was change was needed.

  • #76515

    CompuCon
    Participant

    Ken,

    I followed your instructions to modify the default starting Google map coordinates, applying the string “scheduler.config.map_initial_position = new google.maps.LatLng(27.1147021, -82.3804025);” in the Custom JS section of the Options. I have tried both enclosing the string within quotes (and without), but the map still reverts to the NYC area. Did I miss something? If I select an Event record, it displays the correct location. If I change the filtering value for the Calendar (i.e. Category or Zone or Assigned Employee), the map not only reverts to the NYC location, but also the selected Calendar display type (i.e. Map Week) changes to Map Day.

    Attachments:
    You must be logged in to view attached files.
  • #76518

    admin
    Keymaster

    Try this instead:

    scheduler.attachEvent(“onTemplatesReady”, function(){

    scheduler.config.map_initial_position = new google.maps.LatLng(27.1147021, -82.3804025);

    });

You must be logged in to reply to this topic.