3

当我尝试使用 Google 地图加载组件时(道具已按预期传递给组件),我只是收到一条消息"Loading map...",但未加载带有标记的地图。控制台中也没有错误。这是组件。我在这里做错了什么?

import React, {Component} from 'react';
import {Map, InfoWindow, Marker, GoogleApiWrapper} from 'google-maps-react';
import { Constants } from './../../utils/constants';

export class MapContainer extends Component {

    state = {
        selectedPlace: ''
    }

    onMarkerClick = (e) => {
        this.setState({selectedPlace: e.Name});
    }

  render() {
    return (
      <Map 
        google={this.props.google}
        style={{width: '20vw', height: '45vh', 'top': '1.5rem'}}
        containerStyle={{width: '20vw', height: '30vh'}}
        initialCenter={{
          lat: this.props.lat,
          lng: this.props.lng
        }}
        zoom={15}>
        {this.props.markers.length > 0 && // Rendering multiple markers for 
          this.props.markers.map((m) => {
            return (<Marker 
                      onClick={this.onMarkerClick}
                      name={this.state.selectedPlace}
                      position={{ lat: m.Latitude, lng: m.Longitude }}
                      key={m.Name} />);
          })
        }

        {this.props.markers && // Rendering single marker for supplier details map
          <Marker onClick={this.onMarkerClick}
                name={this.state.selectedPlace} />
        }

        <InfoWindow onClose={this.onInfoWindowClose}>
              <h4>{this.state.selectedPlace}</h4>
        </InfoWindow>
      </Map>
    );
  }
}

export default GoogleApiWrapper({
  apiKey: (Constants.GoogleMapsApiKey),
  language: "RU"
})(MapContainer)
4

2 回答 2

5

在您的代码和框演示中,您正在导出您的应用程序组件,您需要在其中呈现它。

export default GoogleApiWrapper({
  apiKey: "",
  language: "RU"
})(App);

const rootElement = document.getElementById("root");
ReactDOM.render(<App />, rootElement);

在这里,您正在渲染未由GoogleApiWrapperHOC 包装的应用程序组件。与其导出包装的应用程序,不如将其呈现如下:

App = GoogleApiWrapper({
  apiKey: "",
  language: "RU"
})(App);

const rootElement = document.getElementById("root");
ReactDOM.render(<App />, rootElement);
于 2019-06-26T16:22:52.257 回答
0

尝试以像素为单位设置地图的宽度和高度

style={{width: '200px', height: '450px', 'top': '1.5rem'}}
于 2019-06-25T16:20:56.843 回答