高德地图叠加google的地图图层

来源:互联网 发布:linux samba客户端 编辑:程序博客网 时间:2024/04/28 10:12

高德地图叠加谷歌地图图层

var google = null;

google = new AMap.TileLayer({
           zIndex:70,
           //图块取图地址
            tileUrl:'https://mt{1,2,3,0}.google.cn/vt/lyrs=m@142&hl=zh-CN&gl=cn&x=[x]&y=[y]&z=[z]&s=Galil'  
  });
 google.setMap(map);

高德地图叠加谷歌卫星地图图层

var googleWX= null;

googleWX = new AMap.TileLayer({
           //图块取图地址
           tileUrl:'https://mt{1,2,3,0}.google.cn/maps/vt?lyrs=s@194&hl=zh-CN&gl=cn&x=[x]&y=[y]&z=[z]'
 });
 googleWX.setMap(map);

高德地图叠加高德卫星地图图层

var gdWX= null;

gdWX = new AMap.TileLayer({
            //图块取图地址
           tileUrl:'https://webst{01,02,03,04}.is.autonavi.com/appmaptile?style=6&x=[x]&y=[y]&z=[z]'
 });
  gdWX.setMap(map);

移除图层

google.setMap(null);

googleWX.setMap(null);

gdWX.setMap(null);
      

                                                                                                                                                                       -----  yt.Liu 





0 0