Skip to content

Instantly share code, notes, and snippets.

@nvkelso
Created March 6, 2012 00:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nvkelso/1982547 to your computer and use it in GitHub Desktop.
Save nvkelso/1982547 to your computer and use it in GitHub Desktop.
Use Stamen's map tiles in your favorite mapping library, Leaflet version
// replace "toner" here with "terrain" or "watercolor"
var layer = new L.StamenTileLayer("toner");
var map = new L.Map("element_id", {
center: new L.LatLng(37.7, -122.4),
zoom: 12
});
map.addLayer(layer);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment