1 function init_wrmap(i, 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();
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
12 var map = new OpenLayers.Map(jq_map.context, {
14 displayProjection: EPSG4326,
20 var layer_map = new OpenLayers.Layer.Google("Google Physical", {
21 type: google.maps.MapTypeId.TERRAIN
24 // // Alternative: OSM map
25 // var layer_map = new OpenLayers.Layer.OSM();
27 // // Alternative: Microsoft Bing Maps
28 // var layer_map = new OpenLayers.Layer.Bing({
30 // key: "AgPH3SlIXAwajrJKf0FORQyhTqsP8KIlvtN6RKfvxe6fOB6q6-HFmg8EOFm7LSOA"});
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",
42 backgroundGraphic: "/vorlagen/gmap_rodelbahn_c_s.png",
45 backgroundXOffset: -8,
46 backgroundYOffset: -8,
50 "highlight": new OpenLayers.Style({
52 labelOutlineColor: "white",
57 rendererOptions: {yOrdering: true}
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')
69 map.addControl(new OpenLayers.Control.SelectFeature(layer_sledruns, {
73 renderIntent: "highlight"
75 map.addControl(new OpenLayers.Control.SelectFeature(layer_sledruns, {
78 onSelect: function(feature) {
80 var selectFeatureControl = this;
81 var popup = new OpenLayers.Popup.FramedCloud("sledruninfopopup_" + feature.attributes['label'],
82 feature.geometry.getBounds().getCenterLonLat(),
84 "<h2>" + feature.attributes['label'] + "</h2>\n" +
86 "<li><a href=\"" + feature.attributes['url'] + "\">Details</a></li>\n" +
88 null, true, function(event) {
90 selectFeatureControl.unselectAll();
92 feature.popup = popup;
95 onUnselect: function(feature) {
97 map.removePopup(feature.popup);
98 feature.popup.destroy();
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);
114 function init_wrmaps() {
115 var jq_maps = $('.wrmap'); // all wrmap <div> elements
116 jq_maps.each(init_wrmap);
120 $(document).ready(init_wrmaps);