diff options
author | Christopher Baines <cb15g11@soton.ac.uk> | 2014-09-17 15:06:15 +0100 |
---|---|---|
committer | Christopher Baines <cb15g11@soton.ac.uk> | 2014-09-17 15:06:15 +0100 |
commit | 9373af8df20df1e125e72c96ec18b5fc67c73405 (patch) | |
tree | 84f26cc1e604bc08adec80a8e14a0549536c59ce /examples/zepler.html | |
parent | 541329d02b32c0ce547d62e5b7b7f42ea9fd2a40 (diff) | |
download | leaflet-soton-9373af8df20df1e125e72c96ec18b5fc67c73405.tar leaflet-soton-9373af8df20df1e125e72c96ec18b5fc67c73405.tar.gz |
Less globals in examples
Fix a problem highlighted by this in the vending manchines layer.
Diffstat (limited to 'examples/zepler.html')
-rw-r--r-- | examples/zepler.html | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/examples/zepler.html b/examples/zepler.html index 0900992..843373e 100644 --- a/examples/zepler.html +++ b/examples/zepler.html @@ -32,14 +32,16 @@ LS.imagePath = '../resources/images/'; LS.dataPath = '../data.json'; - var map = LS.map('map', { - indoor: true, - zoom: 20, - center: [50.93732, -1.39774], - highlight: { - "http://id.southampton.ac.uk/building/59": true - } - }); + (function() { + var map = LS.map('map', { + indoor: true, + zoom: 20, + center: [50.93732, -1.39774], + highlight: { + "http://id.southampton.ac.uk/building/59": true + } + }); + })(); </script> </body> </html> |