私はgoogle-map-react
を使用しようとしていますが、レンダリングしようとすると何も表示されません。何か不足していますか?Google Map React not appear
import GoogleMap from 'google-map-react';
import React, { Component } from 'react';
class GMaps extends Component {
static defaultProps = {
center: {lat: 59.95, lng: 30.33},
zoom: 11
};
render() {
return (
<div>
<GoogleMap
style={{width: "100%", height: "500"}}
defaultCenter={this.props.center}
defaultZoom={this.props.zoom}
/>
</div>
)
}
}
作品もここhttps://jsbin.com/xoqogolake/1/edit?js,console,output。何かエラーが出ますか?どのようにレンダリングしていますか –
私は間違いをしていません。 – joethemow
はい、これは、どのようにユーザーの現在の場所を取得する考えですか? – joethemow