2014-05-06 15:14:30 +02:00
|
|
|
/**********************************************************************
|
|
|
|
* map.js *
|
|
|
|
* script for map specific functions and setup *
|
|
|
|
**********************************************************************/
|
2014-05-06 13:26:47 +02:00
|
|
|
|
2014-05-06 15:14:30 +02:00
|
|
|
/* License
|
|
|
|
Copyright 2014 Kasper D. Fischer <kasper.fischer@rub.de>
|
2014-05-06 13:26:47 +02:00
|
|
|
|
2014-05-06 15:14:30 +02:00
|
|
|
This program is free software: you can redistribute it and/or modify it
|
|
|
|
under the terms of the GNU General Public License as published by the Free
|
|
|
|
Software Foundation, either version 3 of the License, or (at your option)
|
|
|
|
any later version.
|
2014-05-06 13:26:47 +02:00
|
|
|
|
2014-05-06 15:14:30 +02:00
|
|
|
This program is distributed in the hope that it will be useful, but
|
|
|
|
WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
|
|
|
or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
|
|
for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License along
|
|
|
|
with this program. If not, see http://www.gnu.org/licenses/.
|
|
|
|
|
|
|
|
$Id$
|
|
|
|
*/
|
2014-05-06 13:26:47 +02:00
|
|
|
|
|
|
|
/* add station marker */
|
2014-05-14 17:33:43 +02:00
|
|
|
function addStationMarker(id, lat, lng, station) {
|
|
|
|
var marker = L.triangleMarker(L.latLng(lat, lng),
|
2014-05-06 13:26:47 +02:00
|
|
|
{
|
2014-05-14 17:33:43 +02:00
|
|
|
gradient: true,
|
2014-05-14 11:48:04 +02:00
|
|
|
fillColor: config['station']['markerColor'],
|
2014-05-14 17:33:43 +02:00
|
|
|
fillOpacity: config['station']['markerOpacity'],
|
2014-05-14 11:48:04 +02:00
|
|
|
color: config['station']['markerColor'],
|
2014-05-06 13:26:47 +02:00
|
|
|
weight: 1,
|
|
|
|
opacity: 1,
|
2014-05-14 17:33:43 +02:00
|
|
|
radius: config['station']['markerSize'][id] || config['station']['markerSize']['default'],
|
2014-05-06 13:26:47 +02:00
|
|
|
className: id+' stationMarker',
|
2014-05-14 17:33:43 +02:00
|
|
|
});
|
2014-05-15 12:15:52 +02:00
|
|
|
marker.bindLabel('Station '+station);
|
2014-05-14 17:33:43 +02:00
|
|
|
stationLayer.addLayer(marker);
|
2014-05-06 13:26:47 +02:00
|
|
|
stationTable[id] = marker;
|
|
|
|
};
|
|
|
|
|
|
|
|
/* add event marker */
|
|
|
|
function addEventMarker(id, lat, lng, mag) {
|
|
|
|
var markerOptions = {
|
2014-05-14 17:33:43 +02:00
|
|
|
gradient: true,
|
|
|
|
dropShadow: false,
|
2014-05-08 11:08:48 +02:00
|
|
|
fillColor: config['event']['markerColor'],
|
2014-05-14 17:33:43 +02:00
|
|
|
fillOpacity: config['event']['markerOpacity'],
|
2014-05-08 11:08:48 +02:00
|
|
|
color: config['event']['markerColor'],
|
2014-05-14 17:33:43 +02:00
|
|
|
weight: 0,
|
2014-05-06 13:26:47 +02:00
|
|
|
opacity: 1,
|
|
|
|
className: id+' eventMarker',
|
2014-05-14 17:33:43 +02:00
|
|
|
radius: mag2radius(mag)
|
2014-05-06 13:26:47 +02:00
|
|
|
};
|
2014-05-14 17:33:43 +02:00
|
|
|
var marker = L.circleMarker(L.latLng(lat, lng), markerOptions);
|
|
|
|
eventLayer.addLayer(marker);
|
2014-05-06 13:26:47 +02:00
|
|
|
eventTable[id] = marker;
|
|
|
|
return marker;
|
|
|
|
};
|
|
|
|
|
|
|
|
/* handle to show events on map */
|
|
|
|
function initMapLink() {
|
|
|
|
$("#eventstable > tbody > tr > td > a.map-link").on('click' , function(){
|
|
|
|
var highlightStyle = {
|
2014-05-08 11:08:48 +02:00
|
|
|
color: config['event']['markerColorH'],
|
|
|
|
fillColor: config['event']['markerColorH'],
|
2014-05-14 17:33:43 +02:00
|
|
|
fillOpacity: 1,
|
2014-05-06 13:26:47 +02:00
|
|
|
className: $(this).attr('eventid')
|
|
|
|
}
|
|
|
|
var normalStyle = {
|
2014-05-08 11:08:48 +02:00
|
|
|
fillColor: config['event']['markerColor'],
|
2014-05-14 17:33:43 +02:00
|
|
|
fillOpacity: config['event']['markerOpacity'],
|
2014-05-08 11:08:48 +02:00
|
|
|
color: config['event']['markerColor']
|
2014-05-06 13:26:47 +02:00
|
|
|
};
|
|
|
|
// mark currently selected link and remove class selected from all other links
|
|
|
|
// set everything to normal state
|
|
|
|
$(this).addClass('selected-now');
|
|
|
|
$("#eventstable > tbody > tr:not(.filtered) > td > a.map-link:not(.selected-now)").each(function(){
|
|
|
|
$(this).removeClass('selected');
|
|
|
|
$(this).text('Karte');
|
|
|
|
eventTable[$(this).attr('eventid')].setStyle(normalStyle);
|
|
|
|
});
|
|
|
|
// switch event of first row to normalStyle if it is not the selected one
|
|
|
|
( $(this).hasClass('first') ) ? null : eventTable[$("#eventstable > tbody > tr:not(.filtered)").first().find("a.map-link").attr("eventid")].setStyle(normalStyle);
|
|
|
|
$(this).each(function(){
|
|
|
|
$(this).removeClass('selected-now');
|
|
|
|
// selected -> unselected
|
|
|
|
if ( $(this).hasClass('selected') ) {
|
|
|
|
$(this).removeClass('selected');
|
|
|
|
$(this).text('Karte');
|
|
|
|
eventTable[$(this).attr('eventid')].setStyle(normalStyle);
|
2014-05-06 16:18:20 +02:00
|
|
|
map.setView(config['map']['centerDefault'], config['map']['zoomDefault']);
|
2014-05-06 13:26:47 +02:00
|
|
|
highlightFirstEvent();
|
|
|
|
// unselected -> selected
|
|
|
|
} else {
|
|
|
|
$(this).addClass('selected');
|
|
|
|
$(this).text('im Fokus (rot)');
|
|
|
|
eventTable[$(this).attr('eventid')].setStyle(highlightStyle);
|
2014-05-06 16:18:20 +02:00
|
|
|
map.setView(eventTable[$(this).attr('eventid')].getLatLng(), config['map']['zoomFocus']);
|
2014-05-06 13:26:47 +02:00
|
|
|
};
|
|
|
|
});
|
|
|
|
return false;
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2014-05-06 15:14:30 +02:00
|
|
|
/**********************************************************************
|
|
|
|
* document ready *
|
|
|
|
**********************************************************************/
|
2014-05-06 13:26:47 +02:00
|
|
|
$(document).ready(function() {
|
|
|
|
|
|
|
|
// create a map in the "map" div, set the view to a given place and zoom
|
2014-05-08 13:36:20 +02:00
|
|
|
map = L.map('map', { zoomControl: false, worldCopyJump: true }).setView(config['map']['centerDefault'], config['map']['zoomDefault']);
|
2014-05-06 13:26:47 +02:00
|
|
|
new L.Control.Zoom({ position: 'topright' }).addTo(map);
|
2014-05-12 17:54:07 +02:00
|
|
|
new L.control.scale({position: 'bottomright', imperial: false}).addTo(map);
|
2014-05-06 13:26:47 +02:00
|
|
|
|
2014-05-14 17:33:43 +02:00
|
|
|
// create baselayer
|
|
|
|
switch ( config['map']['baselayer'] ) {
|
|
|
|
case 'esrigray': // add ESRI Grayscale World Map (neither city nor road names)
|
|
|
|
L.tileLayer('//server.arcgisonline.com/ArcGIS/rest/services/Canvas/World_Light_Gray_Base/MapServer/tile/{z}/{y}/{x}',
|
|
|
|
{
|
|
|
|
attribution: 'Tiles © Esri — Esri, DeLorme, NAVTEQ',
|
|
|
|
maxZoom: 16
|
|
|
|
}).addTo(map);
|
|
|
|
break;
|
|
|
|
case 'mapquestgray': // add MapQuestOSM tile layer
|
|
|
|
L.tileLayer.grayscale('http://otile{s}.mqcdn.com/tiles/1.0.0/map/{z}/{x}/{y}.jpg',
|
2014-05-06 13:26:47 +02:00
|
|
|
{
|
|
|
|
subdomains: '1234',
|
|
|
|
detectRetina: true,
|
|
|
|
attribution: 'Map data © <a href="https://openstreetmap.org">OpenStreetMap</a> contributors, <a href="https://creativecommons.org/licenses/by-sa/2.0/">CC-BY-SA</a> | Tiles Courtesy of <a href="http://www.mapquest.com/">MapQuest</a> <img src="https://developer.mapquest.com/content/osm/mq_logo.png">',
|
|
|
|
}).addTo(map);
|
2014-05-14 17:33:43 +02:00
|
|
|
break;
|
|
|
|
case 'mapquest': // add MapQuestOSM tile layer
|
|
|
|
null;
|
|
|
|
default:
|
|
|
|
L.tileLayer('http://otile{s}.mqcdn.com/tiles/1.0.0/map/{z}/{x}/{y}.jpg',
|
2014-05-06 13:26:47 +02:00
|
|
|
{
|
2014-05-14 17:33:43 +02:00
|
|
|
subdomains: '1234',
|
|
|
|
detectRetina: true,
|
|
|
|
attribution: 'Map data © <a href="https://openstreetmap.org">OpenStreetMap</a> contributors, <a href="https://creativecommons.org/licenses/by-sa/2.0/">CC-BY-SA</a> | Tiles Courtesy of <a href="http://www.mapquest.com/">MapQuest</a> <img src="https://developer.mapquest.com/content/osm/mq_logo.png">',
|
|
|
|
}).addTo(map);
|
|
|
|
};
|
|
|
|
|
2014-05-06 13:26:47 +02:00
|
|
|
|
2014-05-14 07:22:21 +02:00
|
|
|
// create station and event layer
|
2014-05-14 17:33:43 +02:00
|
|
|
// stationLayer = L.geoJson().addTo(map);
|
|
|
|
stationLayer = new L.MarkerGroup().addTo(map);
|
|
|
|
eventLayer = new L.MarkerGroup().addTo(map);
|
2014-05-14 07:22:21 +02:00
|
|
|
|
|
|
|
// load events
|
2014-05-06 13:26:47 +02:00
|
|
|
ajaxLoadEvents();
|
|
|
|
toggleFilteredMarkers();
|
|
|
|
|
|
|
|
// bind popupopen event
|
|
|
|
map.on('popupopen', function() {
|
|
|
|
// convert date/time to localtime
|
|
|
|
$("div.leaflet-popup span.utctime").each(function(){$(this).addClass("localtime").removeClass("utctime");$.localtime.formatObject($(this), "dd.MM.yyyy - HH:mm")});
|
2014-05-12 18:10:29 +02:00
|
|
|
openMarkerID = $("div.leaflet-popup h3").attr("eventid");
|
|
|
|
if ( openMarkerID ) {
|
2014-05-06 13:26:47 +02:00
|
|
|
// update city in popup
|
2014-05-12 18:10:29 +02:00
|
|
|
$("div.leaflet-popup h3").text(geolocationTable[openMarkerID]);
|
|
|
|
// highlight event in table and show details
|
|
|
|
// highlightEvent(eventid);
|
|
|
|
$('#eventstable > tbody > tr > td > a.toggle').each(function() {
|
|
|
|
if ( $(this).attr('eventid') == openMarkerID ) {
|
|
|
|
$(this)[0].click();
|
|
|
|
};
|
|
|
|
});
|
2014-05-06 13:26:47 +02:00
|
|
|
};
|
|
|
|
});
|
2014-05-12 18:10:29 +02:00
|
|
|
map.on('popupclose', function() {
|
|
|
|
$('#eventstable > tbody > tr > td > a.toggle').each(function() {
|
|
|
|
if ( $(this).attr('eventid') == openMarkerID ) {
|
|
|
|
$(this)[0].click();
|
|
|
|
};
|
|
|
|
});
|
|
|
|
});
|
2014-05-06 13:26:47 +02:00
|
|
|
});
|