有没有人能够使用React渲染谷歌地图而不使用react-google-map插件?我正在尝试这样的事情:
var MapTab = React.createClass({
render: function() {
return <div className="map-container">
<div id='map' ></div>
</div>
},
componentDidMount: function(){
console.log("Hello")
window.onload = function(){
(function initMap() {
var markers = [];
var geocoder = new google.maps.Geocoder();
var map = new google.maps.Map(document.getElementById('map'), {
zoom: 12,
center: {lat: 37.7749300, lng: -122.4194200}
});
})();
}
}// end of cdm;
});
module.exports = MapTab;
我没有尝试过任何工作。我也尝试使用refs捕获地图,但也没有渲染地图。我已经将google地图脚本放在标题中(使用键),并验证了密钥在vanilla js项目中是有效的。
答案 0 :(得分:2)
使用componentDidMount,您知道地图容器div已加载,但您无法保证外部地图api已加载。 Google为您提供了一个回调函数选项(示例中为initMap())。
https://maps.googleapis.com/maps/api/js?key=&安培;回调= initMap
现在您可以按照以下步骤进行操作:地图组件安装完成后,您可以:
在您组件的this.initMap中,您可以执行地图内容,因为现在您知道您的容器和Google API已加载。
service.serveThat()
答案 1 :(得分:1)
摆脱window.onload
。到调用componentDidMount
方法时,窗口已经加载,因此initMap()
函数永远不会触发。
答案 2 :(得分:1)
您似乎还不熟悉React组件生命周期。
https://facebook.github.io/react/docs/react-component.html#the-component-lifecycle
或者:http://busypeoples.github.io/post/react-component-lifecycle/(这里有执行react方法的顺序表)
实际上,在 componentDidMount()(“DID-mount”表示该元素已经在页面上,所以你可以开始将事件绑定到它)
React Component的想法很有趣,所以我们不需要使用javascript的“ window.onload()”或jQuery的“ $(document).ready() “
因此,您的代码可以修改如下:
render: function() {
return <div className="map-container">
<div id='map' ></div>
</div>
},
componentDidMount: function(){
console.log("Hello")
var markers = [];
var geocoder = new google.maps.Geocoder();
var map = new google.maps.Map(document.getElementById('map'), {
zoom: 12,
center: {lat: 37.7749300, lng: -122.4194200}
});
}// end of cdm;
PS :此外,为了让地图显示,您需要设置地图容器的样式并正确映射(在您的
答案 3 :(得分:0)
您可以使用React Refs
轻松呈现google地图,这是与第三方库集成时的理想解决方案。像这样:
class App extends React.Component {
constructor(props){
super(props)
this.state = {
// no state for now..
}
// Use createRef() to create a reference to the DOM node we want
this.myMapContainer = React.createRef()
}
componentDidMount() {
// Instead of using: document.getElementById, use the ref we created earlier to access the element
let map = new google.maps.Map(this.myMapContainer.current, {
center: { lat: -34.9973268, lng: -58.582614 },
scrollwheel: false,
zoom: 4
})
}
render() {
return (
<div className="container">
<div ref={this.myMapContainer} id="map"></div>
<div id="text"><p>Google Maps now requires the use of a valid API Key.
That's why you see the popup window "This page can't load Google Maps correctly."</p>
<a href="https://developers.google.com/maps/documentation/javascript/get-api-key">Go get one!</a>
</div>
</div>
)
}
}
注意:不要忘记放置调用Google Maps API的<script>
。如果您使用create-react-app
创建了项目,则可以将脚本放置在public/index.html