diff options
author | Christopher Baines <cb15g11@soton.ac.uk> | 2014-02-27 10:57:52 +0000 |
---|---|---|
committer | Christopher Baines <cb15g11@soton.ac.uk> | 2014-02-27 10:57:52 +0000 |
commit | 08bf6f5dd69f28545f54949e5c9648a737b19594 (patch) | |
tree | 4511f738ab5a0085c4178d659a37eb1ae0fc1cb0 /examples/basic.html | |
parent | 88c2225cb51fc99f4a0a3286d4aa211f362be24d (diff) | |
download | leaflet-soton-08bf6f5dd69f28545f54949e5c9648a737b19594.tar leaflet-soton-08bf6f5dd69f28545f54949e5c9648a737b19594.tar.gz |
Fix some examples
Mostly just path errors
Diffstat (limited to 'examples/basic.html')
-rw-r--r-- | examples/basic.html | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/examples/basic.html b/examples/basic.html index 161ecaa..07a8382 100644 --- a/examples/basic.html +++ b/examples/basic.html @@ -1,10 +1,10 @@ <!DOCTYPE html> <html> <head> - <title>Map - University of Southampton</title> + <title>Basic Map - University of Southampton</title> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"> - <link rel="stylesheet" href="../src/sum.css" /> + <link rel="stylesheet" href="../src/leaflet-soton.css" /> <link rel="stylesheet" href="../resources/leaflet/dist/leaflet.css" /> <style> @@ -23,12 +23,12 @@ <script src="../resources/leaflet/dist/leaflet-src.js"></script> - <script src="../src/sum.js"></script> + <script src="../src/leaflet-soton.js"></script> <script type="text/javascript"> - SUM.dataPath = '../data.json'; + LS.dataPath = '../data.json'; - var map = SUM.map('map'); + var map = LS.map('map'); </script> </body> </html> |