Files
iD/modules/svg/turns.js
Bryan Housel 470835b38f Extract all graphics from iD sprite, reassemble with svg-sprite
All iD sprite graphics are now prefixed with `iD-`
Also includes support for sending the preset logos to taginfo
2018-06-08 16:06:46 -04:00

98 lines
2.9 KiB
JavaScript

import { geoAngle, geoPathLength } from '../geo';
export function svgTurns(projection) {
return function drawTurns(selection, graph, turns) {
function icon(turn) {
var u = turn.u ? '-u' : '';
if (turn.no) return '#iD-turn-no' + u;
if (turn.only) return '#iD-turn-only' + u;
return '#iD-turn-yes' + u;
}
var layer = selection.selectAll('.data-layer-osm').selectAll('.layer-turns')
.data([0]);
layer = layer.enter()
.append('g')
.attr('class', 'layer-osm layer-turns')
.merge(layer);
var groups = layer.selectAll('g.turn')
.data(turns, function(d) { return d.key; });
groups.exit()
.remove();
var enter = groups.enter()
.append('g')
.attr('class', function(d) { return 'turn ' + d.key; });
var nEnter = enter
.filter(function(d) { return !d.u; });
nEnter.append('rect')
.attr('transform', 'translate(-22, -12)')
.attr('width', '44')
.attr('height', '24');
nEnter.append('use')
.attr('transform', 'translate(-22, -12)')
.attr('width', '44')
.attr('height', '24');
var uEnter = enter
.filter(function(d) { return d.u; });
uEnter.append('circle')
.attr('r', '16');
uEnter.append('use')
.attr('transform', 'translate(-16, -16)')
.attr('width', '32')
.attr('height', '32');
groups = groups
.merge(enter);
groups
.attr('opacity', function(d) {
return d.direct === false ? '0.7' : null;
})
.attr('transform', function(d) {
var pxRadius = 50;
var toWay = graph.entity(d.to.way);
var toPoints = graph.childNodes(toWay)
.map(function (n) { return n.loc; })
.map(projection);
var toLength = geoPathLength(toPoints);
var mid = toLength / 2; // midpoint of destination way
var toNode = graph.entity(d.to.node);
var toVertex = graph.entity(d.to.vertex);
var a = geoAngle(toVertex, toNode, projection);
var o = projection(toVertex.loc);
var r = d.u ? 0 // u-turn: no radius
: !toWay.__via ? pxRadius // leaf way: put marker at pxRadius
: Math.min(mid, pxRadius); // via way: prefer pxRadius, fallback to mid for very short ways
return 'translate(' + (r * Math.cos(a) + o[0]) + ',' + (r * Math.sin(a) + o[1]) + ') ' +
'rotate(' + a * 180 / Math.PI + ')';
});
groups.select('use')
.attr('xlink:href', icon);
groups.select('rect');
groups.select('circle');
return this;
};
}