forked from cheungkl04/leaflet-socrata
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex-json.html
57 lines (48 loc) · 2.16 KB
/
index-json.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<html>
<head>
<meta charset=utf-8 />
<title>Leaflet with Socrata</title>
<meta name='viewport' content='initial-scale=1,maximum-scale=1,user-scalable=no' />
<!-- Load Leaflet, use newest version at http://leafletjs.com -->
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/leaflet.css" />
<script src="https://unpkg.com/[email protected]/dist/leaflet-src.js"></script>
<!-- load jQuery, use newest version at https://code.jquery.com -->
<script
src="https://code.jquery.com/jquery-3.1.1.min.js"
integrity="sha256-hVVnYaiADRTO2PzUGmuLJr8BLUSjGIZsDYGmIJLv2b8="
crossorigin="anonymous"></script>
<!-- style the map -->
<style>
body { margin:0; padding:0; }
#map { position: absolute; top:0; bottom:0; right:0; left:0; }
</style>
</head>
<body>
<!-- insert the map -->
<div id="map"></div>
<script>
// set the map center and zoom level
var map = L.map('map').setView([37.8, -84.27], 7);
// add link to view code on GitHub
map.attributionControl
.setPrefix('View <a href="http://github.com/jackdougherty/leaflet-socrata">code on GitHub</a> with <a href="http://leafletjs.com" title="A JS library for interactive maps">Leaflet</a>');
// add a basemap
var lightAll = new L.tileLayer('https://cartodb-basemaps-{s}.global.ssl.fastly.net/light_all/{z}/{x}/{y}.png', {
attribution: '© <a href="http://www.openstreetmap.org/copyright">OpenStreetMap</a> contributors, © <a href="http://cartodb.com/attributions">CartoDB</a>'
}).addTo(map);
// load open data from Socrata endpoint in older JSON-only format, with latitude and longitude columns
// register your own Socrata app token at https://dev.socrata.com/register
// Kentucky Farmers Markets, Socrate demo data, https://opendata.demo.socrata.com/resource/3bfj-rqn7
$.getJSON("https://opendata.demo.socrata.com/resource/3bfj-rqn7.json?&$$app_token=QVVY3I72SVPbxBYlTM8fA7eet", function(data){
for(var i=0; i<data.length; i++) {
var marker = data[i];
L.marker( [data[i].location_1.latitude, data[i].location_1.longitude] )
.bindPopup(
'<h4>' + data[i].market_name + '</h4>'
)
.addTo(map);
}
});
</script>
</body>
</html>