Looking back, I realize I forgot to mention an easy way to help ordinary web clients find and tap into WMS from a feed: HTML forms. Here's a feed entry representing a form:
<entry> <title>GetMap Form</title> <summary>Easy entry point to a web map service</summary> <link rel="alternate" type="text/html" href="http://example.com/getmap-form.html" /> ... </entry>
where getmap-form.html is:
<html> ... <form method="GET" action="http://example.com/wms"> <input type="hidden" name="service" value="WMS"/> <input type="hidden" name="request" value="GetMap"/> <input type="text" name="layers" value="layer1,layer2"/> <input type="text" name="bbox" value="-180.0,-90.0,180.0,90.0"/> ... </form> </html>
For a more concrete (though not exactly WMS) example, see this form.
Comments are closed after 13 days.
Some rights reserved 2008 by Sean Gillies.
1Re: More WxS Hinting From Feeds
Jeroen Ticheler, 2008-03-10T08:39:45Z