]> git.openstreetmap.org Git - rails.git/blob - app/assets/javascripts/index.js
Merge remote-tracking branch 'osmlab/map-ui'
[rails.git] / app / assets / javascripts / index.js
1 //= require_self
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
11
12 $(document).ready(function () {
13   var params = OSM.mapParams();
14
15   var map = L.map("map", {
16     zoomControl: false,
17     layerControl: false
18   });
19
20   map.attributionControl.setPrefix('');
21
22   var layers = [
23     new L.OSM.Mapnik({
24       attribution: '',
25       code: "M",
26       keyid: "mapnik",
27       name: I18n.t("javascripts.map.base.standard")
28     }),
29     new L.OSM.CycleMap({
30       attribution: "Tiles courtesy of <a href='http://www.opencyclemap.org/' target='_blank'>Andy Allan</a>",
31       code: "C",
32       keyid: "cyclemap",
33       name: I18n.t("javascripts.map.base.cycle_map")
34     }),
35     new L.OSM.TransportMap({
36       attribution: "Tiles courtesy of <a href='http://www.opencyclemap.org/' target='_blank'>Andy Allan</a>",
37       code: "T",
38       keyid: "transportmap",
39       name: I18n.t("javascripts.map.base.transport_map")
40     }),
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'>",
43       code: "Q",
44       keyid: "mapquest",
45       name: I18n.t("javascripts.map.base.mapquest")
46     })
47   ];
48
49   layers[0].addTo(map);
50
51   map.noteLayer = new L.LayerGroup({code: 'N'});
52   map.dataLayer = new L.OSM.DataLayer(null);
53
54   $("#sidebar").on("opened closed", function () {
55     map.invalidateSize();
56   });
57
58   var position = $('html').attr('dir') === 'rtl' ? 'topleft' : 'topright';
59
60   L.OSM.zoom({position: position})
61     .addTo(map);
62
63   L.control.locate({position: position})
64     .addTo(map);
65
66   var sidebar = L.OSM.sidebar('#map-ui')
67     .addTo(map);
68
69   L.OSM.layers({
70     position: position,
71     layers: layers,
72     sidebar: sidebar
73   }).addTo(map);
74
75   L.OSM.key({
76     position: position,
77     sidebar: sidebar
78   }).addTo(map);
79
80   L.OSM.share({
81     position: position,
82     getShortUrl: getShortUrl,
83     getUrl: getUrl,
84     sidebar: sidebar,
85     short: true
86   }).addTo(map);
87
88   L.OSM.note({
89     position: position,
90     sidebar: sidebar
91   }).addTo(map);
92
93   L.control.scale()
94     .addTo(map);
95
96   map.on('moveend layeradd layerremove', updateLocation);
97
98   map.markerLayer = L.layerGroup().addTo(map);
99
100   if (!params.object_zoom) {
101     if (params.bbox) {
102       var bbox = L.latLngBounds([params.minlat, params.minlon],
103                                 [params.maxlat, params.maxlon]);
104
105       map.fitBounds(bbox);
106
107       if (params.box) {
108         L.rectangle(bbox, {
109           weight: 2,
110           color: '#e90',
111           fillOpacity: 0
112         }).addTo(map);
113       }
114     } else {
115       map.setView([params.lat, params.lon], params.zoom);
116     }
117   }
118
119   if (params.layers) {
120     var foundLayer = false;
121     for (var i = 0; i < layers.length; i++) {
122       if (params.layers.indexOf(layers[i].options.code) >= 0) {
123         map.addLayer(layers[i]);
124         foundLayer = true;
125       } else {
126         map.removeLayer(layers[i]);
127       }
128     }
129     if (!foundLayer) {
130       map.addLayer(layers[0]);
131     }
132   }
133
134   if (params.marker) {
135     L.marker([params.mlat, params.mlon], {icon: getUserIcon()}).addTo(map.markerLayer);
136   }
137
138   if (params.object) {
139     addObjectToMap(params.object, map, { zoom: params.object_zoom });
140   }
141
142   $("body").on("click", "a.set_position", setPositionLink(map));
143
144   $("a[data-editor=remote]").click(function(e) {
145       remoteEditHandler(map.getBounds());
146       e.preventDefault();
147   });
148
149   if (OSM.preferred_editor == "remote" && $('body').hasClass("site-edit")) {
150     remoteEditHandler(map.getBounds());
151   }
152
153   $("#search_form").submit(submitSearch(map));
154
155
156   if ($("#query").val()) {
157     $("#search_form").submit();
158   }
159
160   // Focus the search field for browsers that don't support
161   // the HTML5 'autofocus' attribute
162   if (!("autofocus" in document.createElement("input"))) {
163     $("#query").focus();
164   }
165
166   initializeExport(map);
167   initializeBrowse(map);
168   initializeNotes(map);
169 });
170
171 function updateLocation() {
172   updatelinks(this.getCenter().wrap(),
173       this.getZoom(),
174       this.getLayersCode(),
175       this.getBounds().wrap());
176
177   var expiry = new Date();
178   expiry.setYear(expiry.getFullYear() + 10);
179   $.cookie("_osm_location", cookieContent(this), { expires: expiry });
180 }
181
182 function setPositionLink(map) {
183   return function(e) {
184       var data = $(this).data(),
185           center = L.latLng(data.lat, data.lon);
186
187       if (data.minLon && data.minLat && data.maxLon && data.maxLat) {
188         map.fitBounds([[data.minLat, data.minLon],
189                        [data.maxLat, data.maxLon]]);
190       } else {
191         map.setView(center, data.zoom);
192       }
193
194       if (data.type && data.id) {
195         addObjectToMap(data, map, { zoom: true, style: { opacity: 0.2, fill: false } });
196       }
197
198       map.markerLayer.clearLayers();
199       L.marker(center, {icon: getUserIcon()}).addTo(map.markerLayer);
200
201       return e.preventDefault();
202   };
203 }
204
205 function submitSearch(map) {
206   return function(e) {
207     var bounds = map.getBounds();
208
209     $("#sidebar_title").html(I18n.t('site.sidebar.search_results'));
210     $("#sidebar_content").load($(this).attr("action"), {
211       query: $("#query").val(),
212       minlon: bounds.getWest(),
213       minlat: bounds.getSouth(),
214       maxlon: bounds.getEast(),
215       maxlat: bounds.getNorth()
216     }, openSidebar);
217
218     return e.preventDefault();
219   };
220 }