本文整理了Java中org.geotools.data.wfs.WFSDataStoreFactory.createGetCapabilitiesRequest()
方法的一些代码示例,展示了WFSDataStoreFactory.createGetCapabilitiesRequest()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。WFSDataStoreFactory.createGetCapabilitiesRequest()
方法的具体详情如下:
包路径:org.geotools.data.wfs.WFSDataStoreFactory
类名称: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);
内容来源于网络,如有侵权,请联系作者删除!