org.geotools.data.wfs.WFSDataStoreFactory.createGetCapabilitiesRequest()方法的使用及代码示例

x33g5p2x  于2022-02-03 转载在 其他  
字(1.3k)|赞(0)|评价(0)|浏览(87)

本文整理了Java中org.geotools.data.wfs.WFSDataStoreFactory.createGetCapabilitiesRequest()方法的一些代码示例,展示了WFSDataStoreFactory.createGetCapabilitiesRequest()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。WFSDataStoreFactory.createGetCapabilitiesRequest()方法的具体详情如下:
包路径:org.geotools.data.wfs.WFSDataStoreFactory
类名称:WFSDataStoreFactory
方法名:createGetCapabilitiesRequest

WFSDataStoreFactory.createGetCapabilitiesRequest介绍

[英]Creates a HTTP GET Method based WFS GetCapabilities request.

If the query string in the host URL already contains a VERSION number, that version is used, otherwise the queried version will be 1.0.0.

NOTE the default version will be 1.0.0 until the support for 1.1.0 gets stable enough for general use. If you want to use a 1.1.0 WFS you'll have to explicitly provide the VERSION=1.1.0 parameter in the GetCapabilities request meanwhile.
[中]创建基于HTTP GET方法的WFS GetCapabilities请求。
如果主机URL中的查询字符串已包含版本号,则使用该版本,否则查询的版本将为1.0.0。
注意,默认版本将是1.0.0,直到1.1.0的支持变得足够稳定,可以用于一般用途。如果要使用1.1.0 WFS,则必须在GetCapabilities请求中显式提供VERSION=1.1.0参数。

代码示例

代码示例来源:origin: geotools/geotools

return createGetCapabilitiesRequest(host, requestVersion);

代码示例来源:origin: org.geotools/gt-wfs

return createGetCapabilitiesRequest(host, requestVersion);

代码示例来源:origin: org.geotools/gt-wfs-ng

return createGetCapabilitiesRequest(host, requestVersion);

相关文章