diff options
Diffstat (limited to 'underlays')
-rw-r--r-- | underlays/osm/ikiwiki/osm.js | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/underlays/osm/ikiwiki/osm.js b/underlays/osm/ikiwiki/osm.js index c41aeeb1f..4f53b1dc8 100644 --- a/underlays/osm/ikiwiki/osm.js +++ b/underlays/osm/ikiwiki/osm.js @@ -42,10 +42,9 @@ function mapsetup(divname, options) { }); if (options.mapurl) { - var newLayer = new OpenLayers.Layer.OSM("Local Tiles", options.mapurl); - map.addLayer(newLayer); + map.addLayer(new OpenLayers.Layer.OSM("OpenStreetMap (Local)", options.mapurl)); } else { - map.addLayer(new OpenLayers.Layer.OSM()); + map.addLayer(new OpenLayers.Layer.OSM("OpenStreetMap (Mapnik)")); } // this nightmare is possible through http://docs.openlayers.org/library/spherical_mercator.html |