mirror of
https://github.com/FoggedLens/iD.git
synced 2026-02-14 09:42:56 +00:00
111 lines
3.6 KiB
JavaScript
111 lines
3.6 KiB
JavaScript
iD.svg = {
|
|
RoundProjection: function(projection) {
|
|
return function(d) {
|
|
return iD.geo.roundCoords(projection(d));
|
|
};
|
|
},
|
|
|
|
PointTransform: function(projection) {
|
|
return function(entity) {
|
|
// http://jsperf.com/short-array-join
|
|
var pt = projection(entity.loc);
|
|
return 'translate(' + pt[0] + ',' + pt[1] + ')';
|
|
};
|
|
},
|
|
|
|
Round: function () {
|
|
return d3.geo.transform({
|
|
point: function(x, y) { return this.stream.point(Math.floor(x), Math.floor(y)); }
|
|
});
|
|
},
|
|
|
|
Path: function(projection, graph, polygon) {
|
|
var cache = {},
|
|
round = iD.svg.Round().stream,
|
|
clip = d3.geo.clipExtent().extent(projection.clipExtent()).stream,
|
|
project = projection.stream,
|
|
path = d3.geo.path()
|
|
.projection({stream: function(output) { return polygon ? project(round(output)) : project(clip(round(output))); }});
|
|
|
|
return function(entity) {
|
|
if (entity.id in cache) {
|
|
return cache[entity.id];
|
|
} else {
|
|
return cache[entity.id] = path(entity.asGeoJSON(graph)); // jshint ignore:line
|
|
}
|
|
};
|
|
},
|
|
|
|
OneWaySegments: function(projection, graph, dt) {
|
|
return function(entity) {
|
|
var a,
|
|
b,
|
|
i = 0,
|
|
offset = dt,
|
|
segments = [],
|
|
clip = d3.geo.clipExtent().extent(projection.clipExtent()).stream,
|
|
coordinates = graph.childNodes(entity).map(function(n) {
|
|
return n.loc;
|
|
});
|
|
|
|
if (entity.tags.oneway === '-1') coordinates.reverse();
|
|
|
|
d3.geo.stream({
|
|
type: 'LineString',
|
|
coordinates: coordinates
|
|
}, projection.stream(clip({
|
|
lineStart: function() {},
|
|
lineEnd: function() {
|
|
a = null;
|
|
},
|
|
point: function(x, y) {
|
|
b = [x, y];
|
|
|
|
if (a) {
|
|
var span = iD.geo.euclideanDistance(a, b) - offset;
|
|
|
|
if (span >= 0) {
|
|
var angle = Math.atan2(b[1] - a[1], b[0] - a[0]),
|
|
dx = dt * Math.cos(angle),
|
|
dy = dt * Math.sin(angle),
|
|
p = [a[0] + offset * Math.cos(angle),
|
|
a[1] + offset * Math.sin(angle)];
|
|
|
|
var segment = 'M' + a[0] + ',' + a[1] +
|
|
'L' + p[0] + ',' + p[1];
|
|
|
|
for (span -= dt; span >= 0; span -= dt) {
|
|
p[0] += dx;
|
|
p[1] += dy;
|
|
segment += 'L' + p[0] + ',' + p[1];
|
|
}
|
|
|
|
segment += 'L' + b[0] + ',' + b[1];
|
|
segments.push({id: entity.id, index: i, d: segment});
|
|
}
|
|
|
|
offset = -span;
|
|
i++;
|
|
}
|
|
|
|
a = b;
|
|
}
|
|
})));
|
|
|
|
return segments;
|
|
};
|
|
},
|
|
|
|
MultipolygonMemberTags: function(graph) {
|
|
return function(entity) {
|
|
var tags = entity.tags;
|
|
graph.parentRelations(entity).forEach(function(relation) {
|
|
if (relation.isMultipolygon()) {
|
|
tags = _.extend({}, relation.tags, tags);
|
|
}
|
|
});
|
|
return tags;
|
|
};
|
|
}
|
|
};
|