Skip to content

Instantly share code, notes, and snippets.

@JasonSanford
Created January 17, 2013 06:26
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save JasonSanford/4554134 to your computer and use it in GitHub Desktop.
Save JasonSanford/4554134 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<title>Leaflet TopoJSON Example</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<link rel="stylesheet" href="//cdn.leafletjs.com/leaflet-0.4.5/leaflet.css" />
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<script src="//cdn.leafletjs.com/leaflet-0.4.5/leaflet.js"></script>
<script src="https://raw.github.com/mbostock/topojson/master/topojson.js"></script>
<style>
body {
padding: 0;
margin: 0;
}
html, body, #map {
height: 100%;
}
</style>
</head>
<body>
<div id="map"></div>
<script src="some-javascripts.js"></script>
</body>
</html>
var county_layer = L.geoJson(null, {
style: {
color: '#666',
weight: 1,
opacity: 1,
fillOpacity: 0.3
}
}),
state_layer = L.geoJson(null, {
style: {
color: '#333',
weight: 3,
opacity: 1,
fillOpacity: 0
}
}),
map = L.map('map');
L.tileLayer('http://{s}.tiles.mapbox.com/v3/jcsanford.map-xu5k4lii/{z}/{x}/{y}.png', {
maxZoom: 17,
attribution: 'Map data &copy; Someone, Somewhere.',
}).addTo(map);
map
.addLayer(county_layer)
.addLayer(state_layer)
.setView([40, -100], 5);
$.getJSON('us_counties.json', function (data) {
var county_geojson = topojson.object(data, data.objects.counties),
state_geojson = topojson.object(data, data.objects.states);
county_layer.addData(county_geojson);
state_layer.addData(state_geojson);
});
Display the source blob
Display the rendered blob
Raw
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment