Skip to content

Instantly share code, notes, and snippets.

@nateirwin
Created December 9, 2015 15:16
Show Gist options
  • Save nateirwin/fc98c3e3780259c06023 to your computer and use it in GitHub Desktop.
Save nateirwin/fc98c3e3780259c06023 to your computer and use it in GitHub Desktop.
body {
margin: 0;
padding: 0;
}
#map {
bottom: 0;
position: absolute;
top: 0;
width: 100%;
}
var NPMap = {
center: {
lat: 45.3058,
lng: -116.7187
},
div: 'map',
overlays: [{
filter: function(feature) {
return feature.properties.park === 'Yellowstone';
},
maki: {
name: 'star'
},
popup: {
description: 'This is {{#if type \'!==\' \'community\'}}not {{/if}}a community.',
title: '{{name}}'
},
type: 'geojson',
url: 'http://nationalparkservice.github.io/data/projects/yellowstone_national_park/live/gateway_points_of_interest.geojson'
},{
cluster: {
clusterIcon: '#000',
maxClusterRadius: 70
},
maki: {
color: '#609321',
name: 'park'
},
popup: {
description: 'The alpha code is {{Code}}',
title: '{{Name}}'
},
type: 'geojson',
url: 'http://nationalparkservice.github.io/data/demo/national_parks.geojson'
}],
zoom: 6
};
(function () {
var s = document.createElement('script');
s.src = 'http://www.nps.gov/lib/npmap.js/2.0.0/npmap-bootstrap.js';
document.body.appendChild(s);
})();
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0,maximum-scale=1.0,user-scalable=no">
<title>GeoJSON Layer (Clustered) | Examples | NPMap.js</title>
<link href="geojson-layer-clustered.css" rel="stylesheet">
</head>
<body>
<div id="map"></div>
<script src="geojson-layer-clustered.js"></script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment