From 1ed8a56031ab223e6fc260b538706343820fdb81 Mon Sep 17 00:00:00 2001 From: Nils Schneider Date: Fri, 17 Apr 2015 22:27:24 +0200 Subject: [PATCH] map: move clientlayer to lib/map/ --- lib/map.js | 67 ++---------------------------------------- lib/map/clientlayer.js | 63 +++++++++++++++++++++++++++++++++++++++ 2 files changed, 66 insertions(+), 64 deletions(-) create mode 100644 lib/map/clientlayer.js diff --git a/lib/map.js b/lib/map.js index f296872..7149ecb 100644 --- a/lib/map.js +++ b/lib/map.js @@ -1,71 +1,10 @@ -define(["d3", "leaflet", "moment", "locationmarker", "leaflet.label", - "leaflet.providers"], - function (d3, L, moment, LocationMarker) { +define(["map/clientlayer", "d3", "leaflet", "moment", "locationmarker", + "leaflet.label", "leaflet.providers"], + function (ClientLayer, d3, L, moment, LocationMarker) { var options = { worldCopyJump: true, zoomControl: false } - var ClientLayer = L.TileLayer.Canvas.extend({ - setData: function (d) { - this.data = d - this.redraw() - }, - drawTile: function (canvas, tilePoint) { - if (!this.data) - return - - var tileSize = this.options.tileSize - var s = tilePoint.multiplyBy(tileSize) - var map = this._map - - function project(coords) { - var p = map.project(new L.LatLng(coords[0], coords[1])) - return {x: p.x - s.x, y: p.y - s.y} - } - - var nodes = this.data - var ctx = canvas.getContext("2d") - var margin = 50 - - ctx.beginPath() - nodes.forEach(function (d) { - var p = project([d.nodeinfo.location.latitude, d.nodeinfo.location.longitude]) - if (p.x + margin < 0 || p.y + margin < 0 || p.x - tileSize - margin > 0 || p.y - tileSize - margin > 0) - return - - var clients = d.statistics.clients - if (d.clients === 0) - return - - var distance = 12 - var radius = 3 - var a = 1.2 - var startAngle = Math.PI - var angle = startAngle - - for (var i = 0; i < clients; i++) { - if ((angle - startAngle) > 2 * Math.PI) { - angle = startAngle - distance += 2 * radius * a - } - - var x = p.x + distance * Math.cos(angle) - var y = p.y + distance * Math.sin(angle) - - ctx.moveTo(x, y) - ctx.arc(x, y, radius, 0, 2 * Math.PI) - - var n = Math.floor((Math.PI * distance) / (a * radius)) - var angleDelta = 2 * Math.PI / n - angle += angleDelta - } - }) - - ctx.fillStyle = "#294D66" - ctx.fill() - } - }) - var AddLayerButton = L.Control.extend({ options: { position: "bottomright" diff --git a/lib/map/clientlayer.js b/lib/map/clientlayer.js new file mode 100644 index 0000000..0019adc --- /dev/null +++ b/lib/map/clientlayer.js @@ -0,0 +1,63 @@ +define(["leaflet"], + function (L) { + return L.TileLayer.Canvas.extend({ + setData: function (d) { + this.data = d + this.redraw() + }, + drawTile: function (canvas, tilePoint) { + if (!this.data) + return + + var tileSize = this.options.tileSize + var s = tilePoint.multiplyBy(tileSize) + var map = this._map + + function project(coords) { + var p = map.project(new L.LatLng(coords[0], coords[1])) + return {x: p.x - s.x, y: p.y - s.y} + } + + var nodes = this.data + var ctx = canvas.getContext("2d") + var margin = 50 + + ctx.beginPath() + nodes.forEach(function (d) { + var p = project([d.nodeinfo.location.latitude, d.nodeinfo.location.longitude]) + if (p.x + margin < 0 || p.y + margin < 0 || p.x - tileSize - margin > 0 || p.y - tileSize - margin > 0) + return + + var clients = d.statistics.clients + if (d.clients === 0) + return + + var distance = 12 + var radius = 3 + var a = 1.2 + var startAngle = Math.PI + var angle = startAngle + + for (var i = 0; i < clients; i++) { + if ((angle - startAngle) > 2 * Math.PI) { + angle = startAngle + distance += 2 * radius * a + } + + var x = p.x + distance * Math.cos(angle) + var y = p.y + distance * Math.sin(angle) + + ctx.moveTo(x, y) + ctx.arc(x, y, radius, 0, 2 * Math.PI) + + var n = Math.floor((Math.PI * distance) / (a * radius)) + var angleDelta = 2 * Math.PI / n + angle += angleDelta + } + }) + + ctx.fillStyle = "#294D66" + ctx.fill() + } + }) +})