admin管理员组文章数量:1343311
I am working with the react-google-maps package and . I have an error that says:
./src/App.js Line 31: 'google' is not defined no-undef Line 32: 'google' is not defined no-undef Line 37: 'google' is not defined no-undef Line 42: 'google' is not defined no-undef Line 44: 'google' is not defined no-undef
and heres my line in the error:
state = {
origin: new google.maps.LatLng(41.8507300, -87.6512600),
destination: new google.maps.LatLng(41.8525800, -87.6514100),
directions: null,
}
ponentDidMount() {
const DirectionsService = new google.maps.DirectionsService();
DirectionsService.route({
origin: this.state.origin,
destination: this.state.destination,
travelMode: google.maps.TravelMode.DRIVING,
}, (result, status) => {
if (status === google.maps.DirectionsStatus.OK) {
this.setState({
directions: result,
});
} else {
console.error(`error fetching directions ${result}`);
}
});
}
all the 'google' thing is error.
I am working with the react-google-maps package https://github./tomchentw/react-google-maps and https://www.npmjs./package/react-google-maps. I have an error that says:
./src/App.js Line 31: 'google' is not defined no-undef Line 32: 'google' is not defined no-undef Line 37: 'google' is not defined no-undef Line 42: 'google' is not defined no-undef Line 44: 'google' is not defined no-undef
and heres my line in the error:
state = {
origin: new google.maps.LatLng(41.8507300, -87.6512600),
destination: new google.maps.LatLng(41.8525800, -87.6514100),
directions: null,
}
ponentDidMount() {
const DirectionsService = new google.maps.DirectionsService();
DirectionsService.route({
origin: this.state.origin,
destination: this.state.destination,
travelMode: google.maps.TravelMode.DRIVING,
}, (result, status) => {
if (status === google.maps.DirectionsStatus.OK) {
this.setState({
directions: result,
});
} else {
console.error(`error fetching directions ${result}`);
}
});
}
all the 'google' thing is error.
Share Improve this question edited Aug 18, 2017 at 2:30 Deee asked Aug 18, 2017 at 2:13 DeeeDeee 4292 gold badges10 silver badges27 bronze badges3 Answers
Reset to default 7the answer is I didnt include this line /* global google */
to the top of my file.
If google
is not defined, than you didn't load Google Maps API correctly. As explained in react-google-maps
's README, put this in your HTML before your React ponent code loads:
<script src="https://maps.googleapis./maps/api/js?key=YOUR_GOOGLE_MAPS_API_KEY_GOES_HERE"></script>
you can also just include window reference to resolve the error, at least with default create-react-app config it does
new window.google.maps.LatLng(41.8507300, -87.6512600)
本文标签: javascriptReactjs reactgooglemaps undefinedStack Overflow
版权声明:本文标题:javascript - Reactjs react-google-maps undefined - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743720366a2527464.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论