f2e7fa171a5de3d7c29896a0ae2b1e467603df2b
[philipp/winterrodeln/mediawiki_extensions/wrmap.git] / wrmap.js
1 function init_wrmap(i, jq_map) {
2         jq_map = $(jq_map);
3         OpenLayers.ImgPath = jq_map.attr('data-img-path'); // e.g. "/mediawiki/extensions/wrmap/openlayers/img/"
4         var jq_sledruns = jq_map.children();
5         jq_sledruns.detach();
6         
7         // Introduce EPSG:3857 as an alias of the built in EPSG:900913 projection (both are the "Google/OSM" projections)
8         var EPSG4326 = new OpenLayers.Projection("EPSG:4326"); // lon/lat 
9         var EPSG3857 = new OpenLayers.Projection("EPSG:3857"); // google
10
11         // Create the map
12         var map = new OpenLayers.Map(jq_map.context, {
13                 projection: EPSG3857,
14                 displayProjection: EPSG4326,
15                 units: "m",
16                 theme: null
17         });
18
19         // Google Layer
20         var layer_map = new OpenLayers.Layer.Google("Google Physical", {
21                 type: google.maps.MapTypeId.TERRAIN
22         });
23
24         // // Alternative: OSM map
25         // var layer_map = new OpenLayers.Layer.OSM();
26         
27         // // Alternative: Microsoft Bing Maps
28         // var layer_map = new OpenLayers.Layer.Bing({
29         //     type: "Road",
30         //     key: "AgPH3SlIXAwajrJKf0FORQyhTqsP8KIlvtN6RKfvxe6fOB6q6-HFmg8EOFm7LSOA"});
31         
32         // Sledrun layer
33         var layer_sledruns = new OpenLayers.Layer.Vector("Rodelbahnen", {
34                 styleMap: new OpenLayers.StyleMap({
35                         "default": new OpenLayers.Style({
36                                 externalGraphic: "/vorlagen/gmap_rodelbahn_c.png",
37                                 graphicWidth: 17,
38                                 graphicHeight: 17,
39                                 graphicXOffset: -8,
40                                 graphicYOffset: -8,
41                                 graphicZIndex: 11,
42                                 backgroundGraphic: "/vorlagen/gmap_rodelbahn_c_s.png",
43                                 backgroundWidth: 23,
44                                 backgroundHeight: 23,
45                                 backgroundXOffset: -8,
46                                 backgroundYOffset: -8,
47                                 backgroundZIndex: 12,
48                                 title: "${label}"
49                         }),
50                         "highlight": new OpenLayers.Style({
51                                 label: "${label}",
52                                 labelOutlineColor: "white",
53                                 labelYOffset: 12,
54                                 fontWeight: "bold"
55                         })
56                 }),
57                 rendererOptions: {yOrdering: true}
58         });
59         jq_sledruns.each(function(j, jq_sledrun) {
60                 jq_sledrun = $(jq_sledrun);
61                 var lon = parseFloat(jq_sledrun.attr('data-lon'));
62                 var lat = parseFloat(jq_sledrun.attr('data-lat'));
63                 var point = new OpenLayers.Geometry.Point(lon, lat).transform(EPSG4326, EPSG3857);
64                 layer_sledruns.addFeatures([new OpenLayers.Feature.Vector(point, {
65                         label: jq_sledrun.attr('data-title'),
66                         url: jq_sledrun.attr('data-url')
67                 })]);
68         });
69         map.addControl(new OpenLayers.Control.SelectFeature(layer_sledruns, {
70                 hover: true,
71                 highlightOnly: true,
72                 autoActivate: true,
73                 renderIntent: "highlight"
74         }));
75         map.addControl(new OpenLayers.Control.SelectFeature(layer_sledruns, {
76                 autoActivate: true,
77                 toggle: true,
78                 onSelect: function(feature) {
79                         // Open popup
80                         var selectFeatureControl = this;
81                         var popup = new OpenLayers.Popup.FramedCloud("sledruninfopopup_" + feature.attributes['label'], 
82                         feature.geometry.getBounds().getCenterLonLat(),
83                         null,
84                         "<h2>" + feature.attributes['label'] + "</h2>\n" +
85                         "<ul>\n" + 
86                         "<li><a href=\"" + feature.attributes['url'] + "\">Details</a></li>\n" +
87                         "</ul>\n",
88                         null, true, function(event) {
89                                 // onPopupClose
90                                 selectFeatureControl.unselectAll();
91                         });
92                         feature.popup = popup;
93                         map.addPopup(popup);
94                 },
95                 onUnselect: function(feature) {
96                         // Close popup
97                         map.removePopup(feature.popup);
98                         feature.popup.destroy();
99                         feature.popup = null;
100                 }
101         }));
102
103
104         // Center map
105         map.addLayers([layer_map, layer_sledruns]);
106         var lon = parseFloat(jq_map.attr('data-center-lon'));
107         var lat = parseFloat(jq_map.attr('data-center-lat'));
108         var zoom = parseInt(jq_map.attr('data-zoom'));
109         map.setCenter(new OpenLayers.LonLat(lon, lat).transform(EPSG4326, map.getProjectionObject()), zoom);
110
111 }
112
113
114 function init_wrmaps() {
115         var jq_maps = $('.wrmap'); // all wrmap <div> elements
116         jq_maps.each(init_wrmap);
117 }
118
119
120 $(document).ready(init_wrmaps);
121