mirror of
https://github.com/FoggedLens/iD.git
synced 2026-03-13 06:36:28 +00:00
10 lines
304 B
JavaScript
10 lines
304 B
JavaScript
export function Osm() {
|
|
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; });
|
|
};
|
|
}
|