GeoServer Version
2.21.1
一、WMS 服务
-
获取服务能力元数据:
-
可在网址中指定
version=1.1.0
和service=WMS
参数 -
获取整个
geoserver
的服务能力,默认WMS_Capabilities
的version
是 1.3.0 的http://172.16.17.127:8066/geoserver/wms?request=getCapabilities
http://172.16.17.127:8066/geoserver/wms?request=getCapabilities&version=1.1.0
-
获取其中某个工作空间的服务能力,需要在
geoserver
后面添加工作空间名称http://172.16.17.127:8066/geoserver/cite/wms?request=getCapabilities&version=1.1.0
-
注意:
- 1.3.0 版本的空间参考标签为
<CRS>
,而 1.1.0 版本的空间参考标签为<SRS>
- 如果请求的网址指定了工作空间,图层名中就不需要有工作空间名了(比如:
cite:hl_2017
和hl_2017
) - 1.1.0 版本的图层中包含
geoserver
以图层组方式发布的服务图层,而 1.3.0 版本中就没有了
- 1.3.0 版本的空间参考标签为
-
-
GeoServer WMS
服务网址请求示例:-
bbox、width、height、format、srs(version=1.3.0 时为 crs)
为必选参数,styles
参数不是必选 -
OpenLayers
方式浏览:不指定工作空间: http://172.16.17.127:8066/geoserver/wms?service=WMS&version=1.1.0&request=GetMap&layers=cite:hl_2017&bbox=3.751160022702132E7%2C4433325.154871847%2C3.757928272385144E7%2C4531336.518872064&width=530&height=768&srs=EPSG%3A4525&styles=&format=application/openlayers 指定工作空间: http://172.16.17.127:8066/geoserver/cite/wms?service=WMS&version=1.1.0&request=GetMap&layers=hl_2017&bbox=3.751160022702132E7%2C4433325.154871847%2C3.757928272385144E7%2C4531336.518872064&width=530&height=768&srs=EPSG%3A4525&styles=&format=application/openlayers
-
JPEG
格式浏览:不指定工作空间: http://172.16.17.127:8066/geoserver/wms?service=WMS&version=1.1.0&request=GetMap&layers=cite:hl_2017&bbox=3.751160022702132E7%2C4433325.154871847%2C3.757928272385144E7%2C4531336.518872064&width=530&height=768&srs=EPSG%3A4525&styles=&format=image/jpeg 指定工作空间: http://172.16.17.127:8066/geoserver/cite/wms?service=WMS&version=1.1.0&request=GetMap&layers=hl_2017&bbox=3.751160022702132E7%2C4433325.154871847%2C3.757928272385144E7%2C4531336.518872064&width=530&height=768&srs=EPSG%3A4525&styles=&format=image/jpeg
-
PNG
格式浏览:不指定工作空间: http://172.16.17.127:8066/geoserver/wms?service=WMS&version=1.1.0&request=GetMap&layers=cite:FHZTGHXZ&bbox=111.37794952600007%2C40.405213106000076%2C111.94963258800004%2C40.86023666700006&width=768&height=611&srs=EPSG%3A4326&styles=&format=image/png 指定工作空间: http://172.16.17.127:8066/geoserver/cite/wms?service=WMS&version=1.1.0&request=GetMap&layers=FHZTGHXZ&bbox=111.37794952600007%2C40.405213106000076%2C111.94963258800004%2C40.86023666700006&width=768&height=611&srs=EPSG%3A4326&styles=&format=image/png ···
-
-
平台组织的
WMS
请求网址http://172.16.17.127:8066/geoserver/cite/wms?service=WMS&version=1.1.0&request=GetMap&layers=hl_2017&srs=EPSG:4326&format=png&width=256&height=256&styles=&bbox=111.37794952600007%2C40.405213106000076%2C111.94963258800004%2C40.86023666700006
二、WMTS 服务
-
获取服务能力的元数据:
-
瓦片访问示例:
-
GeoServer 发布 ArcGIS 切片服务的过程参考这里,返回的 xml 样例访问示例如下:
getCapabilities 请求 1.0.0 版本的包含 ArcGIS 切片服务的
xml
样例注意:tilematrixset 参数与通过 GeoServer 发布的 WMTS 服务有所不同
-
平台组织的
WMTS
请求网址:http://localhost:8080/geoserver/gwc/service/wmts?service=WMTS&version=1.0.0&request=GetTile&layer=test&tilematrixset=EPSG:4490_test&format=image/jpeg&tileMatrix=EPSG:4490_test:3&tileRow=6&tileCol=8
三、GeoServer
-
管理界面:
-
存储仓库:数据的存放目录
-
工作空间:类似 mxd 文档,对图层进行组织
-
图层:地图数据
-
图层组:功能类似工作空间,可以添加多个图层的数据
参考: