From de0266ded7229fadaf1796114c9041edbfedda7c Mon Sep 17 00:00:00 2001 From: Pierre GIRAUD Date: Thu, 12 Feb 2015 14:15:29 +0100 Subject: [PATCH] Add stroke to default editing style for geometry collections --- src/ol/style/style.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/ol/style/style.js b/src/ol/style/style.js index da9d60ea6b..23ff4c84fe 100644 --- a/src/ol/style/style.js +++ b/src/ol/style/style.js @@ -347,6 +347,7 @@ ol.style.createDefaultEditingStyles = function() { styles[ol.geom.GeometryType.GEOMETRY_COLLECTION] = styles[ol.geom.GeometryType.POLYGON].concat( + styles[ol.geom.GeometryType.LINE_STRING], styles[ol.geom.GeometryType.POINT] );