monanxiaozi
monanxiaozi
  • 发布:2023-08-11 09:50
  • 更新:2023-08-13 21:05
  • 阅读:298

请问下uniapp自带的高德SDK如何更换瓦片地址

分类:uni-app

请问下uniapp自带的高德SDK如何更换瓦片地址呢?有偿提问,有偿。

2023-08-11 09:50 负责人:无 分享
已邀请:
昭昭L

昭昭L - 开心就好

VueAMap.initAMapApiLoader({  
  key: 'your-amap-key',  
  v: '1.4.15',  
  plugin: Vue.prototype.$amap.plugin,  
  // 添加瓦片地址配置  
  callback() {  
    const mapObj = new AMap.Map('your-map-container-id');  
    // 替换高德地图的瓦片地址  
    mapObj.setMapStyle('amap://styles/custom_style_id');  
    mapObj.setLayers([  
      new AMap.TileLayer({  
        // 使用替换后的瓦片地址  
        getTileUrl: Vue.prototype.$amap.tileUrl,  
        zIndex: 10  
      })  
    ]);  
  }  
});
  • monanxiaozi (作者)

    我没太看懂这个....

    2023-08-29 21:36

要回复问题请先登录注册