mirror of
https://github.com/FoggedLens/iD.git
synced 2026-03-01 08:53:41 +00:00
119 lines
3.8 KiB
JavaScript
119 lines
3.8 KiB
JavaScript
iD.svg.Surface = function(context) {
|
|
function autosize(image) {
|
|
var img = document.createElement('img');
|
|
img.src = image.attr('xlink:href');
|
|
img.onload = function() {
|
|
image.attr({
|
|
width: img.width,
|
|
height: img.height
|
|
});
|
|
};
|
|
}
|
|
|
|
function SpriteDefinition(id, href, data) {
|
|
return function(defs) {
|
|
defs.append('image')
|
|
.attr('id', id)
|
|
.attr('xlink:href', href)
|
|
.call(autosize);
|
|
|
|
defs.selectAll()
|
|
.data(data)
|
|
.enter().append('use')
|
|
.attr('id', function(d) { return d.key; })
|
|
.attr('transform', function(d) { return "translate(-" + d.value[0] + ",-" + d.value[1] + ")"; })
|
|
.attr('xlink:href', '#' + id);
|
|
};
|
|
}
|
|
|
|
return function drawSurface(selection) {
|
|
var defs = selection.append('defs');
|
|
|
|
defs.append('marker')
|
|
.attr({
|
|
id: 'oneway-marker',
|
|
viewBox: '0 0 10 10',
|
|
refY: 2.5,
|
|
refX: 5,
|
|
markerWidth: 2,
|
|
markerHeight: 2,
|
|
orient: 'auto'
|
|
})
|
|
.append('path')
|
|
.attr('d', 'M 5 3 L 0 3 L 0 2 L 5 2 L 5 0 L 10 2.5 L 5 5 z');
|
|
|
|
var patterns = defs.selectAll('pattern')
|
|
.data([
|
|
// pattern name, pattern image name
|
|
['wetland', 'wetland'],
|
|
['construction', 'construction'],
|
|
['cemetery', 'cemetery'],
|
|
['orchard', 'orchard'],
|
|
['farmland', 'farmland'],
|
|
['beach', 'dots'],
|
|
['scrub', 'dots'],
|
|
['meadow', 'dots']])
|
|
.enter()
|
|
.append('pattern')
|
|
.attr({
|
|
id: function(d) { return 'pattern-' + d[0]; },
|
|
width: 32,
|
|
height: 32,
|
|
patternUnits: 'userSpaceOnUse'
|
|
});
|
|
|
|
patterns.append('rect')
|
|
.attr({
|
|
x: 0,
|
|
y: 0,
|
|
width: 32,
|
|
height: 32,
|
|
'class': function(d) { return 'pattern-color-' + d[0]; }
|
|
});
|
|
|
|
patterns.append('image')
|
|
.attr({
|
|
x: 0,
|
|
y: 0,
|
|
width: 32,
|
|
height: 32
|
|
})
|
|
.attr('xlink:href', function(d) { return context.imagePath('pattern/' + d[1] + '.png'); });
|
|
|
|
defs.selectAll()
|
|
.data([12, 18, 20])
|
|
.enter().append('clipPath')
|
|
.attr('id', function(d) { return 'clip-square-' + d; })
|
|
.append('rect')
|
|
.attr('x', 0)
|
|
.attr('y', 0)
|
|
.attr('width', function(d) { return d; })
|
|
.attr('height', function(d) { return d; });
|
|
|
|
var maki = [];
|
|
_.forEach(iD.data.featureIcons, function(dimensions, name) {
|
|
if (dimensions['12'] && dimensions['18'] && dimensions['24']) {
|
|
maki.push({key: 'maki-' + name + '-12', value: dimensions['12']});
|
|
maki.push({key: 'maki-' + name + '-18', value: dimensions['18']});
|
|
maki.push({key: 'maki-' + name + '-24', value: dimensions['24']});
|
|
}
|
|
});
|
|
|
|
defs.call(SpriteDefinition(
|
|
'sprite',
|
|
context.imagePath('sprite.svg'),
|
|
d3.entries(iD.data.operations)));
|
|
|
|
defs.call(SpriteDefinition(
|
|
'maki-sprite',
|
|
context.imagePath('maki-sprite.png'),
|
|
maki));
|
|
|
|
var layers = selection.selectAll('.layer')
|
|
.data(['fill', 'shadow', 'casing', 'stroke', 'oneway', 'hit', 'halo', 'label']);
|
|
|
|
layers.enter().append('g')
|
|
.attr('class', function(d) { return 'layer layer-' + d; });
|
|
};
|
|
};
|