在admin-on-rest面板中显示google maps组件

时间:2017-05-22 19:23:09

标签: google-maps reactjs admin-on-rest

我试图找到一个示例,说明如何在admin-on-rest框架(https://github.com/istarkov/google-map-react)中使用任何Google Maps React组件(如此https://marmelab.com/admin-on-rest/)。< / p>

有人看一眼吗?

谢谢。

1 个答案:

答案 0 :(得分:0)

  1. npm install --save react-google-maps#或 yarn add react-google-maps

  2. import { GoogleMap,withScriptjs,withGoogleMap, Marker } from "react-google-maps"

3。

 export const MyMapComponent = withScriptjs(withGoogleMap((props) =>
 <GoogleMap
    defaultZoom={8}
    defaultCenter={{ lat: 24.715297, lng: 46.671848 }}>
    {props.isMarkerShown && <Marker position={{ lat: 24.715297, lng: 46.671848 }} />}

  </GoogleMap>))
  1. 例如在您的导出常量postCreate中调用它
<MyMapComponent
  isMarkerShown
  googleMapURL="https://maps.googleapis.com/maps/api/js?v=3.exp&libraries=geometry,drawing,places"
  loadingElement={<div style={{ height: `100%` }} />}
  containerElement={<div style={{ height: `400px`,width:`500px`,paddingTop:`100px` }} />}
  mapElement={<div style={{ height: `100%` }} />}/> 

希望获得帮助