mirror of
https://github.com/FoggedLens/iD.git
synced 2026-02-14 09:42:56 +00:00
11 lines
320 B
JavaScript
11 lines
320 B
JavaScript
export function svgOsm() {
|
|
return function drawOsm(selection) {
|
|
var layers = selection.selectAll('.layer-osm')
|
|
.data(['areas', 'lines', 'hit', 'halo', 'label']);
|
|
|
|
layers.enter()
|
|
.append('g')
|
|
.attr('class', function(d) { return 'layer-osm layer-' + d; });
|
|
};
|
|
}
|