OpenLayers – Implementing WPS Client in OpenLayers 3

openlayersopenlayers-2wpswpsclient

Is it possible (and what is the recommended way) to use OpenLayers 3 to do the work of theOpenLayers.WPSClient?

As shown in the old WPS client example, OpenLayers 2 can be used to operate WPS.

There are OpenLayers 3 examples for using other web services like WFS and WMS, but not WPS (as of 3.2.1).

Is this temporary or by design?

Best Answer

As part of the WPS-GUI project that I did I created a WPS client "library" that closely models after the OpenLayers 2 interface. It uses JSONIX for the all OGC XML marshalling and unmarshalling.

You can check it out here:

https://github.com/boundlessgeo/wps-gui/blob/master/src/wpsclient.js

Related Question