官术网_书友最值得收藏!

Using WFS vendor parameters

The previous recipes used standard WFS requests. GeoServer also supports a few optional parameters that you can include in your requests. In this recipe, we will see how to ask GeoServer, which is reprojecting the data from the native SRS to another SRS, to use a vendor parameter.

Reprojection of data is a part of WFS 1.1.0 and 2.0.0, and GeoServer has provided support since 1.0.0 so that you can use it with any WFS version. The following screenshot is what we're targeting in this recipe:

Tip

You can find the full source code for this recipe in the code bundle available from the Packt site for this book; look for the ch01_wfsReprojection.html file.

How to do it…

  1. Copy the file used in the first recipe to the wfsReprojection.html file in the same folder. Insert a new parameter for the Map object:
          projection: "EPSG:3857",
  2. Then, alter the JavaScript part when creating the WFS layer:
            new OpenLayers.Layer.Vector("countries", {
              strategies: [new OpenLayers.Strategy.BBOX()],
              protocol: new OpenLayers.Protocol.WFS({
                url: "http://localhost/geoserver/wfs",
                featureType: "countries",
                featureNS: "http://www.naturalearthdata.com/",
                geometryName: "geom",
  3. Add a parameter to request data reprojection:
              srsName: new OpenLayers.Projection("EPSG:3857"),
              srsNameInQuery: true
            }),
  4. Save the file and point your browser to it. You should get a map that looks like the one shown in the introduction to this recipe.

How it works…

Using a vendor parameter is really straightforward; you just add it to your request. In our recipe, we want to use the countries' data that is stored in the EPSG:4326 projection, which is the geographical coordinates, and in EPSG:3857, which is the planar coordinates. First of all, we set the spatial reference system for the map:

  map = new OpenLayers.Map({
    div: "myMap",
    allOverlays: true,
    projection: "EPSG:3857",

Then, we create the WFS request for data by inserting the srsName parameter and assigning it the same projected coordinate system used for the map. The Boolean parameter srsNameInQuery is really important, as it defaults to false. If you don't set it, OpenLayers will not ask for reprojection when using WFS 1.0.0:

            srsName: new OpenLayers.Projection("EPSG:3857"),
            srsNameInQuery: true

Let's see what happens when you load the page in your browser and the OpenLayers framework creates the WFS request. Use Firebug to capture the XML code sent to GeoServer with the GetFeature request. The Query element contains the srsName parameter that forces GeoServer to project data:

<wfs:Query typeName="feature:countries_1" srsName="EPSG:3857" xmlns:feature="http://www.naturalearthdata.com/">
  <ogc:Filter xmlns:ogc="http://www.opengis.net/ogc">
    <ogc:BBOX>
      <ogc:PropertyName>geom</ogc:PropertyName>
      <gml:Box xmlns:gml="http://www.opengis.net/gml" srsName="EPSG:3857">
        <gml:coordinates decimal="." cs="," ts=" ">-13325909.428711,-3545545.6572266 16025909.428711,14065545.657227</gml:coordinates>
      </gml:Box>
    </ogc:BBOX>
  </ogc:Filter>
</wfs:Query>
主站蜘蛛池模板: 浦东新区| 边坝县| 乌拉特后旗| 潮安县| 岱山县| 碌曲县| 西乌珠穆沁旗| 松桃| 从化市| 吴桥县| 孟州市| 壤塘县| 扎兰屯市| 将乐县| 莱州市| 渝北区| 八宿县| 尉犁县| 白城市| 丰城市| 秭归县| 京山县| 临沭县| 杨浦区| 如东县| 准格尔旗| 墨竹工卡县| 五峰| 台南县| 南投县| 屯门区| 澄江县| 西林县| 筠连县| 鲁山县| 玉田县| 横山县| 苍溪县| 仙桃市| 楚雄市| 自治县|