+ }
+
+ $("a[data-editor=remote]").click(function (e) {
+ var params = OSM.mapParams(this.search);
+ remoteEditHandler(map.getBounds(), params.object);
+ e.preventDefault();
+ });
+
+ if (OSM.params().edit_help) {
+ $("#editanchor")
+ .removeAttr("title")
+ .tooltip({
+ placement: "bottom",
+ title: I18n.t("javascripts.edit_help")
+ })
+ .tooltip("show");
+
+ $("body").one("click", function () {
+ $("#editanchor").tooltip("hide");
+ });
+ }
+
+ 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 = Qs.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, 10) }, function (bounds) {
+ if (!window.location.hash && bounds.isValid() &&
+ (center || !map.getBounds().contains(bounds))) {
+ OSM.router.withoutMoveListener(function () {
+ map.fitBounds(bounds);
+ });
+ }
+ });
+
+ $(".colour-preview-box").each(function () {
+ $(this).css("background-color", $(this).data("colour"));
+ });
+ }
+
+ 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)