mirror of
https://github.com/FoggedLens/iD.git
synced 2026-02-12 16:52:50 +00:00
13 lines
327 B
JavaScript
13 lines
327 B
JavaScript
export function svgTouch() {
|
|
|
|
function drawTouch(selection) {
|
|
selection.selectAll('.layer-touch')
|
|
.data(['areas', 'lines', 'points', 'turns', 'markers'])
|
|
.enter()
|
|
.append('g')
|
|
.attr('class', function(d) { return 'layer-touch ' + d; });
|
|
}
|
|
|
|
return drawTouch;
|
|
}
|