Skip to content

Commit

Permalink
Fix missing , that would crash oldie
Browse files Browse the repository at this point in the history
jacobtoye committed Apr 30, 2014
1 parent 3efd1e9 commit 10643d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/basic.html
Original file line number Diff line number Diff line change
@@ -45,7 +45,7 @@
<script>
var osmUrl = 'http://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png',
osmAttrib = '&copy; <a href="http://openstreetmap.org/copyright">OpenStreetMap</a> contributors',
osm = L.tileLayer(osmUrl, {maxZoom: 18, attribution: osmAttrib});
osm = L.tileLayer(osmUrl, {maxZoom: 18, attribution: osmAttrib}),
map = new L.Map('map', {layers: [osm], center: new L.LatLng(-37.7772, 175.2756), zoom: 15 });

var drawnItems = new L.FeatureGroup();

0 comments on commit 10643d6

Please sign in to comment.