summaryrefslogtreecommitdiff
path: root/examples/vendingmachines.html
diff options
context:
space:
mode:
authorChristopher Baines <cb15g11@soton.ac.uk>2014-09-17 15:06:15 +0100
committerChristopher Baines <cb15g11@soton.ac.uk>2014-09-17 15:06:15 +0100
commit9373af8df20df1e125e72c96ec18b5fc67c73405 (patch)
tree84f26cc1e604bc08adec80a8e14a0549536c59ce /examples/vendingmachines.html
parent541329d02b32c0ce547d62e5b7b7f42ea9fd2a40 (diff)
downloadleaflet-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/vendingmachines.html')
-rw-r--r--examples/vendingmachines.html18
1 files changed, 10 insertions, 8 deletions
diff --git a/examples/vendingmachines.html b/examples/vendingmachines.html
index 2018547..4012ce2 100644
--- a/examples/vendingmachines.html
+++ b/examples/vendingmachines.html
@@ -32,14 +32,16 @@
LS.imagePath = '../resources/images/';
LS.dataPath = '../data.json';
- var map = LS.map('map', {
- indoor: false,
- });
-
- LS.getData(function(data) {
- var layer = LS.getVendingMachinesLayer();
- layer.addTo(map);
- });
+ (function() {
+ var map = LS.map('map', {
+ indoor: false,
+ });
+
+ LS.getData(function(data) {
+ var layer = LS.getVendingMachinesLayer();
+ layer.addTo(map);
+ });
+ })();
</script>
</body>
</html>