Fix issue where extracting points could results in off placements (close #8246)

This commit is contained in:
Quincy Morgan
2020-12-11 12:50:32 -05:00
parent b3ad282f40
commit 0a0e2dcf75
5 changed files with 9 additions and 10 deletions
+1 -1
View File
@@ -29,7 +29,7 @@ export function operationExtract(context, selectedIDs) {
_extent = _extent ? _extent.extend(entity.extent(graph)) : entity.extent(graph);
return actionExtract(entityID);
return actionExtract(entityID, context.projection);
}).filter(Boolean);