<services_uri>/{component}/rest[.<format>]
<services_uri>/{component}/googlerest[.<format>]
<services_uri>/{component}/arcgisrest[.<format>]
<services_uri>/{component}/baidurest[.<format>]
<services_uri>/{component}/osmrest[.<format>]
<services_uri>/{component}/tmsrest[.<format>]
<services_uri>/{component}/restjsr[.<format>]
<services_uri>/{component}/dataflow[.<format>]
{component}/rest中,{component}可以是组件名,也可以是组件集名,REST API 中对每个模块都使用了对应的组件名,对应 SuperMap iServer 默认发布的服务。
3D、address、data、dataCatalog、dataHistory、dataflow、facilityAnalyst3D、geometry、geoprocessing、maps、machinelearning、networkAnalyst、processingJobs、plot、spatialAnalyst、trafficTransferAnalyst、vectorTile、webPrinting
root 资源是 SuperMap iServer 提供的各个 REST 服务的根节点,是访问各 GIS 服务的入口。其中,{component}是组件或组件集名,表示 REST 服务的来源。SuperMap iServer 默认发布的服务中,包含所有 REST 服务的根目录 URI 为:
http://<server>:<port>/iserver/services/components-rest/rest[.<format>]
其中 components-rest 是组件集名,它包含了 map、data、3D 等组件。
支持的方法:
支持的表述格式:RJSON、JSON、HTML、XML。
对如下 URI 执行 HTTP 请求,以 rjson 输出格式为例加以说明,其中,supermapiserver 是服务器名。
http://supermapiserver:8090/iserver/services/components-rest/rest.rjson
获取 root 资源的表述,即获取当前服务的入口。
对 root 资源执行 GET 请求,在响应消息的实体主体里是一个资源描述集,其中单个资源描述的结构如下:
字段 | 类型 | 说明 |
name | String | 资源名称。 |
path | String | 资源的访问路径。 |
resourceConfigID | String | 资源配置项 ID。 |
resourceType | String | 资源类型。 |
supportedMediaTypes | String[] | 支持的表述的媒体类型。 |
对 root 资源:http://supermapiserver:8090/iserver/services/components-rest/rest.rjson 执行 GET 请求,返回 rjson 格式的资源描述如下:
[
{
"name": "maps",
"path": "http://supermapiserver:8090/iserver/services/components-rest/rest/maps",
"resourceConfigID": "maps",
"resourceType": "CatalogList",
"supportedMediaTypes": [
"application/xml",
"text/xml",
"application/json",
"application/rjson",
"text/html"
]
},
{
"name": "realspace",
"path": "http://supermapiserver:8090/iserver/services/components-rest/rest/realspace",
"resourceConfigID": "realspace",
"resourceType": "CatalogList",
"supportedMediaTypes": [
"application/xml",
"text/xml",
"application/json",
"application/rjson",
"text/html"
]
},
{
"name": "data",
"path": "http://supermapiserver:8090/iserver/services/components-rest/rest/data",
"resourceConfigID": "data",
"resourceType": "CatalogList",
"supportedMediaTypes": [
"application/xml",
"text/xml",
"application/json",
"application/rjson",
"text/html"
]
}
]
返回跟 GET 请求一样的 HTTP 响应头,但是没有响应实体。可以在不必传输整个响应内容的情况下,获取包含在响应消息头中的元数据信息。元数据信息包括媒体类型,字符编码,压缩编码,实体内容长度等。
HEAD 请求可以用来判断 root 资源是否存在,或者客户端是否有权限访问 root 资源。通过对加.<format>的 URI 执行 HEAD 请求,还可以快速判断 root 资源是否支持<format>格式的表述。