X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/4e214746c6d95b4b5270ab28efb1d53c376e1c34..35458c009652645972a9167d80aba1c4fdce82cf:/app/assets/javascripts/index.js?ds=sidebyside diff --git a/app/assets/javascripts/index.js b/app/assets/javascripts/index.js index 7f4887469..91855f823 100644 --- a/app/assets/javascripts/index.js +++ b/app/assets/javascripts/index.js @@ -9,6 +9,8 @@ //= require index/browse //= require index/export //= require index/notes +//= require index/changeset +//= require router $(document).ready(function () { var params = OSM.mapParams(); @@ -48,6 +50,12 @@ $(document).ready(function () { code: "Q", keyid: "mapquest", name: I18n.t("javascripts.map.base.mapquest") + }), + new L.OSM.HOT({ + attribution: copyright + ". Tiles courtesy of Humanitarian OpenStreetMap Team", + code: "H", + keyid: "hot", + name: I18n.t("javascripts.map.base.hot") }) ]; @@ -85,10 +93,6 @@ $(document).ready(function () { map.dataLayer = new L.OSM.DataLayer(null); map.dataLayer.options.code = 'D'; - $("#sidebar").on("opened closed", function () { - map.invalidateSize(); - }); - var position = $('html').attr('dir') === 'rtl' ? 'topleft' : 'topright'; L.OSM.zoom({position: position}) @@ -132,7 +136,20 @@ $(document).ready(function () { $('.leaflet-control .control-button').tooltip({placement: 'left', container: 'body'}); - map.on('moveend layeradd layerremove', updateLocation); + map.on('moveend layeradd layerremove', function() { + updatelinks( + map.getCenter().wrap(), + map.getZoom(), + map.getLayersCode(), + map._object); + + var expiry = new Date(); + expiry.setYear(expiry.getFullYear() + 10); + $.cookie("_osm_location", cookieContent(map), { expires: expiry }); + + // Trigger hash update on layer changes. + map.hash.onMapMove(); + }); if (OSM.PIWIK) { map.on('layeradd', function (e) { @@ -156,22 +173,10 @@ $(document).ready(function () { } } - if (params.box) { - L.rectangle(params.box, { - weight: 2, - color: '#e90', - fillOpacity: 0 - }).addTo(map); - } - if (params.marker) { marker.setLatLng([params.mlat, params.mlon]).addTo(map); } - if (params.object) { - map.addObject(params.object, { zoom: params.object_zoom }); - } - $("#homeanchor").on("click", function(e) { e.preventDefault(); @@ -205,22 +210,61 @@ $(document).ready(function () { }); } - initializeSearch(map); - initializeExport(map); initializeBrowse(map, params); initializeNotes(map, params); -}); -function updateLocation() { - updatelinks(this.getCenter().wrap(), - this.getZoom(), - this.getLayersCode(), - this.getBounds().wrap()); + OSM.Index = function(map) { + var page = {}; + + page.pushstate = page.popstate = function(path) { + $("#view_tab").addClass("current"); + $('#sidebar_content').load(path); + }; + + page.unload = function() { + $("#view_tab").removeClass("current"); + }; + + return page; + }; - var expiry = new Date(); - expiry.setYear(expiry.getFullYear() + 10); - $.cookie("_osm_location", cookieContent(this), { expires: expiry }); + OSM.Browse = function(map) { + var page = {}; - // Trigger hash update on layer changes. - this.hash.onMapMove(); -} + page.pushstate = page.popstate = function(path) { + $('#sidebar_content').load(path, page.load); + }; + + page.load = function() { + map.addObject(OSM.mapParams().object, {zoom: true}); + }; + + page.unload = function() { + map.removeObject(); + }; + + return page; + }; + + var router = OSM.Router({ + "/": OSM.Index(map), + "/search": OSM.Search(map), + "/export": OSM.Export(map), + "/browse/changesets": OSM.ChangesetList(map), + "/browse/:type/:id(/history)": OSM.Browse(map) + }); + + $(document).on("click", "a", function(e) { + if (router(this.pathname + this.search + this.hash)) e.preventDefault(); + }); + + $("#search_form").on("submit", function(e) { + e.preventDefault(); + router("/search?query=" + encodeURIComponent($("#query").val()) + OSM.formatHash(map)); + }); + + $("#describe_location").on("click", function(e) { + e.preventDefault(); + router("/search?query=" + encodeURIComponent(map.getCenter().lat + "," + map.getCenter().lng)); + }); +});