From: Antoine Beaupré Date: Fri, 24 Aug 2012 21:29:41 +0000 (-0400) Subject: openlayers: use the provided layer name and put the source in parenthesis X-Git-Url: https://scripts.mit.edu/gitweb/www/ikiwiki.git/commitdiff_plain/69467738ed3e066f8ac8ff13329173c3f2660cfb openlayers: use the provided layer name and put the source in parenthesis --- diff --git a/underlays/osm/ikiwiki/osm.js b/underlays/osm/ikiwiki/osm.js index 9547ee29c..05ab793eb 100644 --- a/underlays/osm/ikiwiki/osm.js +++ b/underlays/osm/ikiwiki/osm.js @@ -70,11 +70,11 @@ function mapsetup(divname, options) { } else { // OSM if (options.layers[layer] != 1) { l = options.layers[layer]; - fqdn = l.split("/")[2].split(".") - text = fqdn[fqdn.length-2] - map.addLayer(new OpenLayers.Layer.OSM("OpenStreetMap (" + text + ")", l)); + fqdn = l.split("/")[2].split("."); + text = fqdn[fqdn.length-2] + "." + fqdn[fqdn.length-1]; + map.addLayer(new OpenLayers.Layer.OSM(layer + " (" + text + ")", l)); } else { - map.addLayer(new OpenLayers.Layer.OSM("OpenStreetMap (Mapnik)")); + map.addLayer(new OpenLayers.Layer.OSM(layer + " (Mapnik)")); } } }