mirror of
https://github.com/rscmbbng/Border-Check.git
synced 2024-12-28 06:41:34 +01:00
added node clustering
This commit is contained in:
parent
842734a68d
commit
47045c3fc5
116
web/js/bc.js
116
web/js/bc.js
@ -1,14 +1,14 @@
|
||||
window.onload = function () {
|
||||
index = 0
|
||||
var map = L.map('map',{
|
||||
minZoom: 2,
|
||||
maxZoom:5,
|
||||
|
||||
}).setView([38.0, -97.0], 3);
|
||||
}).setView(latlong[index], 2);
|
||||
|
||||
L.tileLayer('http://{s}.tile.osm.org/{z}/{x}/{y}.png', {
|
||||
attribution: '© <a href="http://osm.org/copyright">OpenStreetMap</a> contributors'
|
||||
}).addTo(map);
|
||||
|
||||
//the slider bar
|
||||
$('#button').bind('click', function(){
|
||||
$('#bar').animate({"width": '200'})
|
||||
@ -18,17 +18,56 @@ window.onload = function () {
|
||||
|
||||
})
|
||||
|
||||
//function chain for drawing the markers and lines on the map.
|
||||
$('#but').bind('click', function(){
|
||||
console.log('click')
|
||||
$('.leaflet-popup-content-wrapper').css({'height':'700px'})
|
||||
$('#metadata-content').show()
|
||||
})window.onload = function () {
|
||||
index = 0
|
||||
var map = L.map('map',{
|
||||
minZoom: 2,
|
||||
maxZoom:5,
|
||||
|
||||
}).setView(latlong[index], 2);
|
||||
|
||||
L.tileLayer('http://{s}.tile.osm.org/{z}/{x}/{y}.png', {
|
||||
attribution: '© <a href="http://osm.org/copyright">OpenStreetMap</a> contributors'
|
||||
}).addTo(map);
|
||||
//the slider bar
|
||||
$('#button').bind('click', function(){
|
||||
$('#bar').animate({"width": '200'})
|
||||
var info = $("<div id = info><p>this is where info goes</p><p>I will make a 'slide back' option later</p></div>")
|
||||
.appendTo("#bar")
|
||||
console.log('click')
|
||||
|
||||
})
|
||||
|
||||
$('#but').bind('click', function(){
|
||||
console.log('click')
|
||||
$('.leaflet-popup-content-wrapper').css({'height':'700px'})
|
||||
$('#metadata-content').show()
|
||||
})
|
||||
|
||||
//function chain for drawing the markers and lines on the map.
|
||||
|
||||
delay = (400+timestamp_list[index])
|
||||
|
||||
clusterGroup = new L.MarkerClusterGroup();
|
||||
AddStep(latlong[index], latlong[index+1], index)
|
||||
|
||||
|
||||
function AddMarkerCluster(marker, index){
|
||||
clusterGroup.addLayer(marker)
|
||||
}
|
||||
function AddMarker(src, index){
|
||||
var marker = L.marker([src[0], src[1]]).bindPopup(
|
||||
"<p>Hop no:"+hop_list[index]+"<br /><a>show metadata</a></p><p id=metadata'>Server name:<br />"+server_name_list[index]+"<br />Network owner:<br />"+asn_list[index]+"</p>"
|
||||
);
|
||||
marker.addTo(map).openPopup()
|
||||
var marker = L.marker([src[0], src[1]])
|
||||
var popup = L.Popup({
|
||||
maxHeight: 50})
|
||||
var popupcontent = "<p>Hop no:"+hop_list[index]+"<br /><div id='metadata' $(this).hide()><button id='but'>show metadata</button><div id='metadata-content'>Server name:<br />"+server_name_list[index]+"<br />Network owner:<br />"+asn_list[index]+"</div></div>"
|
||||
marker.bindPopup(popupcontent)
|
||||
//marker.addTo(map).openPopup()
|
||||
$('#metadata-content').hide()
|
||||
AddMarkerCluster(marker)
|
||||
map.addLayer(clusterGroup)
|
||||
}
|
||||
|
||||
function AddStep(src, dest, index){
|
||||
@ -66,5 +105,66 @@ window.onload = function () {
|
||||
index = index + 1
|
||||
delay = (400 + timestamp_list[index])
|
||||
}
|
||||
$('.leaflet-marker-icon').bind('click', function(){
|
||||
console.log('clickkkk')
|
||||
})
|
||||
};
|
||||
|
||||
|
||||
|
||||
//function chain for drawing the markers and lines on the map.
|
||||
|
||||
delay = (400+timestamp_list[index])
|
||||
|
||||
AddStep(latlong[index], latlong[index+1], index)
|
||||
|
||||
function AddMarker(src, index){
|
||||
var marker = L.marker([src[0], src[1]])
|
||||
var popup = L.Popup({
|
||||
maxHeight: 50})
|
||||
var popupcontent = "<p>Hop no:"+hop_list[index]+"<br /><div id='metadata' $(this).hide()><button id='but'>show metadata</button><div id='metadata-content'>Server name:<br />"+server_name_list[index]+"<br />Network owner:<br />"+asn_list[index]+"</div></div>"
|
||||
marker.bindPopup(popupcontent)
|
||||
marker.addTo(map).openPopup()
|
||||
$('#metadata-content').hide()
|
||||
}
|
||||
|
||||
function AddStep(src, dest, index){
|
||||
var b = new R.BezierAnim([src, dest], {})
|
||||
map.addLayer(b)
|
||||
AddMarker(src, index)
|
||||
processStep(index)
|
||||
//console.log(delay)
|
||||
}
|
||||
|
||||
function processStep (index) {
|
||||
map.panTo(latlong[index]);
|
||||
if (index < counter_max-2) {
|
||||
//console.log('hop#', hop_list[index])
|
||||
changeFavicon('js/world/'+country_code_list[index]+'.png')
|
||||
window.setTimeout(function () {
|
||||
AddStep(latlong[index], latlong[index+1], index)
|
||||
}, delay);}
|
||||
else
|
||||
if (index < counter_max-1){
|
||||
//console.log('hop#', hop_list[index])
|
||||
changeFavicon('js/world/'+country_code_list[index]+'.png')
|
||||
window.setTimeout(function () {
|
||||
AddStep(latlong[index], latlong[index], index)
|
||||
}, delay);}
|
||||
|
||||
else
|
||||
if (index = counter_max-1){
|
||||
changeFavicon('js/world/'+country_code_list[index]+'.png')
|
||||
//console.log('fin')
|
||||
//map.fitBounds([bounds])
|
||||
|
||||
}
|
||||
|
||||
index = index + 1
|
||||
delay = (400 + timestamp_list[index])
|
||||
}
|
||||
$('.leaflet-marker-icon').bind('click', function(){
|
||||
console.log('clickkkk')
|
||||
})
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user