您好,登录后才能下订单哦!
小编给大家分享一下GIS中mapbox gl有哪些底图的加载,希望大家阅读完这篇文章之后都有所收获,下面让我们一起去探讨吧!
<script>
var map = new mapboxgl.Map({
container: 'map',
style: {
//目前地图的版本用8
"version": 8,
//数据源,可以设置多个数据源
"sources": {
"mapsource": {
//数据源类型是 raster
"type": "raster",
//切片的地址:arcgis server 只有发布了切片才能这样进行访问,具体参照arcgis server的wmts发布
"tiles": ['http://map.geoq.cn/arcgis/rest/services/ChinaOnlineCommunity/MapServer/WMTS/tile/1.0.0/ChinaOnlineCommunity/default/default028mm/{z}/{y}/{x}.png']
//切片的尺寸,一般都是256
"tileSize": 256,
}
},
//加载数据源里的图层
"layers": [{
"id": "mapsource",
"type": "raster",
//数据源选择source中的id
"source": "mapsource",
//设置图层的可缩放级别
"minzoom": 0,
"maxzoom": 18
} ]
}
});
</script>
//加载天地图的矢量和注记图层
style: {
"version": 8,
"sources": {
"mapsource": {
"type": "raster",
//天地图的影像切片,现在天地图需要申请token
"tiles":
['http://t1.tianditu.com/vec_w/wmts?service=wmts&request=GetTile&version=1.0.0&LAYER=vec&tileMatrixSet=w&TileMatrix={z}&TileRow={y}&TileCol={x}&style=default&format=tiles&tk=<your token>'],
"tileSize": 256,
},
//注记的数据源,source中可以添加多个
annotationsource": {
"type": "raster",
"tiles": [' http://t0.tianditu.com/cva_w/wmts?service=wmts&request=GetTile&version=1.0.0&LAYER=cva&tileMatrixSet=w&TileMatrix={z}&TileRow={y}&TileCol={x}&style=default&format=tiles&tk=<your token>'],
"tileSize": 256,
}
},
//分别加载多个天地图的图层
"layers": [{
"id": "mapsource",
"type": "raster",
"source": "mapsource",
"minzoom": 0,
"maxzoom": 18
},{
"id": "annotationsource",
"type": "raster",
"source": "annotationsource",
"minzoom": 0,
"maxzoom":18
}]
}
看完了这篇文章,相信你对“GIS中mapbox gl有哪些底图的加载”有了一定的了解,如果想了解更多相关知识,欢迎关注亿速云行业资讯频道,感谢各位的阅读!
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。