-
-
Notifications
You must be signed in to change notification settings - Fork 860
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
Encode boolean values as uppercase string in WMS request. #1132
Conversation
Handle WMS server that only accepts boolean values as uppercase strings.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Feels ok to me.
Forgive me if I'm wrong, but couldn't you just pass in the boolean string as uppercase anyway? |
I think currently it would have to be a bool rather than a string, and hence toString would be lowercase if I'm not mistaken (quite possible). |
@@ -349,6 +349,9 @@ class WMSTileLayerOptions { | |||
/// tile transparency flag | |||
final bool transparent; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@ibrierley @stou Ah yes, I see now :)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM. Just waiting on maintainers to return or people to be given write access. See #1117.
@stou Please pull upstream when possible, then I (or another maintainer) can merge. |
@JaffaKetchup I have merged in the latest. Looks like the analysis and tests passes now :-) |
Handle WMS server that only accepts boolean values as uppercase strings.