diff --git a/js/id/svg/points.js b/js/id/svg/points.js index a7fdb10fe..838faf2bb 100644 --- a/js/id/svg/points.js +++ b/js/id/svg/points.js @@ -52,6 +52,7 @@ iD.svg.Points = function(projection) { // sets the data (point entity) on the element groups.select('image') .attr('xlink:href', imageHref); + groups.select('.shadow, .stroke'); groups.exit() .remove(); diff --git a/js/id/svg/vertices.js b/js/id/svg/vertices.js index e9769a374..339c0752a 100644 --- a/js/id/svg/vertices.js +++ b/js/id/svg/vertices.js @@ -40,8 +40,7 @@ iD.svg.Vertices = function(projection) { // Selecting the following implicitly // sets the data (vertix entity) on the elements - groups.select('circle.fill'); - groups.select('circle.stroke'); + groups.select('circle.fill, circle.stroke, circle.shadow'); groups.exit() .remove();