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
25 $(document).ready(function () {
28 var map = new L.OSM.Map("map", {
34 OSM.loadSidebarContent = function (path, callback) {
35 var content_path = path;
37 map.setSidebarOverlaid(false);
39 clearTimeout(loaderTimeout);
41 loaderTimeout = setTimeout(function () {
42 $("#sidebar_loader").show();
45 // IE<10 doesn't respect Vary: X-Requested-With header, so
46 // prevent caching the XHR response as a full-page URL.
47 if (content_path.indexOf("?") >= 0) {
48 content_path += "&xhr=1";
50 content_path += "?xhr=1";
59 complete: function (xhr) {
60 clearTimeout(loaderTimeout);
62 $("#sidebar_loader").hide();
64 var content = $(xhr.responseText);
66 if (xhr.getResponseHeader("X-Page-Title")) {
67 var title = xhr.getResponseHeader("X-Page-Title");
68 document.title = decodeURIComponent(title);
72 .find("link[type=\"application/atom+xml\"]")
76 .append(content.filter("link[type=\"application/atom+xml\"]"));
78 $("#sidebar_content").html(content.not("link[type=\"application/atom+xml\"]"));
87 var params = OSM.mapParams();
89 map.attributionControl.setPrefix("");
91 map.updateLayers(params.layers);
93 map.on("baselayerchange", function (e) {
94 if (map.getZoom() > e.layer.options.maxZoom) {
95 map.setView(map.getCenter(), e.layer.options.maxZoom, { reset: true });
99 var position = $("html").attr("dir") === "rtl" ? "topleft" : "topright";
101 L.OSM.zoom({ position: position })
104 var locate = L.control.locate({
106 icon: "icon geolocate",
107 iconLoading: "icon geolocate",
109 title: I18n.t("javascripts.map.locate.title"),
110 popup: I18n.t("javascripts.map.locate.popup")
114 var locateContainer = locate.getContainer();
117 .removeClass("leaflet-control-locate leaflet-bar")
118 .addClass("control-locate")
121 .removeClass("leaflet-bar-part leaflet-bar-part-single")
122 .addClass("control-button");
124 var sidebar = L.OSM.sidebar("#map-ui")
129 layers: map.baseLayers,
139 "position": position,
157 OSM.initializeContextMenu(map);
159 if (OSM.STATUS !== "api_offline" && OSM.STATUS !== "database_offline") {
160 OSM.initializeNotes(map);
161 if (params.layers.indexOf(map.noteLayer.options.code) >= 0) {
162 map.addLayer(map.noteLayer);
165 OSM.initializeBrowse(map);
166 if (params.layers.indexOf(map.dataLayer.options.code) >= 0) {
167 map.addLayer(map.dataLayer);
170 if (params.layers.indexOf(map.gpsLayer.options.code) >= 0) {
171 map.addLayer(map.gpsLayer);
175 var placement = $("html").attr("dir") === "rtl" ? "right" : "left";
176 $(".leaflet-control .control-button").tooltip({ placement: placement, container: "body" });
178 var expiry = new Date();
179 expiry.setYear(expiry.getFullYear() + 10);
181 map.on("moveend layeradd layerremove", function () {
183 map.getCenter().wrap(),
188 $.removeCookie("_osm_location");
189 $.cookie("_osm_location", OSM.locationCookie(map), { expires: expiry, path: "/" });
192 if ($.cookie("_osm_welcome") !== "hide") {
193 $(".welcome").addClass("visible");
196 $(".welcome .close-wrap").on("click", function () {
197 $(".welcome").removeClass("visible");
198 $.cookie("_osm_welcome", "hide", { expires: expiry, path: "/" });
201 var bannerExpiry = new Date();
202 bannerExpiry.setYear(bannerExpiry.getFullYear() + 1);
204 $("#banner .close-wrap").on("click", function (e) {
205 var cookieId = e.target.id;
209 $.cookie(cookieId, "hide", { expires: bannerExpiry, path: "/" });
214 map.on("layeradd", function (e) {
215 if (e.layer.options) {
216 var goal = OSM.PIWIK.goals[e.layer.options.keyid];
219 $("body").trigger("piwikgoal", goal);
226 map.fitBounds(params.bounds);
228 map.setView([params.lat, params.lon], params.zoom);
232 L.marker([params.mlat, params.mlon]).addTo(map);
235 $("#homeanchor").on("click", function (e) {
238 var data = $(this).data(),
239 center = L.latLng(data.lat, data.lon);
241 map.setView(center, data.zoom);
242 L.marker(center, { icon: OSM.getUserIcon() }).addTo(map);
245 function remoteEditHandler(bbox, object) {
249 left: bbox.getWest() - 0.0001,
250 top: bbox.getNorth() + 0.0001,
251 right: bbox.getEast() + 0.0001,
252 bottom: bbox.getSouth() - 0.0001
255 if (location.protocol === "http" ||
256 bowser.check({ chrome: "53", firefox: "55" })) {
257 url = "http://127.0.0.1:8111/load_and_zoom?";
259 url = "https://127.0.0.1:8112/load_and_zoom?";
262 if (object) query.select = object.type + object.id;
264 var iframe = $("<iframe>")
267 .attr("src", url + querystring.stringify(query))
268 .on("load", function () {
273 setTimeout(function () {
275 alert(I18n.t("site.index.remote_failed"));
283 $("a[data-editor=remote]").click(function (e) {
284 var params = OSM.mapParams(this.search);
285 remoteEditHandler(map.getBounds(), params.object);
289 if (OSM.params().edit_help) {
294 title: I18n.t("javascripts.edit_help")
298 $("body").one("click", function () {
299 $("#editanchor").tooltip("hide");
303 OSM.Index = function (map) {
306 page.pushstate = page.popstate = function () {
307 map.setSidebarOverlaid(true);
308 document.title = I18n.t("layouts.project_name.title");
311 page.load = function () {
312 var params = querystring.parse(location.search.substring(1));
314 $("#sidebar .search_form input[name=query]").value(params.query);
316 if (!("autofocus" in document.createElement("input"))) {
317 $("#sidebar .search_form input[name=query]").focus();
319 return map.getState();
325 OSM.Browse = function (map, type) {
328 page.pushstate = page.popstate = function (path, id) {
329 OSM.loadSidebarContent(path, function () {
334 page.load = function (path, id) {
335 addObject(type, id, true);
338 function addObject(type, id, center) {
339 map.addObject({ type: type, id: parseInt(id, 10) }, function (bounds) {
340 if (!window.location.hash && bounds.isValid() &&
341 (center || !map.getBounds().contains(bounds))) {
342 OSM.router.withoutMoveListener(function () {
343 map.fitBounds(bounds);
349 page.unload = function () {
356 var history = OSM.History(map);
358 OSM.router = OSM.Router(map, {
360 "/search": OSM.Search(map),
361 "/directions": OSM.Directions(map),
362 "/export": OSM.Export(map),
363 "/note/new": OSM.NewNote(map),
364 "/history/friends": history,
365 "/history/nearby": history,
367 "/user/:display_name/history": history,
368 "/note/:id": OSM.Note(map),
369 "/node/:id(/history)": OSM.Browse(map, "node"),
370 "/way/:id(/history)": OSM.Browse(map, "way"),
371 "/relation/:id(/history)": OSM.Browse(map, "relation"),
372 "/changeset/:id": OSM.Changeset(map),
373 "/query": OSM.Query(map)
376 if (OSM.preferred_editor === "remote" && document.location.pathname === "/edit") {
377 remoteEditHandler(map.getBounds(), params.object);
378 OSM.router.setCurrentPath("/");
383 $(document).on("click", "a", function (e) {
384 if (e.isDefaultPrevented() || e.isPropagationStopped()) {
388 // Open links in a new tab as normal.
389 if (e.which > 1 || e.metaKey || e.ctrlKey || e.shiftKey || e.altKey) {
393 // Ignore cross-protocol and cross-origin links.
394 if (location.protocol !== this.protocol || location.host !== this.host) {
398 if (OSM.router.route(this.pathname + this.search + this.hash)) {