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 index/browse
9 //= require index/export
10 //= require index/notes
12 $(document).ready(function () {
13 var params = OSM.mapParams();
15 var map = L.map("map", {
20 map.attributionControl.setPrefix('');
27 name: I18n.t("javascripts.map.base.standard")
30 attribution: "Tiles courtesy of <a href='http://www.opencyclemap.org/' target='_blank'>Andy Allan</a>",
33 name: I18n.t("javascripts.map.base.cycle_map")
35 new L.OSM.TransportMap({
36 attribution: "Tiles courtesy of <a href='http://www.opencyclemap.org/' target='_blank'>Andy Allan</a>",
38 keyid: "transportmap",
39 name: I18n.t("javascripts.map.base.transport_map")
41 new L.OSM.MapQuestOpen({
42 attribution: "Tiles courtesy of <a href='http://www.mapquest.com/' target='_blank'>MapQuest</a> <img src='http://developer.mapquest.com/content/osm/mq_logo.png'>",
45 name: I18n.t("javascripts.map.base.mapquest")
51 map.noteLayer = new L.LayerGroup({code: 'N'});
52 map.dataLayer = new L.OSM.DataLayer(null);
54 $("#map").on("resized", function () {
58 L.OSM.zoom({position: 'topright'})
61 L.control.locate({position: 'topright'})
64 var sidebar = L.OSM.sidebar('#map-ui');
78 getShortUrl: getShortUrl,
92 map.on('moveend layeradd layerremove', updateLocation);
94 map.markerLayer = L.layerGroup().addTo(map);
96 if (!params.object_zoom) {
98 var bbox = L.latLngBounds([params.minlat, params.minlon],
99 [params.maxlat, params.maxlon]);
111 map.setView([params.lat, params.lon], params.zoom);
116 var foundLayer = false;
117 for (var i = 0; i < layers.length; i++) {
118 if (params.layers.indexOf(layers[i].options.code) >= 0) {
119 map.addLayer(layers[i]);
122 map.removeLayer(layers[i]);
126 map.addLayer(layers[0]);
131 L.marker([params.mlat, params.mlon], {icon: getUserIcon()}).addTo(map.markerLayer);
135 addObjectToMap(params.object, map, { zoom: params.object_zoom });
140 $("body").on("click", "a.set_position", setPositionLink(map));
142 $("a[data-editor=remote]").click(function(e) {
143 remoteEditHandler(map.getBounds());
147 if (OSM.preferred_editor == "remote" && $('body').hasClass("site-edit")) {
148 remoteEditHandler(map.getBounds());
151 $(window).resize(handleResize);
153 $("#search_form").submit(submitSearch(map));
156 if ($("#query").val()) {
157 $("#search_form").submit();
160 // Focus the search field for browsers that don't support
161 // the HTML5 'autofocus' attribute
162 if (!("autofocus" in document.createElement("input"))) {
166 initializeExport(map);
167 initializeBrowse(map);
168 initializeNotes(map);
171 function updateLocation() {
172 updatelinks(this.getCenter().wrap(),
174 this.getLayersCode(),
175 this.getBounds().wrap(), {});
177 var expiry = new Date();
178 expiry.setYear(expiry.getFullYear() + 10);
179 $.cookie("_osm_location", cookieContent(this), { expires: expiry });
182 function setPositionLink(map) {
184 var data = $(this).data(),
185 center = L.latLng(data.lat, data.lon);
187 if (data.minLon && data.minLat && data.maxLon && data.maxLat) {
188 map.fitBounds([[data.minLat, data.minLon],
189 [data.maxLat, data.maxLon]]);
191 map.setView(center, data.zoom);
194 if (data.type && data.id) {
195 addObjectToMap(data, map, { zoom: true, style: { opacity: 0.2, fill: false } });
198 map.markerLayer.clearLayers();
199 L.marker(center, {icon: getUserIcon()}).addTo(map.markerLayer);
201 return e.preventDefault();
205 function submitSearch(map) {
207 var bounds = map.getBounds();
209 $("#sidebar_title").html(I18n.t('site.sidebar.search_results'));
210 $("#sidebar_content").load($(this).attr("action"), {
211 query: $("#query").val(),
212 minlon: bounds.getWestLng(),
213 minlat: bounds.getSouthLat(),
214 maxlon: bounds.getEastLng(),
215 maxlat: bounds.getNorthLat()
218 return e.preventDefault();