gpt4 book ai didi

javascript - meteor 的谷歌地图

转载 作者:行者123 更新时间:2023-11-30 15:37:46 25 4
gpt4 key购买 nike

我在 Meteor 中安装了“meteor add dburles:google-maps”。我将此代码添加到 React 组件中,

...
import { GoogleMaps } from 'meteor/dburles:google-maps';
...
export default class Location extends TrackerReact(React.Component){
constructor(props) {
super(props);
this.state = {
...
};
GoogleMaps.load();
}
componentDidUpdate(){
GoogleMaps.create({
name: 'exampleMap',
element: document.getElementById('basic_map'),
options: {
center: new google.maps.LatLng(-37.8136, 144.9631),
zoom: 8
}
});
}
render() {
...
return (
...
<div id="basic_map" style={{"width":"300px","height":"300px"}}></div>
...
)
}

这里的问题是错误“google not defined”。我认为是从这行代码,

google.maps.LatLng(-37.8136, 144.9631),

我在安装过程中遗漏了什么吗?我怎样才能解决这个问题?我正在使用 Meteor、ReactJs、Flow router 和 TrackerReact

最佳答案

那是因为 google 还没有加载。在点击创建之前,请务必检查 GoogleMaps.loaded()

作者 David Burles 写了一个很好的 example using the library with react ,应该会有帮助。它使用 createContainer 而不是 TrackerReact,但应该能让您走上正轨。

关于javascript - meteor 的谷歌地图,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41256432/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com