1

我正在尝试找到一个示例,说明如何在 admin-on-rest 框架(https :// /marmelab.com/admin-on-rest/)。

有人要看吗?

谢谢你。

4

1 回答 1

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. 例如,在您的 export const 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%` }} />}/> 

希望这有帮助

于 2019-02-25T08:08:53.403 回答