diff --git a/packages/geo/src/lib/datasource/shared/datasources/wms-wfs.utils.ts b/packages/geo/src/lib/datasource/shared/datasources/wms-wfs.utils.ts index 737eda4f19..2b2bb57f0c 100644 --- a/packages/geo/src/lib/datasource/shared/datasources/wms-wfs.utils.ts +++ b/packages/geo/src/lib/datasource/shared/datasources/wms-wfs.utils.ts @@ -159,6 +159,9 @@ export function getFormatFromOptions( } else if (outputFormat.toLowerCase().match('esrijson')) { olFormatCls = OlFormat.EsriJSON; return new olFormatCls(); + } else if (outputFormat.toLowerCase().match('json')) { + olFormatCls = OlFormat.GeoJSON; + return new olFormatCls(); } else if (outputFormat.toLowerCase().match('gpx')) { olFormatCls = OlFormat.GPX; return new olFormatCls();