瓦片地圖服務在線資源訪問總結

在線資源包括:天地圖、谷歌地圖、BingMap、OSM、Mapbox等html

參考:https://deyihu.github.io/src/maptalks-tileLayercollection/examples/?tdsourcetag=s_pcqq_aiomsggit

如下url中:github

Z-瓦片層級,通常支持0-18級,越大表明越清晰;web

X-瓦片列號,從西向東(0->360),依次0,1,2,……;服務器

Y-瓦片行號,從北向南(有些也多是從南向北),依次0,1,2,……;app

cesium中經過UrlTemplateImageryProvider類訪問:ide

1 new Cesium.UrlTemplateImageryProvider({ 2     //調用影像服務 
3     url: "https://mt1.google.cn/vt/lyrs=s&x={x}&y={y}&z={z}"
4 })

 其餘訪問方式:ui

 1 //leaflet訪問
 2 L.tileLayer('https://map.geoq.cn/ArcGIS/rest/services/ChinaOnlineCommunity/MapServer/tile/{z}/{y}/{x}', {  3     maxZoom: 18,  4     attribution: 'ArcGIS Map',  5     id: 'arcgis.streets'
 6 }).addTo(map);  7 
 8 //ol3
 9 new ol.layer.Tile({ 10     source: new ol.source.XYZ({ 11         url: 'https://mt2.google.cn/vt/lyrs=s&x={x}&y={y}&z={z}'
12  }) 13 }) 14 
15 //openlayers2
16 new OpenLayers.Layer.XYZ( 17     "layername", 18     ["https://mt1.google.cn/vt/lyrs=s&x={x}&y={y}&z={z}", 19         "https://mt2.google.cn/vt/lyrs=s&x={x}&y={y}&z={z}", 20         "https://mt3.google.cn/vt/lyrs=s&x={x}&y={y}&z={z}"
21  ], { 22         attribution: "XYZ Imagery", 23         transitionEffect: "resize"
24  } 25 )

 

不須要token的:google

一、arcgisurl

街道圖:

https://map.geoq.cn/ArcGIS/rest/services/ChinaOnlineCommunity/MapServer/tile/{z}/{y}/{x}

 

 

灰色圖:

https://map.geoq.cn/ArcGIS/rest/services/ChinaOnlineStreetGray/MapServer/tile/{z}/{y}/{x}

 

 

深藍夜色:

https://map.geoq.cn/ArcGIS/rest/services/ChinaOnlineStreetPurplishBlue/MapServer/tile/{z}/{y}/{x}

 

 

二、googlemap

lys參數可選值包括:h(街道圖)、m(街道圖)、p(街道圖)、r(街道圖)、s(影像無註記)、y(影像含註記)、t(地形圖)

街道圖:

https://www.google.cn/maps/vt?lyrs=m@189&gl=cn&x={x}&y={y}&z={z}

 

 

衛星圖:

https://www.google.cn/maps/vt?lyrs=s@189&gl=cn&x={x}&y={y}&z={z}(或者http://mt1.google.cn/vt/lyrs=s&x={x}&y={y}&z={z})

 

 

三、Amap(高德地圖)

街道:(z>=3纔有數據)

https://webrd01.is.autonavi.com/appmaptile?lang=zh_cn&size=1&scale=1&style=8&x={x}&y={y}&z={z}

 

影像圖:

https://webst01.is.autonavi.com/appmaptile?style=6&x={x}&y={y}&z={z}

 

四、OSM

街道圖(國外服務器,訪問較慢):

https://c.tile.openstreetmap.org/{z}/{x}/{y}.png

 

https://tile-b.openstreetmap.fr/hot/{z}/{x}/{y}.png

 

五、Mapbox

建築圖:(國內數據略陳舊)

https://b.tiles.mapbox.com/v3/osmbuildings.kbpalbpk/{z}/{x}/{y}.png

 

黑色底圖:

https://a.basemaps.cartocdn.com/dark_all/{z}/{x}/{y}.png

 

 

須要token

六、Mapbox

衛星圖:

https://a.tiles.mapbox.com/v4/mapbox.satellite/{z}/{x}/{y}.png?access_token=

 

街道圖:

https://a.tiles.mapbox.com/v4/mapbox.streets/{z}/{x}/{y}.png?access_token=

 

帶區劃黑底:

https://a.tiles.mapbox.com/v4/mapbox.dark/{z}/{x}/{y}.png?access_token=

 

七、天地圖(http://lbs.tianditu.gov.cn/server/MapService.html)

影像圖:(z>=1)

https://t0.tianditu.gov.cn/img_w/wmts?SERVICE=WMTS&REQUEST=GetTile&VERSION=1.0.0&LAYER=img&STYLE=default&TILEMATRIXSET=w&FORMAT=tiles&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}&tk=

 

矢量底圖:(z>=1)

https://t0.tianditu.gov.cn/vec_w/wmts?SERVICE=WMTS&REQUEST=GetTile&VERSION=1.0.0&LAYER=vec&STYLE=default&TILEMATRIXSET=w&FORMAT=tiles&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}&tk=9a516b0f2a8179bb68f73172cff4bd22

 

註記:(z>=1)

https://t2.tianditu.com/cia_w/wmts?service=wmts&request=GetTile&version=1.0.0&LAYER=cia&tileMatrixSet=w&TileMatrix={z}&TileRow={y}&TileCol={x}&style=default&tk=

 

八、BingMap

 

 

https://ecn.t0.tiles.virtualearth.net/tiles/a1.jpeg?g=7234

https://ecn.t0.tiles.virtualearth.net/tiles/a13.jpeg?g=7234

https://ecn.t0.tiles.virtualearth.net/tiles/a130.jpeg?g=7234

從Level1開始,g=7234/100/-10……爲任意正負整數

 

官網申請Key後,cesium中訪問方式:

1 new Cesium.BingMapsImageryProvider({ 2     url: 'https://dev.virtualearth.net', 3  key: bingmapToken, 4  mapStyle: Cesium.BingMapsStyle.AERIAL 5 })
相關文章
相關標籤/搜索