Skip to content

Commit

Permalink
#109: Fix bad WFS request URL
Browse files Browse the repository at this point in the history
  • Loading branch information
jumpinjackie committed Nov 10, 2021
1 parent af5a328 commit 914c900
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Maestro.MapPublisher/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -367,7 +367,7 @@ static void InitAppDef(IServerConnection conn, IApplicationDefinition appDef, IS
case OverlayLayerType.WFS:
{
var wov = ((WFSOverlayLayer)ov);
props.source_param_url = $"{wov.Service}?service=WFS&version={wov.WfsVersion ?? "2.0.0"}&request=GetFeatures&typenames={wov.FeatureName}&outputFormat=application/json&srsName=EPSG:3857";
props.source_param_url = $"{wov.Service}?service=WFS&version={wov.WfsVersion ?? "2.0.0"}&request=GetFeature&typenames={wov.FeatureName}&outputFormat=application/json&srsName=EPSG:3857";
}
break;
case OverlayLayerType.WMS:
Expand Down

0 comments on commit 914c900

Please sign in to comment.