1

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

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

4

1 回答 1

4

能够通过将道具设置为:

(props =>
  <GoogleMap defaultZoom={7}>
    {props.directions && <DirectionsRenderer directions={props.directions}
    panel={ document.getElementById('panel') } />}
    <div id="panel"></div>
  </GoogleMap>
);
于 2018-01-24T19:21:30.007 回答