0
我使用的是ES2015反應javascript和當我使用谷歌,地圖反應的包我有我的控制檯以下異常:谷歌 - 地圖反應的不工作
warning.js: 36警告:不建議使用主React包 訪問PropType。改爲使用npm中的prop-types包。
map.jsx:
import React , {Component} from 'react';
import {Map} from 'google-maps-react';
class MapView extends Component{
render(){
return(
<div className="google-map">
<Map google={this.props.google} zoom={14} />
</div>
)
}
}
export default MapView;