2 //= require leaflet.sidebar
3 //= require leaflet.locate
4 //= require leaflet.layers
5 //= require leaflet.key
6 //= require leaflet.note
7 //= require leaflet.share
8 //= require leaflet.polyline
9 //= require leaflet.query
10 //= require leaflet.contextmenu
11 //= require index/contextmenu
12 //= require index/search
13 //= require index/browse
14 //= require index/export
15 //= require index/notes
16 //= require index/history
17 //= require index/note
18 //= require index/new_note
19 //= require index/directions
20 //= require index/changeset
21 //= require index/query
23 //= require querystring
25 $(document).ready(function () {
26 var querystring = require("querystring-component");
30 var map = new L.OSM.Map("map", {
36 OSM.loadSidebarContent = function (path, callback) {
37 var content_path = path;
39 map.setSidebarOverlaid(false);
41 clearTimeout(loaderTimeout);
43 loaderTimeout = setTimeout(function () {
44 $("#sidebar_loader").show();
47 // IE<10 doesn't respect Vary: X-Requested-With header, so
48 // prevent caching the XHR response as a full-page URL.
49 if (content_path.indexOf("?") >= 0) {
50 content_path += "&xhr=1";
52 content_path += "?xhr=1";
61 complete: function (xhr) {
62 clearTimeout(loaderTimeout);
64 $("#sidebar_loader").hide();
66 var content = $(xhr.responseText);
68 if (xhr.getResponseHeader("X-Page-Title")) {
69 var title = xhr.getResponseHeader("X-Page-Title");
70 document.title = decodeURIComponent(title);
74 .find("link[type=\"application/atom+xml\"]")
78 .append(content.filter("link[type=\"application/atom+xml\"]"));
80 $("#sidebar_content").html(content.not("link[type=\"application/atom+xml\"]"));
89 var params = OSM.mapParams();
91 map.attributionControl.setPrefix("");
93 map.updateLayers(params.layers);
95 map.on("baselayerchange", function (e) {
96 if (map.getZoom() > e.layer.options.maxZoom) {
97 map.setView(map.getCenter(), e.layer.options.maxZoom, { reset: true });
101 var position = $("html").attr("dir") === "rtl" ? "topleft" : "topright";
103 L.OSM.zoom({ position: position })
106 var locate = L.control.locate({
108 icon: "icon geolocate",
109 iconLoading: "icon geolocate",
111 title: I18n.t("javascripts.map.locate.title"),
112 popup: I18n.t("javascripts.map.locate.popup")
116 var locateContainer = locate.getContainer();
119 .removeClass("leaflet-control-locate leaflet-bar")
120 .addClass("control-locate")
123 .removeClass("leaflet-bar-part leaflet-bar-part-single")
124 .addClass("control-button");
126 var sidebar = L.OSM.sidebar("#map-ui")
131 layers: map.baseLayers,
141 "position": position,
159 OSM.initializeContextMenu(map);
161 if (OSM.STATUS !== "api_offline" && OSM.STATUS !== "database_offline") {
162 OSM.initializeNotes(map);
163 if (params.layers.indexOf(map.noteLayer.options.code) >= 0) {
164 map.addLayer(map.noteLayer);
167 OSM.initializeBrowse(map);
168 if (params.layers.indexOf(map.dataLayer.options.code) >= 0) {
169 map.addLayer(map.dataLayer);
172 if (params.layers.indexOf(map.gpsLayer.options.code) >= 0) {
173 map.addLayer(map.gpsLayer);
177 var placement = $("html").attr("dir") === "rtl" ? "right" : "left";
178 $(".leaflet-control .control-button").tooltip({ placement: placement, container: "body" });
180 var expiry = new Date();
181 expiry.setYear(expiry.getFullYear() + 10);
183 map.on("moveend layeradd layerremove", function () {
185 map.getCenter().wrap(),
190 $.removeCookie("_osm_location");
191 $.cookie("_osm_location", OSM.locationCookie(map), { expires: expiry, path: "/" });
194 if ($.cookie("_osm_welcome") !== "hide") {
195 $(".welcome").addClass("visible");
198 $(".welcome .close-wrap").on("click", function () {
199 $(".welcome").removeClass("visible");
200 $.cookie("_osm_welcome", "hide", { expires: expiry, path: "/" });
203 var bannerExpiry = new Date();
204 bannerExpiry.setYear(bannerExpiry.getFullYear() + 1);
206 $("#banner .close-wrap").on("click", function (e) {
207 var cookieId = e.target.id;
211 $.cookie(cookieId, "hide", { expires: bannerExpiry, path: "/" });
216 map.on("layeradd", function (e) {
217 if (e.layer.options) {
218 var goal = OSM.PIWIK.goals[e.layer.options.keyid];
221 $("body").trigger("piwikgoal", goal);
228 map.fitBounds(params.bounds);
230 map.setView([params.lat, params.lon], params.zoom);
234 L.marker([params.mlat, params.mlon]).addTo(map);
237 $("#homeanchor").on("click", function (e) {
240 var data = $(this).data(),
241 center = L.latLng(data.lat, data.lon);
243 map.setView(center, data.zoom);
244 L.marker(center, { icon: OSM.getUserIcon() }).addTo(map);
247 function remoteEditHandler(bbox, object) {
251 left: bbox.getWest() - 0.0001,
252 top: bbox.getNorth() + 0.0001,
253 right: bbox.getEast() + 0.0001,
254 bottom: bbox.getSouth() - 0.0001
257 url = "http://127.0.0.1:8111/load_and_zoom?";
259 if (object) query.select = object.type + object.id;
261 var iframe = $("<iframe>")
264 .attr("src", url + querystring.stringify(query))
265 .on("load", function () {
270 setTimeout(function () {
272 alert(I18n.t("site.index.remote_failed"));
280 $("a[data-editor=remote]").click(function (e) {
281 var params = OSM.mapParams(this.search);
282 remoteEditHandler(map.getBounds(), params.object);
286 if (OSM.params().edit_help) {
291 title: I18n.t("javascripts.edit_help")
295 $("body").one("click", function () {
296 $("#editanchor").tooltip("hide");
300 OSM.Index = function (map) {
303 page.pushstate = page.popstate = function () {
304 map.setSidebarOverlaid(true);
305 document.title = I18n.t("layouts.project_name.title");
308 page.load = function () {
309 var params = querystring.parse(location.search.substring(1));
311 $("#sidebar .search_form input[name=query]").value(params.query);
313 if (!("autofocus" in document.createElement("input"))) {
314 $("#sidebar .search_form input[name=query]").focus();
316 return map.getState();
322 OSM.Browse = function (map, type) {
325 page.pushstate = page.popstate = function (path, id) {
326 OSM.loadSidebarContent(path, function () {
331 page.load = function (path, id) {
332 addObject(type, id, true);
335 function addObject(type, id, center) {
336 map.addObject({ type: type, id: parseInt(id, 10) }, function (bounds) {
337 if (!window.location.hash && bounds.isValid() &&
338 (center || !map.getBounds().contains(bounds))) {
339 OSM.router.withoutMoveListener(function () {
340 map.fitBounds(bounds);
345 $(".colour-preview-box").each(function () {
346 $(this).css("background-color", $(this).data("colour"));
350 page.unload = function () {
357 var history = OSM.History(map);
359 OSM.router = OSM.Router(map, {
361 "/search": OSM.Search(map),
362 "/directions": OSM.Directions(map),
363 "/export": OSM.Export(map),
364 "/note/new": OSM.NewNote(map),
365 "/history/friends": history,
366 "/history/nearby": history,
368 "/user/:display_name/history": history,
369 "/note/:id": OSM.Note(map),
370 "/node/:id(/history)": OSM.Browse(map, "node"),
371 "/way/:id(/history)": OSM.Browse(map, "way"),
372 "/relation/:id(/history)": OSM.Browse(map, "relation"),
373 "/changeset/:id": OSM.Changeset(map),
374 "/query": OSM.Query(map)
377 if (OSM.preferred_editor === "remote" && document.location.pathname === "/edit") {
378 remoteEditHandler(map.getBounds(), params.object);
379 OSM.router.setCurrentPath("/");
384 $(document).on("click", "a", function (e) {
385 if (e.isDefaultPrevented() || e.isPropagationStopped()) {
389 // Open links in a new tab as normal.
390 if (e.which > 1 || e.metaKey || e.ctrlKey || e.shiftKey || e.altKey) {
394 // Ignore cross-protocol and cross-origin links.
395 if (location.protocol !== this.protocol || location.host !== this.host) {
399 if (OSM.router.route(this.pathname + this.search + this.hash)) {