25 lines
675 B
HTML
25 lines
675 B
HTML
<html>
|
|
<head>
|
|
<link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.5/leaflet.css" />
|
|
<!--[if lte IE 8]>
|
|
<link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.5/leaflet.ie.css" />
|
|
<![endif]-->
|
|
|
|
<script src="http://cdn.leafletjs.com/leaflet-0.5/leaflet.js"></script>
|
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js"></script>
|
|
|
|
<title> map </title>
|
|
</head>
|
|
<body>
|
|
|
|
<script>
|
|
var constit = 'http://mapit.mysociety.org/areas/WMC';
|
|
$.getJSON(constit, function(data) {
|
|
var all = '' ;
|
|
//document.write(JSON.stringify(data));
|
|
$.each(data, function(i,item) {
|
|
document.write(i + ', ' + item.name + '<br>');
|
|
})
|
|
|
|
});
|
|
</script>
|