我正在尝试使用 react 和谷歌地图构建地图应用程序,我设法创建谷歌地图组件并使用地图,但是,当添加导航栏组件时,我找不到将地图高度调整到空间的方法左侧没有显示滚动条。
Navbar 组件来自引导程序,我不知道它是否有所作为。
地图组件
import React from 'react';
import { GoogleMap, withScriptjs, withGoogleMap } from 'react-google-maps';
const INIT_VALUES = {
initialZoom: 10,
center: { lat: -27.593500, lng: -48.558540 },
};
function Map() {
return (
<GoogleMap
defaultCenter={INIT_VALUES.center}
defaultZoom={INIT_VALUES.initialZoom}
/>
);
}
const WrappedMap = withScriptjs(withGoogleMap(Map));
export default WrappedMap;
应用程序组件
import React, { useEffect } from 'react';
import MapNavbar from './components/navbar/index';
import WrappedMap from './components/map/index';
import './App.css';
const MAP_KEY = 'https://maps.googleapis.com/maps/api/js?v=3.exp&libraries=geometry,drawing,places&key=******';
const mapStyles = {
width: '100%',
height: '100vh',
};
async function fetchData(callback) {
const response = await fetch('http://localhost:5000/');
const data = await response.json();
callback(data);
}
function App() {
useEffect(() => {
fetchData((a) => console.log(a));
}, []);
return (
<div className="App">
<MapNavbar />
<div style={mapStyles}>
<WrappedMap
googleMapURL={MAP_KEY}
loadingElement={<div style={{ height: '100%' }} />}
containerElement={<div style={{ height: '100%' }} />}
mapElement={<div style={{ height: '100%' }} />}
/>
</div>
</div>
);
}
export default App;
开心每一天1111
慕哥6287543
明月笑刀无情
随时随地看视频慕课网APP
相关分类