This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var station_info; | |
var coincidences; | |
var c_idx = 0; | |
var map = L.map('map'); | |
var svg = d3.select(map.getPanes().overlayPane).append("svg"), | |
g = svg.append("g").attr("class", "leaflet-zoom-hide"); | |
function x(coord) { return map.latLngToLayerPoint(coord).x }; | |
function y(coord) { return map.latLngToLayerPoint(coord).y }; |