我使用了这个npm包"google-maps-react">链接,有没有办法禁用/删除全屏,街景功能?我试图找到方法,但似乎没有办法为这个图书馆,请帮助我。这是我的代码。
const myComp = props => {
return(
<Map
google={props.google}
style={{ width: "100%", height: "100%" }}
zoom={12}
onDragend={handleMapCenterChanged}
onReady={fetchPlaces}
>
</Map>
)
}
export default connect(
mapStateToProps,
{}
)(
GoogleApiWrapper({
apiKey: API_KEY,
LoadingContainer: LoadingContainer,
})(myComp)
)
要在使用google-maps-react库时禁用这些控件,您需要将每个控件的参数设置为false
。你可以这样写:
<Map
google={this.props.google}
zoom={14}
style={mapStyles}
initialCenter={{ lat: 40.756795, lng: -73.954298 }}
fullscreenControl={false}
streetViewControl={false}
/>