WMTS 1.0.0
WMTS接口支持的三类资源:
GetCapabitities: 一个服务元数据(ServiceMetadata)资源(面向过程架构风格下对GetCapabilities操作的响应)(服务器方必须实现)。 ServiceMetadata资源描述指定服务器实现的能力和包含的信息。在面向过程的架构风格中该操作也支持客户端与服务器间的标准版本协商。
GetTile: 图块资源(对面向过程架构风格下GetTile操作的响应)(服务器方必须实现)。图块资源表示一个图层的地图表达结果的一小块。
GetFeatureInfo: 要素信息(FeatureInfo)资源(对面向过程架构风格下GetFeatureInfo操作的响应)(服务器方可选择实现)。该资源提供了图块地图中某一特定像素位置处地物要素的信息,与WMS中GetFeatureInfo操作的行为相似,以文本形式通过提供比如专题属性名称及其取值的方式返回相关信息
参考文档:
07-057r7_Web_Map_Tile_Service_Standard.pdf(https://portal.ogc.org/files/?artifact_id=35326)
GetCapabilities
请求
请求参数
| 参数名称 | 是否必填 | 描述 |
|---|---|---|
| Service | 是 | 服务名称,必须是WMTS |
| Request | 是 | 请求名称。必须是GetCapabilities 操作。 |
| Version | 否 | 版本号。WMTS 目前的版本号只有1.0.0。 |
| Sections | 否 | 服务元数据文档组成部分的名称。 由零个或多个服务元数据文档组成部分的名称形成的无序列表,名称之间由英文逗号分隔。如果忽略该参数,则表示返回完整的服务元数据文档。 IGServer暂不支持该参数 |
| UpdateSequence | 否 | 控制缓存的序列号,当返回结果有变更时该序号递增。 IGServer暂不支持该参数 |
| AcceptFormats | 否 | 版本号。默认是取最新的版本。 由零个和多个版本组成的有序列表,名称之前由英文逗号分隔,将想要返回的版本放在第一位。如果忽略该参数,则返回最新的版本 IGServer暂不支持该参数 |
请求示例
{{server}}/igs/rest/services/:serviceName/WMTSServer?request=GetCapabilities&service=WMTS&acceptversions=1.0.0响应
响应示例
xml
<?xml version='1.0' encoding='UTF-8'?>
<Capabilities version="1.0.0" xmlns:ows="http://www.opengis.net/ows/1.1" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://www.opengis.net/wmts/1.0" xmlns:gml="http://www.opengis.net/gml" xsi:schemaLocation="http://www.opengis.net/wmts/1.0 http://localhost:8089/igs/rest/ogc/schemas/wmts/1.0/wmtsGetCapabilities_response.xsd">
<ows:ServiceIdentification>
<ows:Title>beijing_w17_test</ows:Title>
<ows:Abstract>Web Map Tile Service maintained by ZondyCyber Inc.</ows:Abstract>
<ows:Keywords>
<ows:Keyword>WMTS</ows:Keyword>
<ows:Keyword>MapGIS</ows:Keyword>
<ows:Keyword>ZondyCyber</ows:Keyword>
<ows:Keyword>IGServer</ows:Keyword>
</ows:Keywords>
<ows:ServiceType>WMTS</ows:ServiceType>
<ows:ServiceTypeVersion>1.0.0</ows:ServiceTypeVersion>
<ows:Fees>NONE</ows:Fees>
<ows:AccessConstraints>NONE</ows:AccessConstraints>
</ows:ServiceIdentification>
<ows:ServiceProvider>
<ows:ProviderName>Zondy Cyber Corp.</ows:ProviderName>
<ows:ProviderSite xlink:href="http://www.mapgis.com.cn"/>
<ows:ServiceContact>
<ows:IndividualName>吴信才</ows:IndividualName>
<ows:PositionName>集团董事长</ows:PositionName>
<ows:ContactInfo>
<ows:Phone>
<ows:Voice>027-87785588</ows:Voice>
<ows:Facsimile>027-87785588</ows:Facsimile>
</ows:Phone>
<ows:Address>
<ows:DeliveryPoint>湖北省武汉市光谷软件园A10</ows:DeliveryPoint>
<ows:City>Wuhan</ows:City>
<ows:AdministrativeArea>China</ows:AdministrativeArea>
<ows:PostalCode>430074</ows:PostalCode>
<ows:Country>China</ows:Country>
<ows:ElectronicMailAddress>mapgis@public.wh.hb.cn</ows:ElectronicMailAddress>
</ows:Address>
</ows:ContactInfo>
</ows:ServiceContact>
</ows:ServiceProvider>
<ows:OperationsMetadata>
<ows:Operation name ="GetCapabilities">
<ows:DCP>
<ows:HTTP>
<ows:Get xlink:href="http://localhost:8089/igs/rest/services/beijing_w17_test/WMTSServer?">
<ows:Constraint name="GetEncoding">
<ows:AllowedValues>
<ows:Value>KVP</ows:Value>
</ows:AllowedValues>
</ows:Constraint>
</ows:Get>
</ows:HTTP>
</ows:DCP>
</ows:Operation>
<ows:Operation name ="GetTile">
<ows:DCP>
<ows:HTTP>
<ows:Get xlink:href="http://localhost:8089/igs/rest/services/beijing_w17_test/WMTSServer?">
<ows:Constraint name="GetEncoding">
<ows:AllowedValues>
<ows:Value>KVP</ows:Value>
</ows:AllowedValues>
</ows:Constraint>
</ows:Get>
</ows:HTTP>
</ows:DCP>
</ows:Operation>
<ows:Operation name ="GetFeatureInfo">
<ows:DCP>
<ows:HTTP>
<ows:Get xlink:href="http://localhost:8089/igs/rest/services/beijing_w17_test/WMTSServer?">
<ows:Constraint name="GetEncoding">
<ows:AllowedValues>
<ows:Value>KVP</ows:Value>
</ows:AllowedValues>
</ows:Constraint>
</ows:Get>
</ows:HTTP>
</ows:DCP>
</ows:Operation>
</ows:OperationsMetadata>
<Contents>
<Layer>
<ows:Title>beijing_w17_test</ows:Title>
<ows:Identifier>beijing_w17_test</ows:Identifier>
<ows:BoundingBox crs="urn:ogc:def:crs:EPSG::4326">
<ows:LowerCorner>-270.0 -180.0</ows:LowerCorner>
<ows:UpperCorner>90.0 180.0</ows:UpperCorner>
</ows:BoundingBox>
<ows:WGS84BoundingBox crs="urn:ogc:def:crs:OGC:2:84">
<ows:LowerCorner>-180.0 -270.0</ows:LowerCorner>
<ows:UpperCorner>180.0 90.0</ows:UpperCorner>
</ows:WGS84BoundingBox>
<Style isDefault="true">
<ows:Title>Default</ows:Title>
<ows:Identifier>default</ows:Identifier>
</Style>
<Format>image/png</Format>
<InfoFormat>text/plain</InfoFormat>
<InfoFormat>text/html</InfoFormat>
<InfoFormat>application/vnd.ogc.gml</InfoFormat>
<TileMatrixSetLink>
<TileMatrixSet>EPSG:4326_beijing_w17_test_028mm_GB</TileMatrixSet>
<TileMatrixSetLimits>
<TileMatrixLimits>
<TileMatrix>EPSG:4326_beijing_w17_test_028mm_GB:0</TileMatrix>
<MinTileRow>0</MinTileRow>
<MaxTileRow>0</MaxTileRow>
<MinTileCol>0</MinTileCol>
<MaxTileCol>0</MaxTileCol>
</TileMatrixLimits>
<TileMatrixLimits>
<TileMatrix>EPSG:4326_beijing_w17_test_028mm_GB:1</TileMatrix>
<MinTileRow>0</MinTileRow>
<MaxTileRow>0</MaxTileRow>
<MinTileCol>1</MinTileCol>
<MaxTileCol>1</MaxTileCol>
</TileMatrixLimits>
<TileMatrixLimits>
<TileMatrix>EPSG:4326_beijing_w17_test_028mm_GB:2</TileMatrix>
<MinTileRow>0</MinTileRow>
<MaxTileRow>0</MaxTileRow>
<MinTileCol>3</MinTileCol>
<MaxTileCol>3</MaxTileCol>
</TileMatrixLimits>
<TileMatrixLimits>
<TileMatrix>EPSG:4326_beijing_w17_test_028mm_GB:3</TileMatrix>
<MinTileRow>1</MinTileRow>
<MaxTileRow>1</MaxTileRow>
<MinTileCol>6</MinTileCol>
<MaxTileCol>6</MaxTileCol>
</TileMatrixLimits>
<TileMatrixLimits>
<TileMatrix>EPSG:4326_beijing_w17_test_028mm_GB:4</TileMatrix>
<MinTileRow>2</MinTileRow>
<MaxTileRow>2</MaxTileRow>
<MinTileCol>13</MinTileCol>
<MaxTileCol>13</MaxTileCol>
</TileMatrixLimits>
<TileMatrixLimits>
<TileMatrix>EPSG:4326_beijing_w17_test_028mm_GB:5</TileMatrix>
<MinTileRow>4</MinTileRow>
<MaxTileRow>4</MaxTileRow>
<MinTileCol>26</MinTileCol>
<MaxTileCol>26</MaxTileCol>
</TileMatrixLimits>
<TileMatrixLimits>
<TileMatrix>EPSG:4326_beijing_w17_test_028mm_GB:6</TileMatrix>
<MinTileRow>8</MinTileRow>
<MaxTileRow>8</MaxTileRow>
<MinTileCol>52</MinTileCol>
<MaxTileCol>52</MaxTileCol>
</TileMatrixLimits>
<TileMatrixLimits>
<TileMatrix>EPSG:4326_beijing_w17_test_028mm_GB:7</TileMatrix>
<MinTileRow>17</MinTileRow>
<MaxTileRow>17</MaxTileRow>
<MinTileCol>105</MinTileCol>
<MaxTileCol>105</MaxTileCol>
</TileMatrixLimits>
<TileMatrixLimits>
<TileMatrix>EPSG:4326_beijing_w17_test_028mm_GB:8</TileMatrix>
<MinTileRow>34</MinTileRow>
<MaxTileRow>35</MaxTileRow>
<MinTileCol>210</MinTileCol>
<MaxTileCol>211</MaxTileCol>
</TileMatrixLimits>
<TileMatrixLimits>
<TileMatrix>EPSG:4326_beijing_w17_test_028mm_GB:9</TileMatrix>
<MinTileRow>69</MinTileRow>
<MaxTileRow>71</MaxTileRow>
<MinTileCol>420</MinTileCol>
<MaxTileCol>423</MaxTileCol>
</TileMatrixLimits>
<TileMatrixLimits>
<TileMatrix>EPSG:4326_beijing_w17_test_028mm_GB:10</TileMatrix>
<MinTileRow>139</MinTileRow>
<MaxTileRow>143</MaxTileRow>
<MinTileCol>840</MinTileCol>
<MaxTileCol>846</MaxTileCol>
</TileMatrixLimits>
<TileMatrixLimits>
<TileMatrix>EPSG:4326_beijing_w17_test_028mm_GB:11</TileMatrix>
<MinTileRow>278</MinTileRow>
<MaxTileRow>287</MaxTileRow>
<MinTileCol>1680</MinTileCol>
<MaxTileCol>1692</MaxTileCol>
</TileMatrixLimits>
<TileMatrixLimits>
<TileMatrix>EPSG:4326_beijing_w17_test_028mm_GB:12</TileMatrix>
<MinTileRow>556</MinTileRow>
<MaxTileRow>575</MaxTileRow>
<MinTileCol>3361</MinTileCol>
<MaxTileCol>3384</MaxTileCol>
</TileMatrixLimits>
<TileMatrixLimits>
<TileMatrix>EPSG:4326_beijing_w17_test_028mm_GB:13</TileMatrix>
<MinTileRow>1113</MinTileRow>
<MaxTileRow>1151</MaxTileRow>
<MinTileCol>6722</MinTileCol>
<MaxTileCol>6768</MaxTileCol>
</TileMatrixLimits>
<TileMatrixLimits>
<TileMatrix>EPSG:4326_beijing_w17_test_028mm_GB:14</TileMatrix>
<MinTileRow>2227</MinTileRow>
<MaxTileRow>2302</MaxTileRow>
<MinTileCol>13444</MinTileCol>
<MaxTileCol>13537</MaxTileCol>
</TileMatrixLimits>
<TileMatrixLimits>
<TileMatrix>EPSG:4326_beijing_w17_test_028mm_GB:15</TileMatrix>
<MinTileRow>4454</MinTileRow>
<MaxTileRow>4604</MaxTileRow>
<MinTileCol>26888</MinTileCol>
<MaxTileCol>27075</MaxTileCol>
</TileMatrixLimits>
<TileMatrixLimits>
<TileMatrix>EPSG:4326_beijing_w17_test_028mm_GB:16</TileMatrix>
<MinTileRow>8909</MinTileRow>
<MaxTileRow>9208</MaxTileRow>
<MinTileCol>53776</MinTileCol>
<MaxTileCol>54151</MaxTileCol>
</TileMatrixLimits>
<TileMatrixLimits>
<TileMatrix>EPSG:4326_beijing_w17_test_028mm_GB:17</TileMatrix>
<MinTileRow>17819</MinTileRow>
<MaxTileRow>18416</MaxTileRow>
<MinTileCol>107553</MinTileCol>
<MaxTileCol>108303</MaxTileCol>
</TileMatrixLimits>
<TileMatrixLimits>
<TileMatrix>EPSG:4326_beijing_w17_test_028mm_GB:18</TileMatrix>
<MinTileRow>35638</MinTileRow>
<MaxTileRow>36832</MaxTileRow>
<MinTileCol>215106</MinTileCol>
<MaxTileCol>216607</MaxTileCol>
</TileMatrixLimits>
</TileMatrixSetLimits>
</TileMatrixSetLink>
<TileMatrixSetLink>
<TileMatrixSet>EPSG:4326_beijing_w17_test_dpi96_GB</TileMatrixSet>
<TileMatrixSetLimits>
<TileMatrixLimits>
<TileMatrix>EPSG:4326_beijing_w17_test_dpi96_GB:0</TileMatrix>
<MinTileRow>0</MinTileRow>
<MaxTileRow>0</MaxTileRow>
<MinTileCol>0</MinTileCol>
<MaxTileCol>0</MaxTileCol>
</TileMatrixLimits>
<TileMatrixLimits>
<TileMatrix>EPSG:4326_beijing_w17_test_dpi96_GB:1</TileMatrix>
<MinTileRow>0</MinTileRow>
<MaxTileRow>0</MaxTileRow>
<MinTileCol>1</MinTileCol>
<MaxTileCol>1</MaxTileCol>
</TileMatrixLimits>
<TileMatrixLimits>
<TileMatrix>EPSG:4326_beijing_w17_test_dpi96_GB:2</TileMatrix>
<MinTileRow>0</MinTileRow>
<MaxTileRow>0</MaxTileRow>
<MinTileCol>3</MinTileCol>
<MaxTileCol>3</MaxTileCol>
</TileMatrixLimits>
<TileMatrixLimits>
<TileMatrix>EPSG:4326_beijing_w17_test_dpi96_GB:3</TileMatrix>
<MinTileRow>1</MinTileRow>
<MaxTileRow>1</MaxTileRow>
<MinTileCol>6</MinTileCol>
<MaxTileCol>6</MaxTileCol>
</TileMatrixLimits>
<TileMatrixLimits>
<TileMatrix>EPSG:4326_beijing_w17_test_dpi96_GB:4</TileMatrix>
<MinTileRow>2</MinTileRow>
<MaxTileRow>2</MaxTileRow>
<MinTileCol>13</MinTileCol>
<MaxTileCol>13</MaxTileCol>
</TileMatrixLimits>
<TileMatrixLimits>
<TileMatrix>EPSG:4326_beijing_w17_test_dpi96_GB:5</TileMatrix>
<MinTileRow>4</MinTileRow>
<MaxTileRow>4</MaxTileRow>
<MinTileCol>26</MinTileCol>
<MaxTileCol>26</MaxTileCol>
</TileMatrixLimits>
<TileMatrixLimits>
<TileMatrix>EPSG:4326_beijing_w17_test_dpi96_GB:6</TileMatrix>
<MinTileRow>8</MinTileRow>
<MaxTileRow>8</MaxTileRow>
<MinTileCol>52</MinTileCol>
<MaxTileCol>52</MaxTileCol>
</TileMatrixLimits>
<TileMatrixLimits>
<TileMatrix>EPSG:4326_beijing_w17_test_dpi96_GB:7</TileMatrix>
<MinTileRow>17</MinTileRow>
<MaxTileRow>17</MaxTileRow>
<MinTileCol>105</MinTileCol>
<MaxTileCol>105</MaxTileCol>
</TileMatrixLimits>
<TileMatrixLimits>
<TileMatrix>EPSG:4326_beijing_w17_test_dpi96_GB:8</TileMatrix>
<MinTileRow>34</MinTileRow>
<MaxTileRow>35</MaxTileRow>
<MinTileCol>210</MinTileCol>
<MaxTileCol>211</MaxTileCol>
</TileMatrixLimits>
<TileMatrixLimits>
<TileMatrix>EPSG:4326_beijing_w17_test_dpi96_GB:9</TileMatrix>
<MinTileRow>69</MinTileRow>
<MaxTileRow>71</MaxTileRow>
<MinTileCol>420</MinTileCol>
<MaxTileCol>423</MaxTileCol>
</TileMatrixLimits>
<TileMatrixLimits>
<TileMatrix>EPSG:4326_beijing_w17_test_dpi96_GB:10</TileMatrix>
<MinTileRow>139</MinTileRow>
<MaxTileRow>143</MaxTileRow>
<MinTileCol>840</MinTileCol>
<MaxTileCol>846</MaxTileCol>
</TileMatrixLimits>
<TileMatrixLimits>
<TileMatrix>EPSG:4326_beijing_w17_test_dpi96_GB:11</TileMatrix>
<MinTileRow>278</MinTileRow>
<MaxTileRow>287</MaxTileRow>
<MinTileCol>1680</MinTileCol>
<MaxTileCol>1692</MaxTileCol>
</TileMatrixLimits>
<TileMatrixLimits>
<TileMatrix>EPSG:4326_beijing_w17_test_dpi96_GB:12</TileMatrix>
<MinTileRow>556</MinTileRow>
<MaxTileRow>575</MaxTileRow>
<MinTileCol>3361</MinTileCol>
<MaxTileCol>3384</MaxTileCol>
</TileMatrixLimits>
<TileMatrixLimits>
<TileMatrix>EPSG:4326_beijing_w17_test_dpi96_GB:13</TileMatrix>
<MinTileRow>1113</MinTileRow>
<MaxTileRow>1151</MaxTileRow>
<MinTileCol>6722</MinTileCol>
<MaxTileCol>6768</MaxTileCol>
</TileMatrixLimits>
<TileMatrixLimits>
<TileMatrix>EPSG:4326_beijing_w17_test_dpi96_GB:14</TileMatrix>
<MinTileRow>2227</MinTileRow>
<MaxTileRow>2302</MaxTileRow>
<MinTileCol>13444</MinTileCol>
<MaxTileCol>13537</MaxTileCol>
</TileMatrixLimits>
<TileMatrixLimits>
<TileMatrix>EPSG:4326_beijing_w17_test_dpi96_GB:15</TileMatrix>
<MinTileRow>4454</MinTileRow>
<MaxTileRow>4604</MaxTileRow>
<MinTileCol>26888</MinTileCol>
<MaxTileCol>27075</MaxTileCol>
</TileMatrixLimits>
<TileMatrixLimits>
<TileMatrix>EPSG:4326_beijing_w17_test_dpi96_GB:16</TileMatrix>
<MinTileRow>8909</MinTileRow>
<MaxTileRow>9208</MaxTileRow>
<MinTileCol>53776</MinTileCol>
<MaxTileCol>54151</MaxTileCol>
</TileMatrixLimits>
<TileMatrixLimits>
<TileMatrix>EPSG:4326_beijing_w17_test_dpi96_GB:17</TileMatrix>
<MinTileRow>17819</MinTileRow>
<MaxTileRow>18416</MaxTileRow>
<MinTileCol>107553</MinTileCol>
<MaxTileCol>108303</MaxTileCol>
</TileMatrixLimits>
<TileMatrixLimits>
<TileMatrix>EPSG:4326_beijing_w17_test_dpi96_GB:18</TileMatrix>
<MinTileRow>35638</MinTileRow>
<MaxTileRow>36832</MaxTileRow>
<MinTileCol>215106</MinTileCol>
<MaxTileCol>216607</MaxTileCol>
</TileMatrixLimits>
</TileMatrixSetLimits>
</TileMatrixSetLink>
<TileMatrixSetLink>
<TileMatrixSet>EPSG:4326_beijing_w17_test_arcgis_GB</TileMatrixSet>
<TileMatrixSetLimits>
<TileMatrixLimits>
<TileMatrix>EPSG:4326_beijing_w17_test_arcgis_GB:0</TileMatrix>
<MinTileRow>0</MinTileRow>
<MaxTileRow>0</MaxTileRow>
<MinTileCol>0</MinTileCol>
<MaxTileCol>0</MaxTileCol>
</TileMatrixLimits>
<TileMatrixLimits>
<TileMatrix>EPSG:4326_beijing_w17_test_arcgis_GB:1</TileMatrix>
<MinTileRow>0</MinTileRow>
<MaxTileRow>0</MaxTileRow>
<MinTileCol>1</MinTileCol>
<MaxTileCol>1</MaxTileCol>
</TileMatrixLimits>
<TileMatrixLimits>
<TileMatrix>EPSG:4326_beijing_w17_test_arcgis_GB:2</TileMatrix>
<MinTileRow>0</MinTileRow>
<MaxTileRow>0</MaxTileRow>
<MinTileCol>3</MinTileCol>
<MaxTileCol>3</MaxTileCol>
</TileMatrixLimits>
<TileMatrixLimits>
<TileMatrix>EPSG:4326_beijing_w17_test_arcgis_GB:3</TileMatrix>
<MinTileRow>1</MinTileRow>
<MaxTileRow>1</MaxTileRow>
<MinTileCol>6</MinTileCol>
<MaxTileCol>6</MaxTileCol>
</TileMatrixLimits>
<TileMatrixLimits>
<TileMatrix>EPSG:4326_beijing_w17_test_arcgis_GB:4</TileMatrix>
<MinTileRow>2</MinTileRow>
<MaxTileRow>2</MaxTileRow>
<MinTileCol>13</MinTileCol>
<MaxTileCol>13</MaxTileCol>
</TileMatrixLimits>
<TileMatrixLimits>
<TileMatrix>EPSG:4326_beijing_w17_test_arcgis_GB:5</TileMatrix>
<MinTileRow>4</MinTileRow>
<MaxTileRow>4</MaxTileRow>
<MinTileCol>26</MinTileCol>
<MaxTileCol>26</MaxTileCol>
</TileMatrixLimits>
<TileMatrixLimits>
<TileMatrix>EPSG:4326_beijing_w17_test_arcgis_GB:6</TileMatrix>
<MinTileRow>8</MinTileRow>
<MaxTileRow>8</MaxTileRow>
<MinTileCol>52</MinTileCol>
<MaxTileCol>52</MaxTileCol>
</TileMatrixLimits>
<TileMatrixLimits>
<TileMatrix>EPSG:4326_beijing_w17_test_arcgis_GB:7</TileMatrix>
<MinTileRow>17</MinTileRow>
<MaxTileRow>17</MaxTileRow>
<MinTileCol>105</MinTileCol>
<MaxTileCol>105</MaxTileCol>
</TileMatrixLimits>
<TileMatrixLimits>
<TileMatrix>EPSG:4326_beijing_w17_test_arcgis_GB:8</TileMatrix>
<MinTileRow>34</MinTileRow>
<MaxTileRow>35</MaxTileRow>
<MinTileCol>210</MinTileCol>
<MaxTileCol>211</MaxTileCol>
</TileMatrixLimits>
<TileMatrixLimits>
<TileMatrix>EPSG:4326_beijing_w17_test_arcgis_GB:9</TileMatrix>
<MinTileRow>69</MinTileRow>
<MaxTileRow>71</MaxTileRow>
<MinTileCol>420</MinTileCol>
<MaxTileCol>423</MaxTileCol>
</TileMatrixLimits>
<TileMatrixLimits>
<TileMatrix>EPSG:4326_beijing_w17_test_arcgis_GB:10</TileMatrix>
<MinTileRow>139</MinTileRow>
<MaxTileRow>143</MaxTileRow>
<MinTileCol>840</MinTileCol>
<MaxTileCol>846</MaxTileCol>
</TileMatrixLimits>
<TileMatrixLimits>
<TileMatrix>EPSG:4326_beijing_w17_test_arcgis_GB:11</TileMatrix>
<MinTileRow>278</MinTileRow>
<MaxTileRow>287</MaxTileRow>
<MinTileCol>1680</MinTileCol>
<MaxTileCol>1692</MaxTileCol>
</TileMatrixLimits>
<TileMatrixLimits>
<TileMatrix>EPSG:4326_beijing_w17_test_arcgis_GB:12</TileMatrix>
<MinTileRow>556</MinTileRow>
<MaxTileRow>575</MaxTileRow>
<MinTileCol>3361</MinTileCol>
<MaxTileCol>3384</MaxTileCol>
</TileMatrixLimits>
<TileMatrixLimits>
<TileMatrix>EPSG:4326_beijing_w17_test_arcgis_GB:13</TileMatrix>
<MinTileRow>1113</MinTileRow>
<MaxTileRow>1151</MaxTileRow>
<MinTileCol>6722</MinTileCol>
<MaxTileCol>6768</MaxTileCol>
</TileMatrixLimits>
<TileMatrixLimits>
<TileMatrix>EPSG:4326_beijing_w17_test_arcgis_GB:14</TileMatrix>
<MinTileRow>2227</MinTileRow>
<MaxTileRow>2302</MaxTileRow>
<MinTileCol>13444</MinTileCol>
<MaxTileCol>13537</MaxTileCol>
</TileMatrixLimits>
<TileMatrixLimits>
<TileMatrix>EPSG:4326_beijing_w17_test_arcgis_GB:15</TileMatrix>
<MinTileRow>4454</MinTileRow>
<MaxTileRow>4604</MaxTileRow>
<MinTileCol>26888</MinTileCol>
<MaxTileCol>27075</MaxTileCol>
</TileMatrixLimits>
<TileMatrixLimits>
<TileMatrix>EPSG:4326_beijing_w17_test_arcgis_GB:16</TileMatrix>
<MinTileRow>8909</MinTileRow>
<MaxTileRow>9208</MaxTileRow>
<MinTileCol>53776</MinTileCol>
<MaxTileCol>54151</MaxTileCol>
</TileMatrixLimits>
<TileMatrixLimits>
<TileMatrix>EPSG:4326_beijing_w17_test_arcgis_GB:17</TileMatrix>
<MinTileRow>17819</MinTileRow>
<MaxTileRow>18416</MaxTileRow>
<MinTileCol>107553</MinTileCol>
<MaxTileCol>108303</MaxTileCol>
</TileMatrixLimits>
<TileMatrixLimits>
<TileMatrix>EPSG:4326_beijing_w17_test_arcgis_GB:18</TileMatrix>
<MinTileRow>35638</MinTileRow>
<MaxTileRow>36832</MaxTileRow>
<MinTileCol>215106</MinTileCol>
<MaxTileCol>216607</MaxTileCol>
</TileMatrixLimits>
</TileMatrixSetLimits>
</TileMatrixSetLink>
<ResourceURL resourceType="tile" format="image/png" template="http://localhost:8089/igs/rest/services/beijing_w17_test/WMTSServer/1.0.0/beijing_w17_test/{Style}/{TileMatrixSet}/{TileMatrix}/{TileRow}/{TileCol}.png"/>
</Layer>
<TileMatrixSet>
<ows:Title>采用0.28mm的瓦片块阵集</ows:Title>
<ows:Abstract>该块阵集使用OGC官方标准,计算方式为1个像素0.28mm(90.71DPI)</ows:Abstract>
<ows:Identifier>EPSG:4326_beijing_w17_test_028mm_GB</ows:Identifier>
<ows:SupportedCRS>urn:ogc:def:crs:EPSG::4326</ows:SupportedCRS>
<TileMatrix>
<ows:Identifier>EPSG:4326_beijing_w17_test_028mm_GB:0</ows:Identifier>
<ScaleDenominator>2.795411320143589E8</ScaleDenominator>
<TopLeftCorner>90.0 -180.0</TopLeftCorner>
<TileWidth>512</TileWidth>
<TileHeight>512</TileHeight>
<MatrixWidth>1</MatrixWidth>
<MatrixHeight>1</MatrixHeight>
</TileMatrix>
<TileMatrix>
<ows:Identifier>EPSG:4326_beijing_w17_test_028mm_GB:1</ows:Identifier>
<ScaleDenominator>1.3977056600717944E8</ScaleDenominator>
<TopLeftCorner>90.0 -180.0</TopLeftCorner>
<TileWidth>512</TileWidth>
<TileHeight>512</TileHeight>
<MatrixWidth>1</MatrixWidth>
<MatrixHeight>1</MatrixHeight>
</TileMatrix>
<TileMatrix>
<ows:Identifier>EPSG:4326_beijing_w17_test_028mm_GB:2</ows:Identifier>
<ScaleDenominator>6.988528300358972E7</ScaleDenominator>
<TopLeftCorner>90.0 -180.0</TopLeftCorner>
<TileWidth>512</TileWidth>
<TileHeight>512</TileHeight>
<MatrixWidth>1</MatrixWidth>
<MatrixHeight>1</MatrixHeight>
</TileMatrix>
<TileMatrix>
<ows:Identifier>EPSG:4326_beijing_w17_test_028mm_GB:3</ows:Identifier>
<ScaleDenominator>3.494264150179486E7</ScaleDenominator>
<TopLeftCorner>90.0 -180.0</TopLeftCorner>
<TileWidth>512</TileWidth>
<TileHeight>512</TileHeight>
<MatrixWidth>1</MatrixWidth>
<MatrixHeight>1</MatrixHeight>
</TileMatrix>
<TileMatrix>
<ows:Identifier>EPSG:4326_beijing_w17_test_028mm_GB:4</ows:Identifier>
<ScaleDenominator>1.747132075089743E7</ScaleDenominator>
<TopLeftCorner>90.0 -180.0</TopLeftCorner>
<TileWidth>512</TileWidth>
<TileHeight>512</TileHeight>
<MatrixWidth>1</MatrixWidth>
<MatrixHeight>1</MatrixHeight>
</TileMatrix>
<TileMatrix>
<ows:Identifier>EPSG:4326_beijing_w17_test_028mm_GB:5</ows:Identifier>
<ScaleDenominator>8735660.375448715</ScaleDenominator>
<TopLeftCorner>90.0 -180.0</TopLeftCorner>
<TileWidth>512</TileWidth>
<TileHeight>512</TileHeight>
<MatrixWidth>1</MatrixWidth>
<MatrixHeight>1</MatrixHeight>
</TileMatrix>
<TileMatrix>
<ows:Identifier>EPSG:4326_beijing_w17_test_028mm_GB:6</ows:Identifier>
<ScaleDenominator>4367830.1877243575</ScaleDenominator>
<TopLeftCorner>90.0 -180.0</TopLeftCorner>
<TileWidth>512</TileWidth>
<TileHeight>512</TileHeight>
<MatrixWidth>1</MatrixWidth>
<MatrixHeight>1</MatrixHeight>
</TileMatrix>
<TileMatrix>
<ows:Identifier>EPSG:4326_beijing_w17_test_028mm_GB:7</ows:Identifier>
<ScaleDenominator>2183915.0938621787</ScaleDenominator>
<TopLeftCorner>90.0 -180.0</TopLeftCorner>
<TileWidth>512</TileWidth>
<TileHeight>512</TileHeight>
<MatrixWidth>1</MatrixWidth>
<MatrixHeight>1</MatrixHeight>
</TileMatrix>
<TileMatrix>
<ows:Identifier>EPSG:4326_beijing_w17_test_028mm_GB:8</ows:Identifier>
<ScaleDenominator>1091957.5469310894</ScaleDenominator>
<TopLeftCorner>90.0 -180.0</TopLeftCorner>
<TileWidth>512</TileWidth>
<TileHeight>512</TileHeight>
<MatrixWidth>2</MatrixWidth>
<MatrixHeight>2</MatrixHeight>
</TileMatrix>
<TileMatrix>
<ows:Identifier>EPSG:4326_beijing_w17_test_028mm_GB:9</ows:Identifier>
<ScaleDenominator>545978.7734655447</ScaleDenominator>
<TopLeftCorner>90.0 -180.0</TopLeftCorner>
<TileWidth>512</TileWidth>
<TileHeight>512</TileHeight>
<MatrixWidth>4</MatrixWidth>
<MatrixHeight>3</MatrixHeight>
</TileMatrix>
<TileMatrix>
<ows:Identifier>EPSG:4326_beijing_w17_test_028mm_GB:10</ows:Identifier>
<ScaleDenominator>272989.38673277234</ScaleDenominator>
<TopLeftCorner>90.0 -180.0</TopLeftCorner>
<TileWidth>512</TileWidth>
<TileHeight>512</TileHeight>
<MatrixWidth>7</MatrixWidth>
<MatrixHeight>5</MatrixHeight>
</TileMatrix>
<TileMatrix>
<ows:Identifier>EPSG:4326_beijing_w17_test_028mm_GB:11</ows:Identifier>
<ScaleDenominator>136494.69336638617</ScaleDenominator>
<TopLeftCorner>90.0 -180.0</TopLeftCorner>
<TileWidth>512</TileWidth>
<TileHeight>512</TileHeight>
<MatrixWidth>13</MatrixWidth>
<MatrixHeight>10</MatrixHeight>
</TileMatrix>
<TileMatrix>
<ows:Identifier>EPSG:4326_beijing_w17_test_028mm_GB:12</ows:Identifier>
<ScaleDenominator>68247.34668319309</ScaleDenominator>
<TopLeftCorner>90.0 -180.0</TopLeftCorner>
<TileWidth>512</TileWidth>
<TileHeight>512</TileHeight>
<MatrixWidth>24</MatrixWidth>
<MatrixHeight>20</MatrixHeight>
</TileMatrix>
<TileMatrix>
<ows:Identifier>EPSG:4326_beijing_w17_test_028mm_GB:13</ows:Identifier>
<ScaleDenominator>34123.67334159654</ScaleDenominator>
<TopLeftCorner>90.0 -180.0</TopLeftCorner>
<TileWidth>512</TileWidth>
<TileHeight>512</TileHeight>
<MatrixWidth>47</MatrixWidth>
<MatrixHeight>39</MatrixHeight>
</TileMatrix>
<TileMatrix>
<ows:Identifier>EPSG:4326_beijing_w17_test_028mm_GB:14</ows:Identifier>
<ScaleDenominator>17061.83667079827</ScaleDenominator>
<TopLeftCorner>90.0 -180.0</TopLeftCorner>
<TileWidth>512</TileWidth>
<TileHeight>512</TileHeight>
<MatrixWidth>94</MatrixWidth>
<MatrixHeight>76</MatrixHeight>
</TileMatrix>
<TileMatrix>
<ows:Identifier>EPSG:4326_beijing_w17_test_028mm_GB:15</ows:Identifier>
<ScaleDenominator>8530.918335399136</ScaleDenominator>
<TopLeftCorner>90.0 -180.0</TopLeftCorner>
<TileWidth>512</TileWidth>
<TileHeight>512</TileHeight>
<MatrixWidth>188</MatrixWidth>
<MatrixHeight>151</MatrixHeight>
</TileMatrix>
<TileMatrix>
<ows:Identifier>EPSG:4326_beijing_w17_test_028mm_GB:16</ows:Identifier>
<ScaleDenominator>4265.459167699568</ScaleDenominator>
<TopLeftCorner>90.0 -180.0</TopLeftCorner>
<TileWidth>512</TileWidth>
<TileHeight>512</TileHeight>
<MatrixWidth>376</MatrixWidth>
<MatrixHeight>300</MatrixHeight>
</TileMatrix>
<TileMatrix>
<ows:Identifier>EPSG:4326_beijing_w17_test_028mm_GB:17</ows:Identifier>
<ScaleDenominator>2132.729583849784</ScaleDenominator>
<TopLeftCorner>90.0 -180.0</TopLeftCorner>
<TileWidth>512</TileWidth>
<TileHeight>512</TileHeight>
<MatrixWidth>751</MatrixWidth>
<MatrixHeight>598</MatrixHeight>
</TileMatrix>
<TileMatrix>
<ows:Identifier>EPSG:4326_beijing_w17_test_028mm_GB:18</ows:Identifier>
<ScaleDenominator>1066.364791924892</ScaleDenominator>
<TopLeftCorner>90.0 -180.0</TopLeftCorner>
<TileWidth>512</TileWidth>
<TileHeight>512</TileHeight>
<MatrixWidth>1502</MatrixWidth>
<MatrixHeight>1195</MatrixHeight>
</TileMatrix>
</TileMatrixSet>
<TileMatrixSet>
<ows:Title>采用arcgis计算方式的瓦片块阵集</ows:Title>
<ows:Abstract>该块阵集使用arcgis标准计算的比例尺</ows:Abstract>
<ows:Identifier>EPSG:4326_beijing_w17_test_arcgis_GB</ows:Identifier>
<ows:SupportedCRS>urn:ogc:def:crs:EPSG::4326</ows:SupportedCRS>
<TileMatrix>
<ows:Identifier>EPSG:4326_beijing_w17_test_arcgis_GB:0</ows:Identifier>
<ScaleDenominator>2.792281947533462E8</ScaleDenominator>
<TopLeftCorner>90.0 -180.0</TopLeftCorner>
<TileWidth>512</TileWidth>
<TileHeight>512</TileHeight>
<MatrixWidth>1</MatrixWidth>
<MatrixHeight>1</MatrixHeight>
</TileMatrix>
<TileMatrix>
<ows:Identifier>EPSG:4326_beijing_w17_test_arcgis_GB:1</ows:Identifier>
<ScaleDenominator>1.396140973766731E8</ScaleDenominator>
<TopLeftCorner>90.0 -180.0</TopLeftCorner>
<TileWidth>512</TileWidth>
<TileHeight>512</TileHeight>
<MatrixWidth>1</MatrixWidth>
<MatrixHeight>1</MatrixHeight>
</TileMatrix>
<TileMatrix>
<ows:Identifier>EPSG:4326_beijing_w17_test_arcgis_GB:2</ows:Identifier>
<ScaleDenominator>6.980704868833655E7</ScaleDenominator>
<TopLeftCorner>90.0 -180.0</TopLeftCorner>
<TileWidth>512</TileWidth>
<TileHeight>512</TileHeight>
<MatrixWidth>1</MatrixWidth>
<MatrixHeight>1</MatrixHeight>
</TileMatrix>
<TileMatrix>
<ows:Identifier>EPSG:4326_beijing_w17_test_arcgis_GB:3</ows:Identifier>
<ScaleDenominator>3.4903524344168276E7</ScaleDenominator>
<TopLeftCorner>90.0 -180.0</TopLeftCorner>
<TileWidth>512</TileWidth>
<TileHeight>512</TileHeight>
<MatrixWidth>1</MatrixWidth>
<MatrixHeight>1</MatrixHeight>
</TileMatrix>
<TileMatrix>
<ows:Identifier>EPSG:4326_beijing_w17_test_arcgis_GB:4</ows:Identifier>
<ScaleDenominator>1.7451762172084138E7</ScaleDenominator>
<TopLeftCorner>90.0 -180.0</TopLeftCorner>
<TileWidth>512</TileWidth>
<TileHeight>512</TileHeight>
<MatrixWidth>1</MatrixWidth>
<MatrixHeight>1</MatrixHeight>
</TileMatrix>
<TileMatrix>
<ows:Identifier>EPSG:4326_beijing_w17_test_arcgis_GB:5</ows:Identifier>
<ScaleDenominator>8725881.086042069</ScaleDenominator>
<TopLeftCorner>90.0 -180.0</TopLeftCorner>
<TileWidth>512</TileWidth>
<TileHeight>512</TileHeight>
<MatrixWidth>1</MatrixWidth>
<MatrixHeight>1</MatrixHeight>
</TileMatrix>
<TileMatrix>
<ows:Identifier>EPSG:4326_beijing_w17_test_arcgis_GB:6</ows:Identifier>
<ScaleDenominator>4362940.543021034</ScaleDenominator>
<TopLeftCorner>90.0 -180.0</TopLeftCorner>
<TileWidth>512</TileWidth>
<TileHeight>512</TileHeight>
<MatrixWidth>1</MatrixWidth>
<MatrixHeight>1</MatrixHeight>
</TileMatrix>
<TileMatrix>
<ows:Identifier>EPSG:4326_beijing_w17_test_arcgis_GB:7</ows:Identifier>
<ScaleDenominator>2181470.271510517</ScaleDenominator>
<TopLeftCorner>90.0 -180.0</TopLeftCorner>
<TileWidth>512</TileWidth>
<TileHeight>512</TileHeight>
<MatrixWidth>1</MatrixWidth>
<MatrixHeight>1</MatrixHeight>
</TileMatrix>
<TileMatrix>
<ows:Identifier>EPSG:4326_beijing_w17_test_arcgis_GB:8</ows:Identifier>
<ScaleDenominator>1090735.1357552586</ScaleDenominator>
<TopLeftCorner>90.0 -180.0</TopLeftCorner>
<TileWidth>512</TileWidth>
<TileHeight>512</TileHeight>
<MatrixWidth>2</MatrixWidth>
<MatrixHeight>2</MatrixHeight>
</TileMatrix>
<TileMatrix>
<ows:Identifier>EPSG:4326_beijing_w17_test_arcgis_GB:9</ows:Identifier>
<ScaleDenominator>545367.5678776293</ScaleDenominator>
<TopLeftCorner>90.0 -180.0</TopLeftCorner>
<TileWidth>512</TileWidth>
<TileHeight>512</TileHeight>
<MatrixWidth>4</MatrixWidth>
<MatrixHeight>3</MatrixHeight>
</TileMatrix>
<TileMatrix>
<ows:Identifier>EPSG:4326_beijing_w17_test_arcgis_GB:10</ows:Identifier>
<ScaleDenominator>272683.78393881465</ScaleDenominator>
<TopLeftCorner>90.0 -180.0</TopLeftCorner>
<TileWidth>512</TileWidth>
<TileHeight>512</TileHeight>
<MatrixWidth>7</MatrixWidth>
<MatrixHeight>5</MatrixHeight>
</TileMatrix>
<TileMatrix>
<ows:Identifier>EPSG:4326_beijing_w17_test_arcgis_GB:11</ows:Identifier>
<ScaleDenominator>136341.89196940733</ScaleDenominator>
<TopLeftCorner>90.0 -180.0</TopLeftCorner>
<TileWidth>512</TileWidth>
<TileHeight>512</TileHeight>
<MatrixWidth>13</MatrixWidth>
<MatrixHeight>10</MatrixHeight>
</TileMatrix>
<TileMatrix>
<ows:Identifier>EPSG:4326_beijing_w17_test_arcgis_GB:12</ows:Identifier>
<ScaleDenominator>68170.94598470366</ScaleDenominator>
<TopLeftCorner>90.0 -180.0</TopLeftCorner>
<TileWidth>512</TileWidth>
<TileHeight>512</TileHeight>
<MatrixWidth>24</MatrixWidth>
<MatrixHeight>20</MatrixHeight>
</TileMatrix>
<TileMatrix>
<ows:Identifier>EPSG:4326_beijing_w17_test_arcgis_GB:13</ows:Identifier>
<ScaleDenominator>34085.47299235183</ScaleDenominator>
<TopLeftCorner>90.0 -180.0</TopLeftCorner>
<TileWidth>512</TileWidth>
<TileHeight>512</TileHeight>
<MatrixWidth>47</MatrixWidth>
<MatrixHeight>39</MatrixHeight>
</TileMatrix>
<TileMatrix>
<ows:Identifier>EPSG:4326_beijing_w17_test_arcgis_GB:14</ows:Identifier>
<ScaleDenominator>17042.736496175916</ScaleDenominator>
<TopLeftCorner>90.0 -180.0</TopLeftCorner>
<TileWidth>512</TileWidth>
<TileHeight>512</TileHeight>
<MatrixWidth>94</MatrixWidth>
<MatrixHeight>76</MatrixHeight>
</TileMatrix>
<TileMatrix>
<ows:Identifier>EPSG:4326_beijing_w17_test_arcgis_GB:15</ows:Identifier>
<ScaleDenominator>8521.368248087958</ScaleDenominator>
<TopLeftCorner>90.0 -180.0</TopLeftCorner>
<TileWidth>512</TileWidth>
<TileHeight>512</TileHeight>
<MatrixWidth>188</MatrixWidth>
<MatrixHeight>151</MatrixHeight>
</TileMatrix>
<TileMatrix>
<ows:Identifier>EPSG:4326_beijing_w17_test_arcgis_GB:16</ows:Identifier>
<ScaleDenominator>4260.684124043979</ScaleDenominator>
<TopLeftCorner>90.0 -180.0</TopLeftCorner>
<TileWidth>512</TileWidth>
<TileHeight>512</TileHeight>
<MatrixWidth>376</MatrixWidth>
<MatrixHeight>300</MatrixHeight>
</TileMatrix>
<TileMatrix>
<ows:Identifier>EPSG:4326_beijing_w17_test_arcgis_GB:17</ows:Identifier>
<ScaleDenominator>2130.3420620219895</ScaleDenominator>
<TopLeftCorner>90.0 -180.0</TopLeftCorner>
<TileWidth>512</TileWidth>
<TileHeight>512</TileHeight>
<MatrixWidth>751</MatrixWidth>
<MatrixHeight>598</MatrixHeight>
</TileMatrix>
<TileMatrix>
<ows:Identifier>EPSG:4326_beijing_w17_test_arcgis_GB:18</ows:Identifier>
<ScaleDenominator>1065.1710310109947</ScaleDenominator>
<TopLeftCorner>90.0 -180.0</TopLeftCorner>
<TileWidth>512</TileWidth>
<TileHeight>512</TileHeight>
<MatrixWidth>1502</MatrixWidth>
<MatrixHeight>1195</MatrixHeight>
</TileMatrix>
</TileMatrixSet>
<TileMatrixSet>
<ows:Title>采用DPI96的瓦片块阵集</ows:Title>
<ows:Abstract>该块阵集使用MapGIS标准,计算方式为96DPI</ows:Abstract>
<ows:Identifier>EPSG:4326_beijing_w17_test_dpi96_GB</ows:Identifier>
<ows:SupportedCRS>urn:ogc:def:crs:EPSG::4326</ows:SupportedCRS>
<TileMatrix>
<ows:Identifier>EPSG:4326_beijing_w17_test_dpi96_GB:0</ows:Identifier>
<ScaleDenominator>2.958293554545668E8</ScaleDenominator>
<TopLeftCorner>90.0 -180.0</TopLeftCorner>
<TileWidth>512</TileWidth>
<TileHeight>512</TileHeight>
<MatrixWidth>1</MatrixWidth>
<MatrixHeight>1</MatrixHeight>
</TileMatrix>
<TileMatrix>
<ows:Identifier>EPSG:4326_beijing_w17_test_dpi96_GB:1</ows:Identifier>
<ScaleDenominator>1.479146777272834E8</ScaleDenominator>
<TopLeftCorner>90.0 -180.0</TopLeftCorner>
<TileWidth>512</TileWidth>
<TileHeight>512</TileHeight>
<MatrixWidth>1</MatrixWidth>
<MatrixHeight>1</MatrixHeight>
</TileMatrix>
<TileMatrix>
<ows:Identifier>EPSG:4326_beijing_w17_test_dpi96_GB:2</ows:Identifier>
<ScaleDenominator>7.39573388636417E7</ScaleDenominator>
<TopLeftCorner>90.0 -180.0</TopLeftCorner>
<TileWidth>512</TileWidth>
<TileHeight>512</TileHeight>
<MatrixWidth>1</MatrixWidth>
<MatrixHeight>1</MatrixHeight>
</TileMatrix>
<TileMatrix>
<ows:Identifier>EPSG:4326_beijing_w17_test_dpi96_GB:3</ows:Identifier>
<ScaleDenominator>3.697866943182085E7</ScaleDenominator>
<TopLeftCorner>90.0 -180.0</TopLeftCorner>
<TileWidth>512</TileWidth>
<TileHeight>512</TileHeight>
<MatrixWidth>1</MatrixWidth>
<MatrixHeight>1</MatrixHeight>
</TileMatrix>
<TileMatrix>
<ows:Identifier>EPSG:4326_beijing_w17_test_dpi96_GB:4</ows:Identifier>
<ScaleDenominator>1.8489334715910424E7</ScaleDenominator>
<TopLeftCorner>90.0 -180.0</TopLeftCorner>
<TileWidth>512</TileWidth>
<TileHeight>512</TileHeight>
<MatrixWidth>1</MatrixWidth>
<MatrixHeight>1</MatrixHeight>
</TileMatrix>
<TileMatrix>
<ows:Identifier>EPSG:4326_beijing_w17_test_dpi96_GB:5</ows:Identifier>
<ScaleDenominator>9244667.357955212</ScaleDenominator>
<TopLeftCorner>90.0 -180.0</TopLeftCorner>
<TileWidth>512</TileWidth>
<TileHeight>512</TileHeight>
<MatrixWidth>1</MatrixWidth>
<MatrixHeight>1</MatrixHeight>
</TileMatrix>
<TileMatrix>
<ows:Identifier>EPSG:4326_beijing_w17_test_dpi96_GB:6</ows:Identifier>
<ScaleDenominator>4622333.678977606</ScaleDenominator>
<TopLeftCorner>90.0 -180.0</TopLeftCorner>
<TileWidth>512</TileWidth>
<TileHeight>512</TileHeight>
<MatrixWidth>1</MatrixWidth>
<MatrixHeight>1</MatrixHeight>
</TileMatrix>
<TileMatrix>
<ows:Identifier>EPSG:4326_beijing_w17_test_dpi96_GB:7</ows:Identifier>
<ScaleDenominator>2311166.839488803</ScaleDenominator>
<TopLeftCorner>90.0 -180.0</TopLeftCorner>
<TileWidth>512</TileWidth>
<TileHeight>512</TileHeight>
<MatrixWidth>1</MatrixWidth>
<MatrixHeight>1</MatrixHeight>
</TileMatrix>
<TileMatrix>
<ows:Identifier>EPSG:4326_beijing_w17_test_dpi96_GB:8</ows:Identifier>
<ScaleDenominator>1155583.4197444015</ScaleDenominator>
<TopLeftCorner>90.0 -180.0</TopLeftCorner>
<TileWidth>512</TileWidth>
<TileHeight>512</TileHeight>
<MatrixWidth>2</MatrixWidth>
<MatrixHeight>2</MatrixHeight>
</TileMatrix>
<TileMatrix>
<ows:Identifier>EPSG:4326_beijing_w17_test_dpi96_GB:9</ows:Identifier>
<ScaleDenominator>577791.7098722007</ScaleDenominator>
<TopLeftCorner>90.0 -180.0</TopLeftCorner>
<TileWidth>512</TileWidth>
<TileHeight>512</TileHeight>
<MatrixWidth>4</MatrixWidth>
<MatrixHeight>3</MatrixHeight>
</TileMatrix>
<TileMatrix>
<ows:Identifier>EPSG:4326_beijing_w17_test_dpi96_GB:10</ows:Identifier>
<ScaleDenominator>288895.85493610037</ScaleDenominator>
<TopLeftCorner>90.0 -180.0</TopLeftCorner>
<TileWidth>512</TileWidth>
<TileHeight>512</TileHeight>
<MatrixWidth>7</MatrixWidth>
<MatrixHeight>5</MatrixHeight>
</TileMatrix>
<TileMatrix>
<ows:Identifier>EPSG:4326_beijing_w17_test_dpi96_GB:11</ows:Identifier>
<ScaleDenominator>144447.92746805018</ScaleDenominator>
<TopLeftCorner>90.0 -180.0</TopLeftCorner>
<TileWidth>512</TileWidth>
<TileHeight>512</TileHeight>
<MatrixWidth>13</MatrixWidth>
<MatrixHeight>10</MatrixHeight>
</TileMatrix>
<TileMatrix>
<ows:Identifier>EPSG:4326_beijing_w17_test_dpi96_GB:12</ows:Identifier>
<ScaleDenominator>72223.96373402509</ScaleDenominator>
<TopLeftCorner>90.0 -180.0</TopLeftCorner>
<TileWidth>512</TileWidth>
<TileHeight>512</TileHeight>
<MatrixWidth>24</MatrixWidth>
<MatrixHeight>20</MatrixHeight>
</TileMatrix>
<TileMatrix>
<ows:Identifier>EPSG:4326_beijing_w17_test_dpi96_GB:13</ows:Identifier>
<ScaleDenominator>36111.981867012546</ScaleDenominator>
<TopLeftCorner>90.0 -180.0</TopLeftCorner>
<TileWidth>512</TileWidth>
<TileHeight>512</TileHeight>
<MatrixWidth>47</MatrixWidth>
<MatrixHeight>39</MatrixHeight>
</TileMatrix>
<TileMatrix>
<ows:Identifier>EPSG:4326_beijing_w17_test_dpi96_GB:14</ows:Identifier>
<ScaleDenominator>18055.990933506273</ScaleDenominator>
<TopLeftCorner>90.0 -180.0</TopLeftCorner>
<TileWidth>512</TileWidth>
<TileHeight>512</TileHeight>
<MatrixWidth>94</MatrixWidth>
<MatrixHeight>76</MatrixHeight>
</TileMatrix>
<TileMatrix>
<ows:Identifier>EPSG:4326_beijing_w17_test_dpi96_GB:15</ows:Identifier>
<ScaleDenominator>9027.995466753136</ScaleDenominator>
<TopLeftCorner>90.0 -180.0</TopLeftCorner>
<TileWidth>512</TileWidth>
<TileHeight>512</TileHeight>
<MatrixWidth>188</MatrixWidth>
<MatrixHeight>151</MatrixHeight>
</TileMatrix>
<TileMatrix>
<ows:Identifier>EPSG:4326_beijing_w17_test_dpi96_GB:16</ows:Identifier>
<ScaleDenominator>4513.997733376568</ScaleDenominator>
<TopLeftCorner>90.0 -180.0</TopLeftCorner>
<TileWidth>512</TileWidth>
<TileHeight>512</TileHeight>
<MatrixWidth>376</MatrixWidth>
<MatrixHeight>300</MatrixHeight>
</TileMatrix>
<TileMatrix>
<ows:Identifier>EPSG:4326_beijing_w17_test_dpi96_GB:17</ows:Identifier>
<ScaleDenominator>2256.998866688284</ScaleDenominator>
<TopLeftCorner>90.0 -180.0</TopLeftCorner>
<TileWidth>512</TileWidth>
<TileHeight>512</TileHeight>
<MatrixWidth>751</MatrixWidth>
<MatrixHeight>598</MatrixHeight>
</TileMatrix>
<TileMatrix>
<ows:Identifier>EPSG:4326_beijing_w17_test_dpi96_GB:18</ows:Identifier>
<ScaleDenominator>1128.499433344142</ScaleDenominator>
<TopLeftCorner>90.0 -180.0</TopLeftCorner>
<TileWidth>512</TileWidth>
<TileHeight>512</TileHeight>
<MatrixWidth>1502</MatrixWidth>
<MatrixHeight>1195</MatrixHeight>
</TileMatrix>
</TileMatrixSet>
</Contents>
</Capabilities>GetTile
请求
请求参数
| 参数名称 | 是否必填 | 描述 |
|---|---|---|
| Service | 是 | 服务类型。必须为“WMTS”。 |
| Request | 是 | 请求名称。必须为GetCapabilities 操作。 |
| Version=1.0.0 | 是 | 版本号。必须是1.0.0 |
| Layer | 是 | 所请求的图层的名称 |
| Style | 是 | 样式。 所请求的样式必须是 Capabilities 文档中列出的 IGServer暂不支持该参数,可以不传 |
| Format | 是 | 格式。 IGServer支持默认的png格式 |
| TileMatrixSet | 是 | 瓦片矩阵集。 |
| TileMatrix | 是 | 瓦片矩阵。 |
| TileRow | 是 | 请求的瓦片行。 |
| TileCol | 是 | 请求的瓦片列。 |
请求示例
{{server}}/igs/rest/services/:serviceName/WMTSServer?request=GetTile&service=WMTS&version=1.0.0&layer=&style=default&format=png&tileMatrixSet=EPSG:4326_beijing_w17_test_dpi96_GB&tileMatrix=EPSG:4326_beijing_w17_test_dpi96_GB:0&tileRow=0&tileCol=0响应
GetFeatureInfo
请求
请求参数
| 参数名称 | 是否必填 | 描述 |
|---|---|---|
| Service | 是 | 服务类型。必须为“WMTS”。 |
| Request | 是 | 请求名称。必须为GetCapabilities 操作。 |
| Version=1.0.0 | 是 | 版本号。必须是1.0.0 |
| Layer | 是 | 所请求的图层的名称 |
| Style | 是 | 样式。 所请求的样式必须是 Capabilities 文档中列出的 IGServer暂不支持该参数,可以不传 |
| Format | 是 | 格式。 IGServer支持默认的png格式 |
| TileMatrixSet | 是 | 瓦片矩阵集。 |
| TileMatrix | 是 | 瓦片矩阵。 |
| TileRow | 是 | 请求的瓦片行。 |
| TileCol | 是 | 请求的瓦片列。 |
| J | 是 | 以像素表示的要素 Y 坐标(最上侧为0,向下递增)。 |
| I | 是 | 以像素表示的要素 X 坐标(最左侧为0,向右递增)。 |
| InfoFormat | 是 | 要素信息的返回格式(MIME 类型)。 IGServer支持test/html格式 |
请求示例
{{server}}/igs/rest/services/:serviceName/WMTSServer?service=WMTS&request=GetFeatureInfo&version=1.0.0&layer=&style=default&format=png&tileMatrixSet=EPSG:4326_beijing_w17_test_dpi96_GB&tileMatrix=EPSG:4326_beijing_w17_test_dpi96_GB:0&tileRow=0&tileCol=0&J=100&I=200&infoFormat=text/html响应
响应示例
html
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>ZDOGCServer GetFeatureInfo Output</title>
</head>
<style type="text/css">
table.featureInfo,
table.featureInfo td,
table.featureInfo th {
border: 1px solid #ddd;
border-collapse: collapse;
margin: 0;
padding: 0;
font-size: 90%;
padding: .2em .1em;
}
table.featureInfo th {
padding: .2em .2em;
font-weight: bold;
background: #eee;
text-align: center;
}
table.featureInfo td {
background: #fff;
text-align: center;
}
table.featureInfo tr.odd td {
background: #eee;
}
table.featureInfo caption {
text-align: left;
font-size: 100%;
font-weight: bold;
text-transform: uppercase;
padding: .2em .2em;
}
</style>
<body>
<div align="left">
<table class="featureInfo">
<th colspan="43">图层名称:北京市</th>
<tr>
<td>面积</td>
<td>周长</td>
<td>行政区代码</td>
<td>省名</td>
<td>名字拼音</td>
<td>分类索引</td>
<td>mpLayer</td>
<td>mpArea</td>
<td>mpPerimeter</td>
<td>GDP_2006</td>
<td>GDP_2007</td>
<td>GDP_2008</td>
<td>GDP_2009</td>
<td>GDP_2010</td>
<td>GDP_2011</td>
<td>第一产业增加值_2007</td>
<td>第一产业增加值_2008</td>
<td>第一产业增加值_2009</td>
<td>第一产业增加值_2010</td>
<td>第一产业增加值_2011</td>
<td>第二产业增加值_2007</td>
<td>第二产业增加值_2008</td>
<td>第二产业增加值_2009</td>
<td>第二产业增加值_2010</td>
<td>第二产业增加值_2011</td>
<td>第三产业增加值_2007</td>
<td>第三产业增加值_2008</td>
<td>第三产业增加值_2009</td>
<td>第三产业增加值_2010</td>
<td>第三产业增加值_2011</td>
<td>工业增加值_2007</td>
<td>工业增加值_2008</td>
<td>工业增加值_2009</td>
<td>工业增加值_2010</td>
<td>工业增加值_2011</td>
<td>房地产业增加值_2007</td>
<td>房地产业增加值_2008</td>
<td>房地产业增加值_2009</td>
<td>房地产业增加值_2010</td>
<td>房地产业增加值_2011</td>
<td>人口数</td>
<td>mapgis_style</td>
<td>COLOR_INDEX</td>
</tr>
</table>
<table class="featureInfo">
<th colspan="7">图层名称:绿地_1</th>
<tr>
<td>mpArea</td>
<td>mpPerimeter</td>
<td>mpLayer</td>
<td>osm_id</td>
<td>code</td>
<td>fclass</td>
<td>name</td>
</tr>
</table>
<table class="featureInfo">
<th colspan="7">图层名称:绿地_2</th>
<tr>
<td>mpArea</td>
<td>mpPerimeter</td>
<td>mpLayer</td>
<td>osm_id</td>
<td>code</td>
<td>fclass</td>
<td>name</td>
</tr>
</table>
<table class="featureInfo">
<th colspan="7">图层名称:绿地_3</th>
<tr>
<td>mpArea</td>
<td>mpPerimeter</td>
<td>mpLayer</td>
<td>osm_id</td>
<td>code</td>
<td>fclass</td>
<td>name</td>
</tr>
</table>
<table class="featureInfo">
<th colspan="7">图层名称:绿地_4</th>
<tr>
<td>mpArea</td>
<td>mpPerimeter</td>
<td>mpLayer</td>
<td>osm_id</td>
<td>code</td>
<td>fclass</td>
<td>name</td>
</tr>
</table>
<table class="featureInfo">
<th colspan="7">图层名称:水域_3</th>
<tr>
<td>mpArea</td>
<td>mpPerimeter</td>
<td>mpLayer</td>
<td>osm_id</td>
<td>code</td>
<td>fclass</td>
<td>name</td>
</tr>
</table>
<table class="featureInfo">
<th colspan="7">图层名称:水域_2</th>
<tr>
<td>mpArea</td>
<td>mpPerimeter</td>
<td>mpLayer</td>
<td>osm_id</td>
<td>code</td>
<td>fclass</td>
<td>name</td>
</tr>
</table>
<table class="featureInfo">
<th colspan="7">图层名称:水域_1</th>
<tr>
<td>mpArea</td>
<td>mpPerimeter</td>
<td>mpLayer</td>
<td>osm_id</td>
<td>code</td>
<td>fclass</td>
<td>name</td>
</tr>
</table>
<table class="featureInfo">
<th colspan="7">图层名称:大学</th>
<tr>
<td>mpArea</td>
<td>mpPerimeter</td>
<td>mpLayer</td>
<td>osm_id</td>
<td>code</td>
<td>fclass</td>
<td>name</td>
</tr>
</table>
<table class="featureInfo">
<th colspan="7">图层名称:学校</th>
<tr>
<td>mpArea</td>
<td>mpPerimeter</td>
<td>mpLayer</td>
<td>osm_id</td>
<td>code</td>
<td>fclass</td>
<td>name</td>
</tr>
</table>
<table class="featureInfo">
<th colspan="7">图层名称:动物园</th>
<tr>
<td>mpArea</td>
<td>mpPerimeter</td>
<td>mpLayer</td>
<td>osm_id</td>
<td>code</td>
<td>fclass</td>
<td>name</td>
</tr>
</table>
<table class="featureInfo">
<th colspan="7">图层名称:高尔夫</th>
<tr>
<td>mpArea</td>
<td>mpPerimeter</td>
<td>mpLayer</td>
<td>osm_id</td>
<td>code</td>
<td>fclass</td>
<td>name</td>
</tr>
</table>
<table class="featureInfo">
<th colspan="7">图层名称:观光胜地</th>
<tr>
<td>mpArea</td>
<td>mpPerimeter</td>
<td>mpLayer</td>
<td>osm_id</td>
<td>code</td>
<td>fclass</td>
<td>name</td>
</tr>
</table>
<table class="featureInfo">
<th colspan="7">图层名称:果园</th>
<tr>
<td>mpArea</td>
<td>mpPerimeter</td>
<td>mpLayer</td>
<td>osm_id</td>
<td>code</td>
<td>fclass</td>
<td>name</td>
</tr>
</table>
<table class="featureInfo">
<th colspan="7">图层名称:住宅用地</th>
<tr>
<td>mpArea</td>
<td>mpPerimeter</td>
<td>mpLayer</td>
<td>osm_id</td>
<td>code</td>
<td>fclass</td>
<td>name</td>
</tr>
</table>
<table class="featureInfo">
<th colspan="7">图层名称:医院</th>
<tr>
<td>mpArea</td>
<td>mpPerimeter</td>
<td>mpLayer</td>
<td>osm_id</td>
<td>code</td>
<td>fclass</td>
<td>name</td>
</tr>
</table>
<table class="featureInfo">
<th colspan="7">图层名称:商业用地</th>
<tr>
<td>mpArea</td>
<td>mpPerimeter</td>
<td>mpLayer</td>
<td>osm_id</td>
<td>code</td>
<td>fclass</td>
<td>name</td>
</tr>
</table>
<table class="featureInfo">
<th colspan="8">图层名称:建筑物</th>
<tr>
<td>mpArea</td>
<td>mpPerimeter</td>
<td>mpLayer</td>
<td>osm_id</td>
<td>code</td>
<td>fclass</td>
<td>name</td>
<td>type</td>
</tr>
</table>
<table class="featureInfo">
<th colspan="8">图层名称:铁路_1</th>
<tr>
<td>mpLength</td>
<td>mpLayer</td>
<td>osm_id</td>
<td>code</td>
<td>fclass</td>
<td>name</td>
<td>ClassID</td>
<td>等级</td>
</tr>
</table>
<table class="featureInfo">
<th colspan="8">图层名称:铁路_2</th>
<tr>
<td>mpLength</td>
<td>mpLayer</td>
<td>osm_id</td>
<td>code</td>
<td>fclass</td>
<td>name</td>
<td>ClassID</td>
<td>等级</td>
</tr>
</table>
<table class="featureInfo">
<th colspan="8">图层名称:铁路_3</th>
<tr>
<td>mpLength</td>
<td>mpLayer</td>
<td>osm_id</td>
<td>code</td>
<td>fclass</td>
<td>name</td>
<td>ClassID</td>
<td>等级</td>
</tr>
</table>
<table class="featureInfo">
<th colspan="11">图层名称:主干道</th>
<tr>
<td>mpLength</td>
<td>mpLayer</td>
<td>osm_id</td>
<td>code</td>
<td>fclass</td>
<td>name</td>
<td>oneway</td>
<td>maxspeed</td>
<td>layer</td>
<td>bridge</td>
<td>tunnel</td>
</tr>
</table>
<table class="featureInfo">
<th colspan="11">图层名称:主干道</th>
<tr>
<td>mpLength</td>
<td>mpLayer</td>
<td>osm_id</td>
<td>code</td>
<td>fclass</td>
<td>name</td>
<td>oneway</td>
<td>maxspeed</td>
<td>layer</td>
<td>bridge</td>
<td>tunnel</td>
</tr>
</table>
<table class="featureInfo">
<th colspan="11">图层名称:高速公路_1</th>
<tr>
<td>mpLength</td>
<td>mpLayer</td>
<td>osm_id</td>
<td>code</td>
<td>fclass</td>
<td>name</td>
<td>oneway</td>
<td>maxspeed</td>
<td>layer</td>
<td>bridge</td>
<td>tunnel</td>
</tr>
</table>
<table class="featureInfo">
<th colspan="11">图层名称:高速公路_1_9-10</th>
<tr>
<td>mpLength</td>
<td>mpLayer</td>
<td>osm_id</td>
<td>code</td>
<td>fclass</td>
<td>name</td>
<td>oneway</td>
<td>maxspeed</td>
<td>layer</td>
<td>bridge</td>
<td>tunnel</td>
</tr>
</table>
<table class="featureInfo">
<th colspan="11">图层名称:三级道路_链接</th>
<tr>
<td>mpLength</td>
<td>mpLayer</td>
<td>osm_id</td>
<td>code</td>
<td>fclass</td>
<td>name</td>
<td>oneway</td>
<td>maxspeed</td>
<td>layer</td>
<td>bridge</td>
<td>tunnel</td>
</tr>
</table>
<table class="featureInfo">
<th colspan="11">图层名称:三级道路</th>
<tr>
<td>mpLength</td>
<td>mpLayer</td>
<td>osm_id</td>
<td>code</td>
<td>fclass</td>
<td>name</td>
<td>oneway</td>
<td>maxspeed</td>
<td>layer</td>
<td>bridge</td>
<td>tunnel</td>
</tr>
</table>
<table class="featureInfo">
<th colspan="11">图层名称:二级道路_链接</th>
<tr>
<td>mpLength</td>
<td>mpLayer</td>
<td>osm_id</td>
<td>code</td>
<td>fclass</td>
<td>name</td>
<td>oneway</td>
<td>maxspeed</td>
<td>layer</td>
<td>bridge</td>
<td>tunnel</td>
</tr>
</table>
<table class="featureInfo">
<th colspan="11">图层名称:二级道路</th>
<tr>
<td>mpLength</td>
<td>mpLayer</td>
<td>osm_id</td>
<td>code</td>
<td>fclass</td>
<td>name</td>
<td>oneway</td>
<td>maxspeed</td>
<td>layer</td>
<td>bridge</td>
<td>tunnel</td>
</tr>
</table>
<table class="featureInfo">
<th colspan="11">图层名称:一级道路_链接</th>
<tr>
<td>mpLength</td>
<td>mpLayer</td>
<td>osm_id</td>
<td>code</td>
<td>fclass</td>
<td>name</td>
<td>oneway</td>
<td>maxspeed</td>
<td>layer</td>
<td>bridge</td>
<td>tunnel</td>
</tr>
</table>
<table class="featureInfo">
<th colspan="11">图层名称:一级道路</th>
<tr>
<td>mpLength</td>
<td>mpLayer</td>
<td>osm_id</td>
<td>code</td>
<td>fclass</td>
<td>name</td>
<td>oneway</td>
<td>maxspeed</td>
<td>layer</td>
<td>bridge</td>
<td>tunnel</td>
</tr>
</table>
<table class="featureInfo">
<th colspan="11">图层名称:主干道_链接</th>
<tr>
<td>mpLength</td>
<td>mpLayer</td>
<td>osm_id</td>
<td>code</td>
<td>fclass</td>
<td>name</td>
<td>oneway</td>
<td>maxspeed</td>
<td>layer</td>
<td>bridge</td>
<td>tunnel</td>
</tr>
</table>
<table class="featureInfo">
<th colspan="11">图层名称:主干道</th>
<tr>
<td>mpLength</td>
<td>mpLayer</td>
<td>osm_id</td>
<td>code</td>
<td>fclass</td>
<td>name</td>
<td>oneway</td>
<td>maxspeed</td>
<td>layer</td>
<td>bridge</td>
<td>tunnel</td>
</tr>
</table>
<table class="featureInfo">
<th colspan="11">图层名称:主干道</th>
<tr>
<td>mpLength</td>
<td>mpLayer</td>
<td>osm_id</td>
<td>code</td>
<td>fclass</td>
<td>name</td>
<td>oneway</td>
<td>maxspeed</td>
<td>layer</td>
<td>bridge</td>
<td>tunnel</td>
</tr>
</table>
<table class="featureInfo">
<th colspan="11">图层名称:高速公路_链接</th>
<tr>
<td>mpLength</td>
<td>mpLayer</td>
<td>osm_id</td>
<td>code</td>
<td>fclass</td>
<td>name</td>
<td>oneway</td>
<td>maxspeed</td>
<td>layer</td>
<td>bridge</td>
<td>tunnel</td>
</tr>
</table>
<table class="featureInfo">
<th colspan="11">图层名称:高速公路_2</th>
<tr>
<td>mpLength</td>
<td>mpLayer</td>
<td>osm_id</td>
<td>code</td>
<td>fclass</td>
<td>name</td>
<td>oneway</td>
<td>maxspeed</td>
<td>layer</td>
<td>bridge</td>
<td>tunnel</td>
</tr>
</table>
<table class="featureInfo">
<th colspan="11">图层名称:高速公路_2</th>
<tr>
<td>mpLength</td>
<td>mpLayer</td>
<td>osm_id</td>
<td>code</td>
<td>fclass</td>
<td>name</td>
<td>oneway</td>
<td>maxspeed</td>
<td>layer</td>
<td>bridge</td>
<td>tunnel</td>
</tr>
</table>
<table class="featureInfo">
<th colspan="11">图层名称:三级道路_链接</th>
<tr>
<td>mpLength</td>
<td>mpLayer</td>
<td>osm_id</td>
<td>code</td>
<td>fclass</td>
<td>name</td>
<td>oneway</td>
<td>maxspeed</td>
<td>layer</td>
<td>bridge</td>
<td>tunnel</td>
</tr>
</table>
<table class="featureInfo">
<th colspan="11">图层名称:三级道路</th>
<tr>
<td>mpLength</td>
<td>mpLayer</td>
<td>osm_id</td>
<td>code</td>
<td>fclass</td>
<td>name</td>
<td>oneway</td>
<td>maxspeed</td>
<td>layer</td>
<td>bridge</td>
<td>tunnel</td>
</tr>
</table>
<table class="featureInfo">
<th colspan="11">图层名称:二级道路_链接</th>
<tr>
<td>mpLength</td>
<td>mpLayer</td>
<td>osm_id</td>
<td>code</td>
<td>fclass</td>
<td>name</td>
<td>oneway</td>
<td>maxspeed</td>
<td>layer</td>
<td>bridge</td>
<td>tunnel</td>
</tr>
</table>
<table class="featureInfo">
<th colspan="11">图层名称:二级道路</th>
<tr>
<td>mpLength</td>
<td>mpLayer</td>
<td>osm_id</td>
<td>code</td>
<td>fclass</td>
<td>name</td>
<td>oneway</td>
<td>maxspeed</td>
<td>layer</td>
<td>bridge</td>
<td>tunnel</td>
</tr>
</table>
<table class="featureInfo">
<th colspan="11">图层名称:一级道路_链接</th>
<tr>
<td>mpLength</td>
<td>mpLayer</td>
<td>osm_id</td>
<td>code</td>
<td>fclass</td>
<td>name</td>
<td>oneway</td>
<td>maxspeed</td>
<td>layer</td>
<td>bridge</td>
<td>tunnel</td>
</tr>
</table>
<table class="featureInfo">
<th colspan="11">图层名称:一级道路</th>
<tr>
<td>mpLength</td>
<td>mpLayer</td>
<td>osm_id</td>
<td>code</td>
<td>fclass</td>
<td>name</td>
<td>oneway</td>
<td>maxspeed</td>
<td>layer</td>
<td>bridge</td>
<td>tunnel</td>
</tr>
</table>
<table class="featureInfo">
<th colspan="11">图层名称:主干道_链接</th>
<tr>
<td>mpLength</td>
<td>mpLayer</td>
<td>osm_id</td>
<td>code</td>
<td>fclass</td>
<td>name</td>
<td>oneway</td>
<td>maxspeed</td>
<td>layer</td>
<td>bridge</td>
<td>tunnel</td>
</tr>
</table>
<table class="featureInfo">
<th colspan="11">图层名称:主干道</th>
<tr>
<td>mpLength</td>
<td>mpLayer</td>
<td>osm_id</td>
<td>code</td>
<td>fclass</td>
<td>name</td>
<td>oneway</td>
<td>maxspeed</td>
<td>layer</td>
<td>bridge</td>
<td>tunnel</td>
</tr>
</table>
<table class="featureInfo">
<th colspan="11">图层名称:主干道</th>
<tr>
<td>mpLength</td>
<td>mpLayer</td>
<td>osm_id</td>
<td>code</td>
<td>fclass</td>
<td>name</td>
<td>oneway</td>
<td>maxspeed</td>
<td>layer</td>
<td>bridge</td>
<td>tunnel</td>
</tr>
</table>
<table class="featureInfo">
<th colspan="11">图层名称:高速公路_链接</th>
<tr>
<td>mpLength</td>
<td>mpLayer</td>
<td>osm_id</td>
<td>code</td>
<td>fclass</td>
<td>name</td>
<td>oneway</td>
<td>maxspeed</td>
<td>layer</td>
<td>bridge</td>
<td>tunnel</td>
</tr>
</table>
<table class="featureInfo">
<th colspan="11">图层名称:高速公路_2</th>
<tr>
<td>mpLength</td>
<td>mpLayer</td>
<td>osm_id</td>
<td>code</td>
<td>fclass</td>
<td>name</td>
<td>oneway</td>
<td>maxspeed</td>
<td>layer</td>
<td>bridge</td>
<td>tunnel</td>
</tr>
</table>
<table class="featureInfo">
<th colspan="11">图层名称:高速公路_2</th>
<tr>
<td>mpLength</td>
<td>mpLayer</td>
<td>osm_id</td>
<td>code</td>
<td>fclass</td>
<td>name</td>
<td>oneway</td>
<td>maxspeed</td>
<td>layer</td>
<td>bridge</td>
<td>tunnel</td>
</tr>
</table>
<table class="featureInfo">
<th colspan="6">图层名称:地铁</th>
<tr>
<td>mpLength</td>
<td>mpLayer</td>
<td>osm_id</td>
<td>code</td>
<td>fclass</td>
<td>name</td>
</tr>
</table>
<table class="featureInfo">
<th colspan="5">图层名称:地铁站POI</th>
<tr>
<td>mpLayer</td>
<td>osm_id</td>
<td>code</td>
<td>fclass</td>
<td>name</td>
</tr>
</table>
<table class="featureInfo">
<th colspan="5">图层名称:山顶</th>
<tr>
<td>mpLayer</td>
<td>osm_id</td>
<td>code</td>
<td>fclass</td>
<td>name</td>
</tr>
</table>
<table class="featureInfo">
<th colspan="9">图层名称:果园POI</th>
<tr>
<td>osm_id</td>
<td>code</td>
<td>fclass</td>
<td>name</td>
<td>gis_Label_RegInfo</td>
<td>gis_Label_Poly_One</td>
<td>gis_Label_Poly_Two</td>
<td>gis_Label_Poly_Area</td>
<td>mpLayer</td>
</tr>
</table>
<table class="featureInfo">
<th colspan="5">图层名称:汽车站点POI</th>
<tr>
<td>mpLayer</td>
<td>osm_id</td>
<td>code</td>
<td>fclass</td>
<td>name</td>
</tr>
</table>
<table class="featureInfo">
<th colspan="9">图层名称:大学POI</th>
<tr>
<td>osm_id</td>
<td>code</td>
<td>fclass</td>
<td>name</td>
<td>gis_Label_RegInfo</td>
<td>gis_Label_Poly_One</td>
<td>gis_Label_Poly_Two</td>
<td>gis_Label_Poly_Area</td>
<td>mpLayer</td>
</tr>
</table>
<table class="featureInfo">
<th colspan="9">图层名称:学校POI</th>
<tr>
<td>osm_id</td>
<td>code</td>
<td>fclass</td>
<td>name</td>
<td>gis_Label_RegInfo</td>
<td>gis_Label_Poly_One</td>
<td>gis_Label_Poly_Two</td>
<td>gis_Label_Poly_Area</td>
<td>mpLayer</td>
</tr>
</table>
<table class="featureInfo">
<th colspan="5">图层名称:中小学POI</th>
<tr>
<td>mpLayer</td>
<td>osm_id</td>
<td>code</td>
<td>fclass</td>
<td>name</td>
</tr>
</table>
<table class="featureInfo">
<th colspan="5">图层名称:幼儿园POI</th>
<tr>
<td>mpLayer</td>
<td>osm_id</td>
<td>code</td>
<td>fclass</td>
<td>name</td>
</tr>
</table>
<table class="featureInfo">
<th colspan="5">图层名称:医院POI</th>
<tr>
<td>mpLayer</td>
<td>osm_id</td>
<td>code</td>
<td>fclass</td>
<td>name</td>
</tr>
</table>
<table class="featureInfo">
<th colspan="5">图层名称:口腔医院POI</th>
<tr>
<td>mpLayer</td>
<td>osm_id</td>
<td>code</td>
<td>fclass</td>
<td>name</td>
</tr>
</table>
<table class="featureInfo">
<th colspan="5">图层名称:派出所POI</th>
<tr>
<td>mpLayer</td>
<td>osm_id</td>
<td>code</td>
<td>fclass</td>
<td>name</td>
</tr>
</table>
<table class="featureInfo">
<th colspan="5">图层名称:检察院POI</th>
<tr>
<td>mpLayer</td>
<td>osm_id</td>
<td>code</td>
<td>fclass</td>
<td>name</td>
</tr>
</table>
<table class="featureInfo">
<th colspan="5">图层名称:银行POI</th>
<tr>
<td>mpLayer</td>
<td>osm_id</td>
<td>code</td>
<td>fclass</td>
<td>name</td>
</tr>
</table>
<table class="featureInfo">
<th colspan="5">图层名称:邮局POI</th>
<tr>
<td>mpLayer</td>
<td>osm_id</td>
<td>code</td>
<td>fclass</td>
<td>name</td>
</tr>
</table>
<table class="featureInfo">
<th colspan="5">图层名称:体育馆POI</th>
<tr>
<td>mpLayer</td>
<td>osm_id</td>
<td>code</td>
<td>fclass</td>
<td>name</td>
</tr>
</table>
<table class="featureInfo">
<th colspan="5">图层名称:纪念碑POI</th>
<tr>
<td>mpLayer</td>
<td>osm_id</td>
<td>code</td>
<td>fclass</td>
<td>name</td>
</tr>
</table>
<table class="featureInfo">
<th colspan="5">图层名称:博物馆POI</th>
<tr>
<td>mpLayer</td>
<td>osm_id</td>
<td>code</td>
<td>fclass</td>
<td>name</td>
</tr>
</table>
<table class="featureInfo">
<th colspan="5">图层名称:名胜古迹点</th>
<tr>
<td>mpLayer</td>
<td>osm_id</td>
<td>code</td>
<td>fclass</td>
<td>name</td>
</tr>
</table>
<table class="featureInfo">
<th colspan="5">图层名称:主题公园POI</th>
<tr>
<td>mpLayer</td>
<td>osm_id</td>
<td>code</td>
<td>fclass</td>
<td>name</td>
</tr>
</table>
<table class="featureInfo">
<th colspan="5">图层名称:宾馆POI</th>
<tr>
<td>mpLayer</td>
<td>osm_id</td>
<td>code</td>
<td>fclass</td>
<td>name</td>
</tr>
</table>
<table class="featureInfo">
<th colspan="5">图层名称:百货店POI</th>
<tr>
<td>mpLayer</td>
<td>osm_id</td>
<td>code</td>
<td>fclass</td>
<td>name</td>
</tr>
</table>
<table class="featureInfo">
<th colspan="5">图层名称:便利店POI</th>
<tr>
<td>mpLayer</td>
<td>osm_id</td>
<td>code</td>
<td>fclass</td>
<td>name</td>
</tr>
</table>
<table class="featureInfo">
<th colspan="5">图层名称:书店POI</th>
<tr>
<td>mpLayer</td>
<td>osm_id</td>
<td>code</td>
<td>fclass</td>
<td>name</td>
</tr>
</table>
<table class="featureInfo">
<th colspan="5">图层名称:快餐POI</th>
<tr>
<td>mpLayer</td>
<td>osm_id</td>
<td>code</td>
<td>fclass</td>
<td>name</td>
</tr>
</table>
<table class="featureInfo">
<th colspan="5">图层名称:咖啡馆POI</th>
<tr>
<td>mpLayer</td>
<td>osm_id</td>
<td>code</td>
<td>fclass</td>
<td>name</td>
</tr>
</table>
<table class="featureInfo">
<th colspan="5">图层名称:电影院POI</th>
<tr>
<td>mpLayer</td>
<td>osm_id</td>
<td>code</td>
<td>fclass</td>
<td>name</td>
</tr>
</table>
<table class="featureInfo">
<th colspan="9">图层名称:高尔夫POI</th>
<tr>
<td>osm_id</td>
<td>code</td>
<td>fclass</td>
<td>name</td>
<td>gis_Label_RegInfo</td>
<td>gis_Label_Poly_One</td>
<td>gis_Label_Poly_Two</td>
<td>gis_Label_Poly_Area</td>
<td>mpLayer</td>
</tr>
</table>
<table class="featureInfo">
<th colspan="6">图层名称:村庄点</th>
<tr>
<td>mpLayer</td>
<td>osm_id</td>
<td>code</td>
<td>fclass</td>
<td>population</td>
<td>name</td>
</tr>
</table>
<table class="featureInfo">
<th colspan="6">图层名称:市镇点</th>
<tr>
<td>mpLayer</td>
<td>osm_id</td>
<td>code</td>
<td>fclass</td>
<td>population</td>
<td>name</td>
</tr>
</table>
<table class="featureInfo">
<th colspan="6">图层名称:区县点</th>
<tr>
<td>mpLayer</td>
<td>osm_id</td>
<td>code</td>
<td>fclass</td>
<td>population</td>
<td>name</td>
</tr>
</table>
<table class="featureInfo">
<th colspan="6">图层名称:首都点</th>
<tr>
<td>mpLayer</td>
<td>osm_id</td>
<td>code</td>
<td>fclass</td>
<td>population</td>
<td>name</td>
</tr>
</table>
</div>
</body>
</html>