React-Google-Maps DirectionsRenderer Panel

时间:2018-01-24 18:35:24

标签: react-google-maps

使用react-google-maps包装器时,是否有人知道如何使用“panel”作为路线渲染器中的道具来显示一个面板,该面板显示已映射的路线的文本说明。

https://tomchentw.github.io/react-google-maps/#directionsrenderer

1 个答案:

答案 0 :(得分:3)

能够通过将道具设置为:

来渲染路线面板
(props =>
  <GoogleMap defaultZoom={7}>
    {props.directions && <DirectionsRenderer directions={props.directions}
    panel={ document.getElementById('panel') } />}
    <div id="panel"></div>
  </GoogleMap>
);