InfoWindow组件中“地图”的道具类型

时间:2018-12-27 16:55:18

标签: reactjs google-maps-react

当我要将InfoWindow组件的一个标记放入google-maps-react库中时,需要一个属性“地图”,根据文档说明,它是google.maps.Map属性。

我已经尝试过直接输入它的类型,但是它是必需的

  const MapContainer: React.SFC<Props> = props => {        
  <Map
      google={props.google}
      initialCenter={initialCenter}
      center={center}
      zoom={zoom}
      disableDefaultUI={true}
      onClick={ isClickable ? onMapClicked : undefined} 
    >
      <Marker 
        title={marker.title}
        label={marker.label}
        key={index}
        position={marker.position}
      >
        <InfoWindow
           google={props.google}
        >
          <span>some</span>
        </InfoWindow>
      </Marker>
 </Map>
}

道具源自MapProps

0 个答案:

没有答案