There is a comment in the file about halfway down (on/around line 41-42) that looks like:
// Initialize the widget with new pan and zoom values
widget.init();
To add the parameters to the web page code and create different settings, you would edit the two lines above so that they look like:
// Initialize the widget with new pan and zoom values
widget.init( {
“pan_step_distance”: 800,
“zoom_multiple”: 0.1
} )
These values do not apply when the patron is using a touch device because the hand gestures of pinch and swipe take over and the 'controls' are hidden from the user. They only work for the controls when they are visible on a computer web page. |
|
See also tmPickYourSeatMapDisplay.html for some options that can be made regarding colouring and fonts on the actual SVG map as the user interacts with the pick your seats process. |