Fix accuracy handles

This commit is contained in:
John Firebaugh
2013-01-07 10:08:07 -08:00
parent 57122c8968
commit f8ea7d1e98

View File

@@ -97,11 +97,13 @@ iD.Map = function() {
switch (entity.geometry()) {
case 'line':
entity._line = nodeline(entity);
ways.push(entity);
lines.push(entity);
break;
case 'area':
entity._line = nodeline(entity);
ways.push(entity);
areas.push(entity);
break;