高德地图弹窗AMap.InfoWindow()如何使用react组件作为content

问题介绍

AMap.InfoWindow()用于在地图上弹出详细信息展示窗体。其参数Options中的content属性接受类型为String/HTMLElement,无法直接渲染React组件。你可以查看高德地图API官方文档了解更多信息

解决思路

react-amap是一个基于React封装的高德地图组件库,提供了一种插槽式API,允许将React组件作为InfoWindow的内容。让我们深入了解作者是如何实现的。通过查看github源码,我们可以发现作者是如何创建一个HTML元素作为content,并将React组件渲染到这个div中:

js 复制代码
setChild(props: IWProps) {
    const child = props.children
    if (this.infoDOM && child) {
      render(<div>{child}</div>, this.infoDOM)  // infoDOM: HTMLElement
    } else {
      if (props.children) {
        console.warn('因为你设置 isCustom 为 true,InfoWindow 的 Children 被忽略')
      }
    }
  }

在 React 18 中,render 函数被 createRoot 函数替换,我们直接来看看一个react项目的入口是如何实现渲染的

html 复制代码
//index.html
<!doctype html>
<html lang="en">
  <head>
  ...
  </head>
  <body>
    <div id="root"></div>
    <script type="module" src="/src/main.tsx"></script>
  </body>
</html>
js 复制代码
//main.ts
import ReactDOM from 'react-dom/client'
import App from './App.tsx'

ReactDOM.createRoot(document.getElementById('root')!).render(
  <App />
)

上述代码显示,首先在index.html中创建了一个根节点,然后在main.ts中使用createRoot创建React根元素,最后调用render方法进行渲染。

解决步骤

参考上面的代码,想要在高德地图的InfoWindow中渲染React组件,可以按以下步骤进行:

  1. 创建一个HTML元素:
js 复制代码
const window = document.createElement('div')
  1. 使用ReactDOM.createRoot将React组件渲染到HTML元素中:
js 复制代码
ReactDOM.createRoot(window).render(<YourComponent />)
  1. 使用AMap.InfoWindow(),将之前创建的HTML元素作为content:
js 复制代码
const Window = new AMap.InfoWindow({
  isCustom: true, // 使用自定义窗体
  content: window
})

效果对比

如果我们直接使用React组件效果如下:

js 复制代码
const Window = new AMap.InfoWindow({
  isCustom: true, // 使用自定义窗体
  content: <InfoWindow />
})

而使用上文提供的方法的效果如下:

相关推荐
GISer_Jing22 分钟前
Zustand 状态管理库:极简而强大的解决方案
前端·javascript·react.js
红衣信1 小时前
探索 TTS 智能语音:从前端体验到 React 音乐播放实现
前端·react.js
就是我1 小时前
【React Hook】深入浅出:10分钟理解useContext
前端·javascript·react.js
EndingCoder3 小时前
React Native 导航系统实战(React Navigation)
前端·react native·react.js·前端框架·跨端
EndingCoder3 小时前
React Native 基础语法与核心组件:深入指南
javascript·react native·react.js·跨端
程序员小刘3 小时前
基于 React Native for HarmonyOS5 的跨平台组件库开发指南,以及组件示例
javascript·react native·react.js·harmonyos
刺客-Andy3 小时前
React 第五十八节 Router中StaticRouterProvider的使用详解及案例
前端·react.js·前端框架
korgs3 小时前
20、React常用API和Hook索引
前端·react.js·前端框架
工呈士3 小时前
前端模块化的过去和未来
前端·react.js·面试
程序员阿超的博客3 小时前
React父子组件通信:Props怎么用?如何从父组件向子组件传递数据?
前端·javascript·react.js