2015-06-01 22:36:10 +02:00
|
|
|
define(["leaflet", "jshashes"],
|
|
|
|
function (L, jsHashes) {
|
|
|
|
var MD5 = new jsHashes.MD5()
|
|
|
|
|
2015-04-17 22:27:24 +02:00
|
|
|
return L.TileLayer.Canvas.extend({
|
|
|
|
setData: function (d) {
|
|
|
|
this.data = d
|
2015-06-01 22:36:10 +02:00
|
|
|
|
|
|
|
//pre-calculate start angles
|
|
|
|
this.data.all().forEach(function (d) {
|
|
|
|
var hash = MD5.hex(d.node.nodeinfo.node_id)
|
|
|
|
d.startAngle = (parseInt(hash.substr(0, 2), 16) / 255) * 2 * Math.PI
|
|
|
|
})
|
2015-04-17 22:27:24 +02:00
|
|
|
this.redraw()
|
|
|
|
},
|
|
|
|
drawTile: function (canvas, tilePoint) {
|
2015-04-19 12:22:09 +02:00
|
|
|
function getTileBBox(s, map, tileSize, margin) {
|
|
|
|
var tl = map.unproject([s.x - margin, s.y - margin])
|
|
|
|
var br = map.unproject([s.x + margin + tileSize, s.y + margin + tileSize])
|
|
|
|
|
|
|
|
return [br.lat, tl.lng, tl.lat, br.lng]
|
|
|
|
}
|
|
|
|
|
2015-04-17 22:27:24 +02:00
|
|
|
if (!this.data)
|
|
|
|
return
|
|
|
|
|
|
|
|
var tileSize = this.options.tileSize
|
|
|
|
var s = tilePoint.multiplyBy(tileSize)
|
|
|
|
var map = this._map
|
|
|
|
|
2015-04-19 12:22:09 +02:00
|
|
|
var margin = 50
|
|
|
|
var bbox = getTileBBox(s, map, tileSize, margin)
|
|
|
|
|
|
|
|
var nodes = this.data.search(bbox)
|
|
|
|
|
|
|
|
if (nodes.length === 0)
|
|
|
|
return
|
2015-04-17 22:27:24 +02:00
|
|
|
|
|
|
|
var ctx = canvas.getContext("2d")
|
2015-04-19 12:22:09 +02:00
|
|
|
|
|
|
|
var radius = 3
|
|
|
|
var a = 1.2
|
2015-04-19 13:05:23 +02:00
|
|
|
var startDistance = 12
|
2015-04-17 22:27:24 +02:00
|
|
|
|
|
|
|
ctx.beginPath()
|
|
|
|
nodes.forEach(function (d) {
|
2015-04-19 12:22:09 +02:00
|
|
|
var p = map.project([d.node.nodeinfo.location.latitude, d.node.nodeinfo.location.longitude])
|
|
|
|
var clients = d.node.statistics.clients
|
|
|
|
|
|
|
|
if (clients === 0)
|
|
|
|
return
|
|
|
|
|
|
|
|
p.x -= s.x
|
|
|
|
p.y -= s.y
|
|
|
|
|
2015-06-27 01:37:36 +02:00
|
|
|
for (var orbit = 0, i = 0; i < clients; orbit++) {
|
|
|
|
var distance = startDistance + orbit * 2 * radius * a
|
|
|
|
var n = Math.floor((Math.PI * distance) / (a * radius))
|
|
|
|
var delta = clients - i
|
2015-04-19 12:22:09 +02:00
|
|
|
|
2015-06-27 01:37:36 +02:00
|
|
|
for (var j = 0; j < Math.min(delta, n); i++, j++) {
|
|
|
|
var angle = 2 * Math.PI / n * j
|
|
|
|
var x = p.x + distance * Math.cos(angle + d.startAngle)
|
|
|
|
var y = p.y + distance * Math.sin(angle + d.startAngle)
|
2015-04-19 12:22:09 +02:00
|
|
|
|
2015-06-27 01:37:36 +02:00
|
|
|
ctx.moveTo(x, y)
|
|
|
|
ctx.arc(x, y, radius, 0, 2 * Math.PI)
|
|
|
|
}
|
2015-04-19 12:22:09 +02:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
ctx.fillStyle = "rgba(153, 118, 16, 0.5)"
|
|
|
|
ctx.fill()
|
|
|
|
}
|
2015-04-17 22:27:24 +02:00
|
|
|
})
|
|
|
|
})
|