谷歌地图 Api 标记未与 Reactjs 一起显示

IT技术 google-maps google-maps-api-3 google-maps-markers reactjs react-jsx
2021-05-12 04:47:18

我正在尝试用标记显示谷歌地图。我正在使用 React.js。地图显示在正确的位置,但标记没有显示,我在浏览器控制台中收到多个“对象不可扩展”错误

代码看起来像这样

/** @jsx React.DOM */
var Map = React.createClass({
  initialize: function() {
    var lat = parseFloat(this.props.lat);
    var lng = parseFloat(this.props.lon); 
    var myPosition = new google.maps.LatLng(lat,lng);
    var mapOptions = { 
     center: myPosition,
     zoom: 8
    };
    var map = new google.maps.Map(this.getDOMNode(), mapOptions);
    var marker = new google.maps.Marker({position: myPosition, title: 'Hi', map: map});
  },
  componentDidMount: function(){
this.initialize();
  },
  render:function(){
    return <div className="map"/>
  }
});

来自控制台的详细错误:

未捕获的类型错误:无法添加属性 k,对象不可扩展 VM3577:92

未捕获的类型错误:错误时无法添加属性,对象不可扩展 main.js:3

未捕获的类型错误:无法添加属性 k,对象不可扩展 VM3577:92

未捕获的类型错误:无法读取未定义的 VM3577:69 的属性“样式”

未捕获的类型错误:错误时无法添加属性,对象不可扩展

1个回答

Craig Savolainen 在此处对使用 Google 地图作为 React 组件进行了很好的解释,示例的要点在此处我使用以下代码完成了标记渲染:

var ExampleGoogleMap = React.createClass({  
    getDefaultProps: function () {
        return {
            initialZoom: 8,
            mapCenterLat: 43.6425569,
            mapCenterLng: -79.4073126,
        };
    },
    componentDidMount: function (rootNode) {
        var mapOptions = {
            center: this.mapCenterLatLng(),
            zoom: this.props.initialZoom
        },
        map = new google.maps.Map(document.getElementById('react-valuation-map'), mapOptions);
        var marker = new google.maps.Marker({position: this.mapCenterLatLng(), title: 'Hi', map: map});
        this.setState({map: map});
    },
    mapCenterLatLng: function () {
        var props = this.props;
        return new google.maps.LatLng(props.mapCenterLat, props.mapCenterLng);
    },
    render: function () {
        return (
            <div className='map-gic'></div>
        );
    }
});

工作jsFiddle