0

我似乎无法显示从我的 json 到 google-maps-react 的索引,我可以看到映射出的所有标记,但它们显示默认标记,没有弹出窗口。这是<InfoWindow>放置的代码,反应抱怨我必须放置一个父 div,当我这样做时,我目前没有看到任何标记。

我的 car2go json 映射正确,只是没有打印出来name={content.name}

我的 map.js 组件:

import React, { Component } from "react";
import Car2go from "../data/car2go/vehicles.json";
import { Map, InfoWindow, Marker, GoogleApiWrapper } from "google-maps-react";

export class MapContainer extends Component {
  constructor(props) {
    super(props);
    this.onMarkerClick = this.onMarkerClick.bind(this);
    this.state = {
      showingInfoWindow: false,
      activeMarker: {},
      selectedPlace: {},
      name: null
    };
  }
  onMarkerClick(props, marker, e) {
    this.setState({
      selectedPlace: props,
      activeMarker: marker,
      showingInfoWindow: true
    });
  }
  render() {
    const google = window.google;
    const style = {
      width: "70%",
      height: "70%",
      margin: "0 auto"
    };
    //const google = window.google;
    return (
      <Map
        google={this.props.google}
        style={style}
        initialCenter={{
          lat: 53.59301,
          lng: 10.07526
        }}
        zoom={12}
        onClick={this.onMapClicked}
      >
        {Car2go.placemarks.map((content, index) => {
          return (
            <div>
              <Marker
                title={index}
                name={content.name}
                position={{
                  lat: content.coordinates[1],
                  lng: content.coordinates[0]
                }}
                onClick={this.onMarkerClick}
                name={content.name}
              />

              <InfoWindow
                marker={this.state.activeMarker}
                visible={this.state.showingInfoWindow}
              >
                <div>
                  <h1>{this.state.selectedPlace.name}</h1>
                </div>
              </InfoWindow>
            </div>
          );
        })}
      </Map>
    );
  }
}

export default GoogleApiWrapper({
  apiKey: "xxxxx"
})(MapContainer);
4

1 回答 1

1

我猜 React 正在抱怨类似于这个的错误:

React 无法识别mapCenterDOM 元素上的 prop

如果是这样,则此错误的根本原因与使用容器包装Marker组件有关:div

<div>
    <Marker 
       ...  
    />
</div>

以及google-maps-react Map组件如何呈现子元素的方式。在这种情况下,Map道具会转移到div元素而不是Marker组件。有关更多详细信息,请参阅未知道具警告文章。

为了规避这个错误,可以考虑以下方法:

  • div容器替换为React.Fragment
  • 将地图道具显式传输到Marker组件

这是一个例子:

class Map extends Component {
  constructor() {
    super();
    this.state = {
      map: null
    };
    this.handleMapReady = this.handleMapReady.bind(this);
  }

  handleMapReady(mapProps, map) {
    this.setState({ map: map });
  }

  render() {
    return (
      <Map
        google={this.props.google}
        className={"map"}
        initialCenter={this.props.center}
        zoom={this.props.zoom}
        onReady={this.handleMapReady}
      >
        {this.state.map &&
          places.map((place, i) => {
            const mapProps = Object.assign({}, this.props);
            mapProps.map = this.state.map;
            return (
              <React.Fragment key={i}>
                <Marker
                  {...mapProps}
                  onClick={this.handleMarkerClick}
                  position={place.position}
                  placeIndex={i}
                  name={place.name}
                />
              </React.Fragment>
            );
          })}
      </Map>
    );
  }
}

但我会提出另一种方法,而不是上面描述的更改,特别是创建一个组件实例InfoWindow并管理它,如下所示:

<Map
    google={this.props.google}
    className={"map"}
    initialCenter={this.props.center}
    zoom={this.props.zoom}
  >
    {places.map((place, i) => {
      return (
        <Marker
          key={i}
          onClick={this.handleMarkerClick}
          position={place.position}
          placeIndex={i}
          name={place.name}
        />
      );
    })}
    <InfoWindow
      marker={this.state.activeMarker}
      visible={this.state.showingInfoWindow}
      onClose={this.handleClose}
    >
      <div>{this.state.selectedPlace.name}</div>
    </InfoWindow>
  </Map>

这是一个演示

于 2019-05-14T08:27:09.187 回答