mirror of
https://github.com/FoggedLens/iD.git
synced 2026-04-29 07:06:04 +02:00
7f35ab6125
(for consistency)
10 lines
296 B
JavaScript
10 lines
296 B
JavaScript
iD.svg.Surface = function() {
|
|
return function (selection) {
|
|
var layers = selection.selectAll('.layer')
|
|
.data(['areas', 'lines', 'hit', 'halo', 'label']);
|
|
|
|
layers.enter().append('g')
|
|
.attr('class', function(d) { return 'layer layer-' + d; });
|
|
};
|
|
};
|