Make vertex tag edits show up in inspector

This commit is contained in:
Ansis Brammanis
2013-01-09 16:45:03 -05:00
parent e781c02863
commit 1eb5744b8d
+7
View File
@@ -175,6 +175,11 @@ iD.Map = function() {
circles.attr('transform', pointTransform)
.classed('shared', shared);
// Selecting the following implicitly
// sets the data (vertix entity) on the elements
circles.select('circle.fill');
circles.select('circle.stroke');
}
function drawAccuracyHandles(waynodes, filter) {
@@ -243,6 +248,8 @@ iD.Map = function() {
groups.attr('transform', pointTransform);
// Selecting the following implicitly
// sets the data (point entity) on the element
groups.select('image').attr('xlink:href', iD.Style.pointImage);
}