超图二维平台接入升级授权后的在线天地图服务
1、首先到天地图官网进行tk申请;
网址:www.tianditiu.gov.cn
2、利用超图接口配置接入天地图服务:
//在线天地图影像
var url=["http://t0.tianditu.gov.cn/img_c/wmts?tk=自己申请的tk"
,"http://t1.tianditu.gov.cn/img_c/wmts?tk=自己申请的tk"
,"http://t2.tianditu.gov.cn/img_c/wmts?tk=自己申请的tk"
,"http://t3.tianditu.gov.cn/img_c/wmts?tk=自己申请的tk"
,"http://t4.tianditu.gov.cn/img_c/wmts?tk=自己申请的tk"
,"http://t5.tianditu.gov.cn/img_c/wmts?tk=自己申请的tk"
,"http://t6.tianditu.gov.cn/img_c/wmts?tk=自己申请的tk"
,"http://t7.tianditu.gov.cn/img_c/wmts?tk=自己申请的tk"
];
var layer = new SuperMap.Layer.WMTS({name: "在线天地图影像",
url: url,
layer: "img", //图层名称
style: "default", //图层样式
matrixSet: "c",//发布的标识符矩阵集,c为经纬度,w为web墨卡托
format: "tiles",
opacity: 1,
requestEncoding:"KVP"
});
//=================================================================
//在线天地图底图
var url=[
"http://t0.tianditu.gov.cn/vec_c/wmts?tk=自己申请的tk"
,"http://t1.tianditu.gov.cn/vec_c/wmts?tk=自己申请的tk"
, "http://t2.tianditu.gov.cn/vec_c/wmts?tk=自己申请的tk"
,"http://t3.tianditu.gov.cn/vec_c/wmts?tk=自己申请的tk"
, "http://t4.tianditu.gov.cn/vec_c/wmts?tk=自己申请的tk"
,"http://t5.tianditu.gov.cn/vec_c/wmts?tk=自己申请的tk"
, "http://t6.tianditu.gov.cn/vec_c/wmts?tk=自己申请的tk"
,"http://t7.tianditu.gov.cn/vec_c/wmts?tk=自己申请的tk"
];
var layer = new SuperMap.Layer.WMTS({name: "在线天地图底图",
url: url,
layer: "vec", //图层名称
style: "default", //图层样式
matrixSet: "c",//发布的标识符矩阵集,c为经纬度,w为web墨卡托
format: "tiles",
opacity: 1,
requestEncoding:"KVP"
});
//====================================================================
//在线天地图中文注记
var url=[
"http://t0.tianditu.gov.cn/cva_c/wmts?tk=自己申请的tk"
,"http://t1.tianditu.gov.cn/cva_c/wmts?tk=自己申请的tk"
,"http://t2.tianditu.gov.cn/cva_c/wmts?tk=自己申请的tk"
,"http://t3.tianditu.gov.cn/cva_c/wmts?tk=自己申请的tk"
,"http://t4.tianditu.gov.cn/cva_c/wmts?tk=自己申请的tk"
,"http://t5.tianditu.gov.cn/cva_c/wmts?tk=自己申请的tk"
,"http://t6.tianditu.gov.cn/cva_c/wmts?tk=自己申请的tk"
,"http://t7.tianditu.gov.cn/cva_c/wmts?tk=自己申请的tk"
];
var layer = new SuperMap.Layer.WMTS({name: "在线天地图中文注记",
url: url,
layer: "cva", //图层名称
style: "default", //图层样式
matrixSet: "c",//发布的标识符矩阵集,c为经纬度,w为web墨卡托
format: "tiles",
opacity: 1,
requestEncoding:"KVP"
});
转载自:https://blog.csdn.net/qq_36377037/article/details/86510024