X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/4563244fd1cb43dca00b427e1f13ac890b7f00a0..8c788ce387fe147b3d74a7f89d003d61cb6d83d6:/app/assets/javascripts/map.js.erb diff --git a/app/assets/javascripts/map.js.erb b/app/assets/javascripts/map.js.erb index a3fd53a68..323d16378 100644 --- a/app/assets/javascripts/map.js.erb +++ b/app/assets/javascripts/map.js.erb @@ -16,36 +16,33 @@ var objectLayer; var objectLoader; function mapLayers() { - return [ - { - klass: L.OSM.Mapnik, - attribution: "", - keyid: "mapnik", - layerCode: "M", - name: I18n.t("javascripts.map.base.standard") - }, - { - klass: L.OSM.CycleMap, - attribution: "Tiles courtesy of Andy Allan", - keyid: "cyclemap", - layerCode: "C", - name: I18n.t("javascripts.map.base.cycle_map") - }, - { - klass: L.OSM.TransportMap, - attribution: "Tiles courtesy of Andy Allan", - keyid: "transportmap", - layerCode: "T", - name: I18n.t("javascripts.map.base.transport_map") - }, - { - klass: L.OSM.MapQuestOpen, - attribution: "Tiles courtesy of MapQuest ", - keyid: "mapquest", - layerCode: "Q", - name: I18n.t("javascripts.map.base.mapquest") - } - ] + return [{ + layer: new L.OSM.Mapnik(), + keyid: "mapnik", + layerCode: "M", + name: I18n.t("javascripts.map.base.standard") + }, { + layer: new L.OSM.CycleMap( { + attribution: "Tiles courtesy of Andy Allan", + }), + keyid: "cyclemap", + layerCode: "C", + name: I18n.t("javascripts.map.base.cycle_map") + }, { + layer: new L.OSM.TransportMap({ + attribution: "Tiles courtesy of Andy Allan", + }), + keyid: "transportmap", + layerCode: "T", + name: I18n.t("javascripts.map.base.transport_map") + }, { + layer: new L.OSM.MapQuestOpen({ + attribution: "Tiles courtesy of MapQuest ", + }), + keyid: "mapquest", + layerCode: "Q", + name: I18n.t("javascripts.map.base.mapquest") + }] } function getUserIcon(url) {