0

我需要在我的内部解析我的“M”和“N”

return (
 <Map
   google={this.props.google}
   zoom={14}
   style={mapStyles}
   initialCenter={{
      lat: 32.71573699,
      lng: -117.16108799
   }}
 >
 {this.props.policeCall.map(({ A, M, N }) => {
    return (
      <Marker
        onClick={this.onMarkerClick}
        name={A}
        position={{ lat: M, lng: N }}
      />)             
  })}

 {this.props.policeCall.map(({  M, N }) => {
    return (
        <HeatMap
          gradient={gradient}
          opacity={3}
          positions={{lat: parseFloat(M), lng: parseFloat(N)}} // parse this part
          radius={30}
        />)
 })}
 <InfoWindow
   marker={this.state.activeMarker}
   visible={this.state.showingInfoWindow}
   onClose={this.onClose}
 >
   <div>
     <h4>{this.state.selectedPlace.name}</h4>
   </div>
 </InfoWindow>
 </Map>
);

我如何解析我的 and n?my MandN是一个大数组的一部分,只为我的热图调用键 m 和 n 但解析它们并将它们用作我位置的浮点数。我正在使用 Redux 进行反应并从一个不同的 .js 文件传递​​数据,该文件内部有一个巨大的数组

4

0 回答 0