X-Git-Url: https://git.openstreetmap.org./chef.git/blobdiff_plain/5fc2c9602bf98ec8338ae8f0b441f8e8106de80d..8d4c23ac184a2ad277a7fd2b274ed36711c8fcf9:/cookbooks/imagery/templates/default/imagery.js.erb
diff --git a/cookbooks/imagery/templates/default/imagery.js.erb b/cookbooks/imagery/templates/default/imagery.js.erb
index 698c8926f..0f277444b 100644
--- a/cookbooks/imagery/templates/default/imagery.js.erb
+++ b/cookbooks/imagery/templates/default/imagery.js.erb
@@ -3,15 +3,15 @@ function createMap(divName) {
var map = L.map(divName).fitBounds(<%= @bbox.to_json %>);
// Create a layer switcher
- var layers = L.control.layers(null, null, {collapsed:false});
+ var layers = L.control.layers(null, null, {collapsed:false}).addTo(map);
// Add OpenStreetMap layer
layers.addBaseLayer(L.tileLayer("//{s}.tile.openstreetmap.org/{z}/{x}/{y}.png", {
- attribution: "© OpenStreetMap and contributors, under an open license",
+ attribution: "© OpenStreetMap and contributors, under an open license",
maxZoom: 19
}), "OpenStreetMap");
-
<% @layers.sort_by { |layer| layer[:name] }.each do |layer| -%>
+
// Create <%= layer[:name] %> layer
var <%= layer[:name] %> = L.tileLayer(<%= layer[:url].to_json %>, {
attribution: <%= layer[:attribution].to_json %>,
@@ -31,8 +31,8 @@ function createMap(divName) {
<% end -%>
<% end -%>
- // Add the layer switch to the mao
- layers.addTo(map);
+ // Add the permalink control
map.addControl(new L.Control.Permalink());
+
return map;
}