]> git.openstreetmap.org Git - rails.git/blob - app/assets/javascripts/index.js
d577e0cf731be9086e673ee4e63e883951c09570
[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   for (var i = layers.length - 1; i >= 0; i--) {
55     if (i === 0 || params.layers.indexOf(layers[i].options.code) >= 0) {
56       map.addLayer(layers[i]);
57       break;
58     }
59   }
60
61   map.noteLayer = new L.LayerGroup();
62   map.noteLayer.options = {code: 'N'};
63
64   map.dataLayer = new L.OSM.DataLayer(null);
65   map.dataLayer.options.code = 'D';
66
67   $("#sidebar").on("opened closed", function () {
68     map.invalidateSize();
69   });
70
71   var position = $('html').attr('dir') === 'rtl' ? 'topleft' : 'topright';
72
73   L.OSM.zoom({position: position})
74     .addTo(map);
75
76   L.control.locate({
77     position: position,
78     strings: {
79       title: I18n.t('javascripts.map.locate.title'),
80       popup: I18n.t('javascripts.map.locate.popup')
81     }
82   }).addTo(map);
83
84   var sidebar = L.OSM.sidebar('#map-ui')
85     .addTo(map);
86
87   L.OSM.layers({
88     position: position,
89     layers: layers,
90     sidebar: sidebar
91   }).addTo(map);
92
93   L.OSM.key({
94     position: position,
95     sidebar: sidebar
96   }).addTo(map);
97
98   L.OSM.share({
99     position: position,
100     sidebar: sidebar,
101     short: true
102   }).addTo(map);
103
104   L.OSM.note({
105     position: position,
106     sidebar: sidebar
107   }).addTo(map);
108
109   L.control.scale()
110     .addTo(map);
111
112   $('.leaflet-control .control-button').tooltip({placement: 'left', container: 'body'});
113
114   map.on('moveend layeradd layerremove', updateLocation);
115
116   if (OSM.PIWIK) {
117     map.on('layeradd', function (e) {
118       if (e.layer.options) {
119         var goal = OSM.PIWIK.goals[e.layer.options.keyid];
120
121         if (goal) {
122           $('body').trigger('piwikgoal', goal);
123         }
124       }
125     });
126   }
127
128   var marker = L.marker([0, 0], {icon: getUserIcon()});
129
130   if (!params.object_zoom) {
131     if (params.bounds) {
132       map.fitBounds(params.bounds);
133     } else {
134       map.setView([params.lat, params.lon], params.zoom);
135     }
136   }
137
138   if (params.box) {
139     L.rectangle(params.box, {
140       weight: 2,
141       color: '#e90',
142       fillOpacity: 0
143     }).addTo(map);
144   }
145
146   if (params.marker) {
147     marker.setLatLng([params.mlat, params.mlon]).addTo(map);
148   }
149
150   if (params.object) {
151     map.addObject(params.object, { zoom: params.object_zoom });
152   }
153
154   $("#homeanchor").on("click", function(e) {
155     e.preventDefault();
156
157     var data = $(this).data(),
158       center = L.latLng(data.lat, data.lon);
159
160     map.setView(center, data.zoom);
161     marker.setLatLng(center).addTo(map);
162   });
163
164   $("a[data-editor=remote]").click(function(e) {
165       remoteEditHandler(map.getBounds());
166       e.preventDefault();
167   });
168
169   if (OSM.preferred_editor == "remote" && $('body').hasClass("site-edit")) {
170     remoteEditHandler(map.getBounds());
171   }
172
173   if (OSM.params().edit_help) {
174     $('#editanchor')
175       .removeAttr('title')
176       .tooltip({
177         placement: 'bottom',
178         title: I18n.t('javascripts.edit_help')
179       })
180       .tooltip('show');
181
182     $('body').one('click', function() {
183       $('#editanchor').tooltip('hide');
184     });
185   }
186
187   initializeSearch(map);
188   initializeExport(map);
189   initializeBrowse(map, params);
190   initializeNotes(map, params);
191 });
192
193 function updateLocation() {
194   updatelinks(this.getCenter().wrap(),
195       this.getZoom(),
196       this.getLayersCode(),
197       this.getBounds().wrap());
198
199   var expiry = new Date();
200   expiry.setYear(expiry.getFullYear() + 10);
201   $.cookie("_osm_location", cookieContent(this), { expires: expiry });
202
203   // Trigger hash update on layer changes.
204   this.hash.onMapMove();
205 }