Custom Zoom & Position on Load
Set the map to load with custom position and zoom level.
Some experience with JSON is recommended but not required.
If you require any assistance please contact our support team at helpdesk@qedas.com
When the Map loads it will default to the zoom level of 0 and the Map will be positioned precisely centred on the screen. This isn’t always the best option for certain types of Maps.
How to configure
Both the loading zoom and position values can be configured via the Stylesheet.
Navigate to the Stylesheets page, found under the Administration Settings menu.
Find the correct Stylesheet from the list and click the Edit icon ().
You will see the Stylesheet editor, it should look similar to the above.
You must modify the JSON data found above the line /** LINE REQUIRED - CSS BELOW **/
.
Here is an example of a customised Stylesheet.
Custom Zoom Level
This option will set the zoom level of the Map when it is first loaded.
In the JSON section of the stylesheet, you will need to add an object with the key "zoom"
.
This object will accept 2 values which in each expect a number between 4 and -4.
Default is used for larger screens such as a browser or Kiosk.
Mobile is used for smaller devices which run a Mobile OS, such as iOS or Android.
"zoom": {
"default": 0.75,
"mobile": -1
}
0 is the default zoom level you can find the zoom level number when viewing a Map in the browser.
Set the zoom level you require and check the URL for the value &zl=###
the following number will be the zoom level.
Custom Position
This option will allow the map to be loaded with a custom area centred on the screen.
This can be useful for larger campus maps where the focus needs to set off from the Map image centre.
In the JSON section of the stylesheet, you will need to add an object with the key "position"
.
This object will accept 2 values (x, y) which both expect a number.
x is the horizontal coordinate value.
y is the vertical coordinate value.
"position": {
"x": 417.432601,
"y": 597.177
}
You can find the position values when viewing a Map in the browser.
Set the Maps position as you require, then check the URL for &x=###
and &y=###
, the following numbers will be the precise coordinates for the centre of the screen.
Â
- style