高德地图api添加腾讯地图服务

1.参考内容

https://lbs.amap.com/api/javascript-api/guide/layers/wms#tileurl

高德地图api添加腾讯地图服务_第1张图片

2.具体实现代码

 var tengxunLayer = new AMap.TileLayer({
			zIndex:2,
            getTileUrl: function(x , y, z){
			var y=Math.pow(2,z)-1-y;
			var num = x % 3;
			return 'https://rt'+num+'.map.gtimg.com/tile?z='+z+'&x='+x+'&y='+y+'&type=vector&styleid=1&version=328'
			}
			});
map.add(tengxunLayer);

3.结果

高德地图api添加腾讯地图服务_第2张图片

 

你可能感兴趣的:(高德地图)