Last active
August 29, 2015 14:27
-
-
Save portableant/945e3f734e5ce87284f5 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset=utf-8 /> | |
| <title>Load GeoJSON</title> | |
| <meta name='viewport' content='initial-scale=1,maximum-scale=1,user-scalable=no' /> | |
| <script src='https://api.mapbox.com/mapbox.js/v2.2.1/mapbox.js'></script> | |
| <link href='https://api.mapbox.com/mapbox.js/v2.2.1/mapbox.css' rel='stylesheet' /> | |
| <style> | |
| body { margin:0; padding:0; } | |
| #map { position:absolute; top:0; bottom:0; width:100%; } | |
| </style> | |
| </head> | |
| <body> | |
| <div id='map'></div> | |
| <script> | |
| L.mapbox.accessToken = ''' | |
| var map = L.mapbox.map('map', 'mapbox.streets') | |
| .setView([49.5, 2.5], 4); | |
| // As with any other AJAX request, this technique is subject to the Same Origin Policy: | |
| // http://en.wikipedia.org/wiki/Same_origin_policy | |
| // So the CSV file must be on the same domain as the Javascript, or the server | |
| // delivering it should support CORS. | |
| var featureLayer = L.mapbox.featureLayer() | |
| .loadURL('/roman_empire_ad_69_extent.geojson') | |
| .addTo(map); | |
| </script> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment