当前位置:  开发笔记 > 编程语言 > 正文

Google地图在React App中无法渲染

如何解决《Google地图在ReactApp中无法渲染》经验,为你挑选了1个好方法。

我正在使用这个package.json我用于谷歌地图的组件的库是这个

{
  "name": "webpack-win",
  "version": "1.0.0",
  "description": "none",
...
  "dependencies": {
    "alt": "^0.18.1",
    "alt-container": "^1.0.0",
    "google-map-react": "^0.9.3",
    "history": "^1.17.0",
    "material-design-icons": "^2.1.3",
    "material-ui": "^0.14.1",
    "open-browser-webpack-plugin": "0.0.2",
    "react": "^0.14.5",
    "react-dom": "^0.14.5",
    "react-router": "^1.0.3",
    "react-tap-event-plugin": "^0.2.1"
  },
     ...

}

我的标记画在闪光灯然后它们消失了,谷歌地图永远不会渲染,我的组件是基于谷歌地图反应的简单地图的例子,当我尝试在React-Router中渲染它时,没有显示App的儿童属性似乎是空值.

import React from 'react';
import shouldPureComponentUpdate from 'react-pure-render/function';
import GoogleMap from 'google-map-react';
import MyGreatPlace from './MapPlace.js';

export default class SimpleMapPage extends React.Component {
    static propTypes = {
        center: React.PropTypes.array,
        zoom: React.PropTypes.number,
        greatPlaceCoords: React.PropTypes.any
    };

    static defaultProps = {
        center: [59.938043, 30.337157],
        zoom: 9,
        greatPlaceCoords: {lat: 59.724465, lng: 30.080121}
    };

    shouldComponentUpdate = shouldPureComponentUpdate;

    constructor(props) {
        super(props);
    }

    render() {
        return (
            
i worked
); } }

我的应用看起来像这样

const App = React.createClass({
  render() {
    return (
        
{this.props.children}
) } }) render(( ), document.getElementById('ReactApp'))

任何帮助将不胜感激,我最好的猜测是它与React 0.14不能正常工作,可能是由于一些变化.



1> Muhammad Fai..:

我通过申请课来解决这个问题.

.map {
    width: 1000px;
    height: 1000px;
}

这个问题是在地图容器必须有一个高度或宽度,让高度宽度百分比不会工作.容器必须有自己的空间.要渲染.

推荐阅读
有风吹过best
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有