Merge branch '6.7' of github.com:elastic/kibana into 6.7

This commit is contained in:
Sarah Hersh 2019-04-18 10:05:14 -04:00
commit 3872a4e2e8

View file

@ -175,6 +175,9 @@ export function geoShapeToGeometry(value) {
case 'multilinestring':
geoJson.type = 'MultiLineString';
break;
case 'multipolygon':
geoJson.type = 'MultiPolygon';
break;
case 'geometrycollection':
geoJson.type = 'GeometryCollection';
break;