]> git.openstreetmap.org Git - rails.git/blob - app/assets/javascripts/map.js.erb
Fix L.Icon.Default.imagePath in production
[rails.git] / app / assets / javascripts / map.js.erb
1 // Leaflet extensions
2 L.LatLngBounds.include({
3   getSouthLat: function () {
4     return this._southWest.lat;
5   },
6
7   getWestLng: function () {
8     return this._southWest.lng;
9   },
10
11   getNorthLat: function () {
12     return this._northEast.lat;
13   },
14
15   getEastLng: function () {
16     return this._northEast.lng;
17   },
18
19   toBBOX: function () {
20     var decimal = 6;
21     var mult = Math.pow(10, decimal);
22     var xmin = Math.round(this.getWestLng() * mult) / mult;
23     var ymin = Math.round(this.getSouthLat() * mult) / mult;
24     var xmax = Math.round(this.getEastLng() * mult) / mult;
25     var ymax = Math.round(this.getNorthLat() * mult) / mult;
26     return xmin + "," + ymin + "," + xmax + "," + ymax;
27   },
28
29   getSize: function () {
30     return (this._northEast.lat - this._southWest.lat) *
31            (this._northEast.lng - this._southWest.lng);
32   }
33 });
34
35 L.Bounds.include({
36   getWidth: function () {
37    return this.max.x - this.min.x;
38   },
39
40   getHeight: function () {
41    return this.max.y - this.min.y;
42   }
43 });
44
45 L.Icon.Default.imagePath = <%= "#{asset_prefix}/images".to_json %>;
46
47 var map;
48
49 var layers = [
50   {
51     klass: L.OSM.Mapnik,
52     attribution: "",
53     keyid: "mapnik",
54     layerCode: "M",
55     name: I18n.t("javascripts.map.base.standard")
56   },
57   {
58     klass: L.OSM.CycleMap,
59     attribution: "Tiles courtesy of <a href='http://www.opencyclemap.org/' target='_blank'>Andy Allan</a>",
60     keyid: "cyclemap",
61     layerCode: "C",
62     name: I18n.t("javascripts.map.base.cycle_map")
63   },
64   {
65     klass: L.OSM.TransportMap,
66     attribution: "Tiles courtesy of <a href='http://www.opencyclemap.org/' target='_blank'>Andy Allan</a>",
67     keyid: "transportmap",
68     layerCode: "T",
69     name: I18n.t("javascripts.map.base.transport_map")
70   },
71   {
72     klass: L.OSM.MapQuestOpen,
73     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'>",
74     keyid: "mapquest",
75     layerCode: "Q",
76     name: I18n.t("javascripts.map.base.mapquest")
77   }
78 ];
79
80 function createMap(divName, options) {
81   options = $.extend({zoomControl: false, panZoomControl: true, layerControl: true}, options);
82
83   map = L.map(divName, $.extend({}, options, {panControl: false, zoomsliderControl: false, maxZoom: 18}));
84
85   if (map.attributionControl) {
86     map.attributionControl.setPrefix(''); // For tmcw
87   }
88
89   if (options.panZoomControl) {
90     new L.Control.Pan().addTo(map);
91     new L.Control.Zoomslider({stepHeight: 7}).addTo(map);
92   }
93
94   var layersControl = L.control.layers();
95
96   if (options.layerControl) {
97     layersControl.addTo(map);
98   }
99
100   for (var i = 0; i < layers.length; i++) {
101     layers[i].layer = new (layers[i].klass)(layers[i]);
102     if (i == 0) {
103       layers[i].layer.addTo(map);
104     }
105     layersControl.addBaseLayer(layers[i].layer, layers[i].name);
106   }
107
108   $("#" + divName).on("resized", function () {
109     map.invalidateSize();
110   });
111
112   return map;
113 }
114
115 function getArrowIcon() {
116   return L.icon({
117     iconUrl: <%= asset_path('arrow.png').to_json %>,
118     iconSize: [25, 22],
119     iconAnchor: [22, 20]
120   });
121 }
122
123 function addMarkerToMap(position, icon, description) {
124   var marker = L.marker(position, icon ? {icon: icon} : null).addTo(map);
125
126   if (description) {
127     marker.bindPopup(description);
128   }
129
130   return marker;
131 }
132
133 function removeMarkerFromMap(marker) {
134   map.removeLayer(marker);
135 }
136
137 function addObjectToMap(object, zoom, callback) {
138   $.ajax({
139     url: OSM.apiUrl(object),
140     dataType: "xml",
141     success: function (xml) {
142       var layer = new L.OSM.DataLayer(xml, {
143         style: {
144           strokeColor: "blue",
145           strokeWidth: 3,
146           strokeOpacity: 0.5,
147           fillOpacity: 0.2,
148           fillColor: "lightblue",
149           pointRadius: 6
150         }
151       });
152
153       var bounds = layer.getBounds();
154
155       if (zoom) {
156         map.fitBounds(bounds);
157       }
158
159       if (callback) {
160         callback(bounds);
161       }
162
163       layer.addTo(map);
164     }
165   });
166 }
167
168 function addBoxToMap(bounds) {
169   var box = L.rectangle(bounds, {
170     weight: 2,
171     color: '#e90',
172     fillOpacity: 0
173   });
174
175   box.addTo(map);
176
177   return box;
178 }
179
180 function getMapBaseLayer() {
181   for (var i = 0; i < layers.length; i++) {
182     if (map.hasLayer(layers[i].layer)) {
183       return layers[i];
184     }
185   }
186 }
187
188 function getMapLayers() {
189   for (var i = 0; i < layers.length; i++) {
190     if (map.hasLayer(layers[i].layer)) {
191       return layers[i].layerCode;
192     }
193   }
194
195   return "";
196 }
197
198 function setMapLayers(layerConfig) {
199   for (var i = 0; i < layers.length; i++) {
200     if (~layerConfig.indexOf(layers[i].layerCode)) {
201       map.addLayer(layers[i].layer);
202     } else {
203       map.removeLayer(layers[i].layer);
204     }
205   }
206 }