<blankRegions uri>/marked[.<format>]
列举指定切图任务的所有已标记的白图区域信息集。
支持的方法:
支持的表述格式:(rjson、json、html、xml)。
对如下 URI 执行 HTTP 请求,以 rjson 输出格式为例加以说明,其中,supermapiserver 是服务器名。
http://supermapiserver:8090/iserver/manager/tileservice/jobs/7d59376f-f47a-405b-9862-41ac160b8f23/blankregions/marked.rjson
获取指定切图任务的所有已标记的白图区域信息集。请求参数必须放在 URI 中。
名称 | 类型 | 含义 |
scale | double | 【必选参数】 地图的显示比例尺。 |
fromIndex | int | 【可选参数】 返回的查询结果的起始索引号。 |
toIndex | int | 【可选参数】 返回的查询结果的结束索引号。 |
对 markedBlankRegions 资源执行 GET 请求,返回操作结果的表述如下:
字段 | 类型 | 说明 |
blankRegionId | String | 标记的白图区域 id。 |
center | Point2D | 地图显示的中心点。 |
id | int | 几何对象唯一标识符。 |
markType | MarkType | 标记白图区域的类型,INVALID 表示白图区域。 |
parts | int[] | 几何对象中各个子对象所包含的节点个数。 |
points | Point2D[] | 组成几何对象的节点的二维坐标对数组。 |
style | Style | 几何对象的风格。 |
type | GeometryType | 几何对象的类型。 |
对 markedBlankRegions 资源:http://localhost:8090/iserver/manager/tileservice/jobs/7d59376f-f47a-405b-9862-41ac160b8f23/blankregions/marked.rjson?scale=8.333333333333333e-7&fromIndex=0&toIndex=5 执行 GET 请求,返回的 rjson 格式的资源描述如下:
[
{
"blankRegionId": "cc2cc41a-4b0d-438d-8772-9197f7d8b739",
"center": {
"x": 64.60047208233624,
"y": -77.93465247443982
},
"id": 0,
"markType": "INVALID",
"parts": [
372,
5
],
"points": [
{
"x": 52.187910812486344,
"y": -66.25224186752226
},
{
"x": 55.83866412714808,
"y": -66.25224186752226
},
{
"x": 55.83866412714808,
"y": -66.9823925304546
},
{
"x": 114.25071716173584,
"y": -66.9823925304546
},
{
"x": 127.39342909451808,
"y": -66.9823925304546
},
{
"x": 127.39342909451808,
"y": -67.71254319338695
},
{
"x": 0.347213744289709,
"y": -71.36329650804869
},
{
"x": 35.39444556504237,
"y": -69.902995182184
},
{
"x": 37.584897553839404,
"y": -69.902995182184
},
],
"style": null,
"type": "REGION"
},
{
"blankRegionId": "e6f86b92-7718-4bb7-b4f3-ae85a22f51be",
"center": {
"x": 124.83790177425487,
"y": 58.238446162442905
},
"id": 0,
"markType": "INVALID",
"parts": [5],
"points": [
{
"x": 124.4728264427887,
"y": 57.87337083097673
},
{
"x": 124.4728264427887,
"y": 58.60352149390908
},
{
"x": 125.20297710572105,
"y": 58.60352149390908
},
{
"x": 125.20297710572105,
"y": 57.87337083097673
},
{
"x": 124.4728264427887,
"y": 57.87337083097673
}
],
"style": null,
"type": "REGION"
}
]
返回跟 GET 请求一样的 HTTP 响应头,但是没有响应实体。可以在不必传输整个响应内容的情况下,获取包含在响应消息头中的元数据信息。元数据信息包括媒体类型,字符编码,压缩编码,实体内容长度等。
HEAD 请求可以用来判断 markedBlankRegions 资源是否存在,或者客户端是否有权限访问 markedBlankRegions 资源。通过对加.<format>的 URI 执行 HEAD 请求,还可以快速判断 markedBlankRegions 资源是否支持<format>格式的表述。