diff --git a/example/geojson.html b/example/geojson.html
index 4a3652dfe..a074eec0b 100644
--- a/example/geojson.html
+++ b/example/geojson.html
@@ -30,14 +30,13 @@
]
};
- var cloudmade = L.tileLayer('http://{s}.tile.cloudmade.com/{key}/997/256/{z}/{x}/{y}.png', {
+ var tiles = L.tileLayer('http://{s}.tile.osm.org/{z}/{x}/{y}.png', {
maxZoom: 18,
- attribution: 'Map data © 2011 OpenStreetMap contributors, Imagery © 2011 CloudMade',
- key: 'BC9A493B41014CAABB98F0471D759707'
+ attribution: '© OpenStreetMap contributors'
});
var map = L.map('map')
- .addLayer(cloudmade);
+ .addLayer(tiles);
var markers = L.markerClusterGroup();
diff --git a/example/marker-clustering-convexhull.html b/example/marker-clustering-convexhull.html
index b26d5cc6f..25ee56d32 100644
--- a/example/marker-clustering-convexhull.html
+++ b/example/marker-clustering-convexhull.html
@@ -20,12 +20,13 @@