+
+ OSM.Index = function(map) {
+ var page = {};
+
+ page.pushstate = page.popstate = function() {
+ map.setSidebarOverlaid(true);
+ document.title = I18n.t('layouts.project_name.title');
+ };
+
+ page.load = function() {
+ var params = querystring.parse(location.search.substring(1));
+ if (params.query) {
+ $("#sidebar .search_form input[name=query]").value(params.query);
+ }
+ if (!("autofocus" in document.createElement("input"))) {
+ $("#sidebar .search_form input[name=query]").focus();
+ }
+ return map.getState();
+ };
+
+ return page;
+ };
+
+ OSM.Browse = function(map, type) {
+ var page = {};
+
+ page.pushstate = page.popstate = function(path, id) {
+ OSM.loadSidebarContent(path, function() {
+ addObject(type, id);
+ });
+ };
+
+ page.load = function(path, id) {
+ addObject(type, id, true);
+ };
+
+ function addObject(type, id, center) {
+ map.addObject({type: type, id: parseInt(id)}, function(bounds) {
+ if (!window.location.hash && bounds.isValid() &&
+ (center || !map.getBounds().contains(bounds))) {
+ OSM.router.withoutMoveListener(function () {
+ map.fitBounds(bounds);
+ });
+ }
+ });
+ }
+
+ page.unload = function() {
+ map.removeObject();
+ };
+
+ return page;
+ };
+
+ var history = OSM.History(map);
+
+ OSM.router = OSM.Router(map, {
+ "/": OSM.Index(map),
+ "/search": OSM.Search(map),
+ "/directions": OSM.Directions(map),
+ "/export": OSM.Export(map),
+ "/note/new": OSM.NewNote(map),
+ "/history/friends": history,
+ "/history/nearby": history,
+ "/history": history,
+ "/user/:display_name/history": history,
+ "/note/:id": OSM.Note(map),
+ "/node/:id(/history)": OSM.Browse(map, 'node'),
+ "/way/:id(/history)": OSM.Browse(map, 'way'),
+ "/relation/:id(/history)": OSM.Browse(map, 'relation'),
+ "/changeset/:id": OSM.Changeset(map),
+ "/query": OSM.Query(map)
+ });
+
+ if (OSM.preferred_editor === "remote" && document.location.pathname === "/edit") {
+ remoteEditHandler(map.getBounds(), params.object);
+ OSM.router.setCurrentPath("/");
+ }
+
+ OSM.router.load();
+
+ $(document).on("click", "a", function(e) {
+ if (e.isDefaultPrevented() || e.isPropagationStopped())
+ return;
+
+ // Open links in a new tab as normal.
+ if (e.which > 1 || e.metaKey || e.ctrlKey || e.shiftKey || e.altKey)
+ return;
+
+ // Ignore cross-protocol and cross-origin links.
+ if (location.protocol !== this.protocol || location.host !== this.host)
+ return;
+
+ if (OSM.router.route(this.pathname + this.search + this.hash))
+ e.preventDefault();
+ });