]> git.openstreetmap.org Git - rails.git/blob - app/assets/javascripts/index.js
Zoom out when switching to a layer with a lower maxZoom
[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/search
9 //= require index/browse
10 //= require index/export
11 //= require index/notes
12
13 $(document).ready(function () {
14   var params = OSM.mapParams();
15
16   var map = L.map("map", {
17     zoomControl: false,
18     layerControl: false
19   });
20
21   map.attributionControl.setPrefix('');
22
23   map.hash = L.hash(map);
24
25   var copyright = I18n.t('javascripts.map.copyright', {copyright_url: '/copyright'});
26
27   var layers = [
28     new L.OSM.Mapnik({
29       attribution: copyright,
30       code: "M",
31       keyid: "mapnik",
32       name: I18n.t("javascripts.map.base.standard")
33     }),
34     new L.OSM.CycleMap({
35       attribution: copyright + ". Tiles courtesy of <a href='http://www.opencyclemap.org/' target='_blank'>Andy Allan</a>",
36       code: "C",
37       keyid: "cyclemap",
38       name: I18n.t("javascripts.map.base.cycle_map")
39     }),
40     new L.OSM.TransportMap({
41       attribution: copyright + ". Tiles courtesy of <a href='http://www.opencyclemap.org/' target='_blank'>Andy Allan</a>",
42       code: "T",
43       keyid: "transportmap",
44       name: I18n.t("javascripts.map.base.transport_map")
45     }),
46     new L.OSM.MapQuestOpen({
47       attribution: copyright + ". Tiles courtesy of <a href='http://www.mapquest.com/' target='_blank'>MapQuest</a> <img src='http://developer.mapquest.com/content/osm/mq_logo.png'>",
48       code: "Q",
49       keyid: "mapquest",
50       name: I18n.t("javascripts.map.base.mapquest")
51     })
52   ];
53
54   function updateLayers(params) {
55     var layerParam = params.layers || "M";
56     var layersAdded = "";
57
58     for (var i = layers.length - 1; i >= 0; i--) {
59       if (layerParam.indexOf(layers[i].options.code) >= 0) {
60         map.addLayer(layers[i]);
61         layersAdded = layersAdded + layers[i].options.code;
62       } else if (i == 0 && layersAdded == "") {
63         map.addLayer(layers[i]);
64       } else {
65         map.removeLayer(layers[i]);
66       }
67     }
68   }
69
70   updateLayers(params);
71
72   $(window).on("hashchange", function () {
73     updateLayers(OSM.mapParams());
74   });
75
76   map.on("baselayerchange", function (e) {
77     if (map.getZoom() > e.layer.options.maxZoom) {
78       map.setView(map.getCenter(), e.layer.options.maxZoom, { reset: true });
79     }
80   });
81
82   map.noteLayer = new L.LayerGroup();
83   map.noteLayer.options = {code: 'N'};
84
85   map.dataLayer = new L.OSM.DataLayer(null);
86   map.dataLayer.options.code = 'D';
87
88   $("#sidebar").on("opened closed", function () {
89     map.invalidateSize();
90   });
91
92   var position = $('html').attr('dir') === 'rtl' ? 'topleft' : 'topright';
93
94   L.OSM.zoom({position: position})
95     .addTo(map);
96
97   L.control.locate({
98     position: position,
99     strings: {
100       title: I18n.t('javascripts.map.locate.title'),
101       popup: I18n.t('javascripts.map.locate.popup')
102     }
103   }).addTo(map);
104
105   var sidebar = L.OSM.sidebar('#map-ui')
106     .addTo(map);
107
108   L.OSM.layers({
109     position: position,
110     layers: layers,
111     sidebar: sidebar
112   }).addTo(map);
113
114   L.OSM.key({
115     position: position,
116     sidebar: sidebar
117   }).addTo(map);
118
119   L.OSM.share({
120     position: position,
121     sidebar: sidebar,
122     short: true
123   }).addTo(map);
124
125   L.OSM.note({
126     position: position,
127     sidebar: sidebar
128   }).addTo(map);
129
130   L.control.scale()
131     .addTo(map);
132
133   $('.leaflet-control .control-button').tooltip({placement: 'left', container: 'body'});
134
135   map.on('moveend layeradd layerremove', updateLocation);
136
137   if (OSM.PIWIK) {
138     map.on('layeradd', function (e) {
139       if (e.layer.options) {
140         var goal = OSM.PIWIK.goals[e.layer.options.keyid];
141
142         if (goal) {
143           $('body').trigger('piwikgoal', goal);
144         }
145       }
146     });
147   }
148
149   var marker = L.marker([0, 0], {icon: getUserIcon()});
150
151   if (!params.object_zoom) {
152     if (params.bounds) {
153       map.fitBounds(params.bounds);
154     } else {
155       map.setView([params.lat, params.lon], params.zoom);
156     }
157   }
158
159   if (params.box) {
160     L.rectangle(params.box, {
161       weight: 2,
162       color: '#e90',
163       fillOpacity: 0
164     }).addTo(map);
165   }
166
167   if (params.marker) {
168     marker.setLatLng([params.mlat, params.mlon]).addTo(map);
169   }
170
171   if (params.object) {
172     map.addObject(params.object, { zoom: params.object_zoom });
173   }
174
175   $("#homeanchor").on("click", function(e) {
176     e.preventDefault();
177
178     var data = $(this).data(),
179       center = L.latLng(data.lat, data.lon);
180
181     map.setView(center, data.zoom);
182     marker.setLatLng(center).addTo(map);
183   });
184
185   $("a[data-editor=remote]").click(function(e) {
186       remoteEditHandler(map.getBounds());
187       e.preventDefault();
188   });
189
190   if (OSM.preferred_editor == "remote" && $('body').hasClass("site-edit")) {
191     remoteEditHandler(map.getBounds());
192   }
193
194   if (OSM.params().edit_help) {
195     $('#editanchor')
196       .removeAttr('title')
197       .tooltip({
198         placement: 'bottom',
199         title: I18n.t('javascripts.edit_help')
200       })
201       .tooltip('show');
202
203     $('body').one('click', function() {
204       $('#editanchor').tooltip('hide');
205     });
206   }
207
208   initializeSearch(map);
209   initializeExport(map);
210   initializeBrowse(map, params);
211   initializeNotes(map, params);
212 });
213
214 function updateLocation() {
215   updatelinks(this.getCenter().wrap(),
216       this.getZoom(),
217       this.getLayersCode(),
218       this.getBounds().wrap());
219
220   var expiry = new Date();
221   expiry.setYear(expiry.getFullYear() + 10);
222   $.cookie("_osm_location", cookieContent(this), { expires: expiry });
223
224   // Trigger hash update on layer changes.
225   this.hash.onMapMove();
226 }