-
Notifications
You must be signed in to change notification settings - Fork 299
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Enable vendor-specific parameter(s) for WMS source #959
Comments
Good remark ! This seems simple to patch in the current I quickly read the geoserver documentation, I didn't see any dynamic parameter, can you confirm that ? |
Please find below possible use-cases of utilizing GeoServer-specific WMS vendor parameters:
Produces:
Produces:
|
Yes, I fully agree, in first I also intended to code down |
Many map servers provide their own, vendor-specific URL parameters when handling WMS calls. Such parameters are out of standard Web Map Service specification, but contribute large amount during actual implementation. A good example of such parameters is in the GeoServer documentation: https://docs.geoserver.org/latest/en/user/services/wms/vendor.html Solves iTowns#959
Besides WMS, WFS source may also benefit from vendor-specific parameters: GeoServer WFS documentation |
Ok, extending it to |
Many map servers provide their own, vendor-specific URL parameters when handling WMS calls. Such parameters are out of standard Web Map Service specification, but contribute large amount during actual implementation. A good example of such parameters is in the GeoServer documentation: https://docs.geoserver.org/latest/en/user/services/wms/vendor.html Solves iTowns#959
Many map servers provide their own, vendor-specific URL parameters when handling WMS calls. Such parameters are out of standard Web Map Service specification, but contribute large amount during actual implementation. A good example of such parameters is in the GeoServer documentation: https://docs.geoserver.org/latest/en/user/services/wms/vendor.html Solves #959
Solved in #973 |
Many map servers provide their own, vendor-specific URL parameters when handling WMS calls. Such parameters are out of standard Web Map Service specification, but contribute large amount during actual implementation. It would be of much help if
WMSSource
supported such capability viavendorSpecific
property containing an array of name/value pairs (if any) being added to resulting GetMap URL call. Default value forvendorSpecific
property would be, naturally, empty array. So, instead of writing a custom, JavaScript-based vendor-specific WMS source, an additional property to existing class would do the job.Good example for this is GeoServer's WMS service and related vendor-specific parameters. GeoServer comes bundled with GeoWebCache, providing WMTS capability and caching out of the box. To be able to utilize GWC's GridSet functionality via "classic" WMS GetMap call, additional parameters (TILED, TILESORIGIN) are required. There are many other vendor-specific parameters available for GeoServer's WMS service.
The text was updated successfully, but these errors were encountered: