Skip to content

Instantly share code, notes, and snippets.

@trevorstarick
Created May 27, 2013 17:01
Show Gist options
  • Save trevorstarick/5658095 to your computer and use it in GitHub Desktop.
Save trevorstarick/5658095 to your computer and use it in GitHub Desktop.
<script>
var map = new L.Map('map');
var osmUrl='http://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png';
var osmAttrib='Map data &copy; OpenStreetMap contributors';
var osm = new L.TileLayer(osmUrl, {minZoom: 11, attribution: osmAttrib});
map.setView(new L.LatLng(45.5091, -73.5620),13);
map.addLayer(osm);
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment