Vue3使用高德地图,自定义InfoWindow窗口

html部分

    <div ref="devinfowin" class="devinfowin" style="color: white;z-index: 100;">
      <el-button @click="closewin()">关闭</el-button>
    </div>

script部分

const { proxy } = getCurrentInstance() as any;

 // 省略一万行
infoWindow.setContent(proxy.$refs.devinfowin)

看下效果

你可能感兴趣的:(高德地图,前端,vue)