如何通过变焦聚焦到标记位置。标记位置更改为其他位置后,我需要手动放大和缩小并转到市场位置。
从字面上看,我需要手动滚动并缩放到标记的位置,这很困难。
我正在使用 https://github.com/tomchentw/react-google-maps 软件包
以下代码的示例输出。
import React from 'react';
import { compose, withStateHandlers } from "recompose";
import { InfoWindow, withGoogleMap, withScriptjs, GoogleMap, Marker } from 'react-google-maps';
const Map = compose(
withGoogleMap
)
(props =>
<GoogleMap
defaultZoom={8}
defaultCenter={props.markerPosition}
>
<Marker position={props.markerPosition} />
</GoogleMap>
)
export default class MapContainer extends React.Component {
state = {
list: [
{ lat: 57.340204, lng: 41.069438 },
{ lat: 12.991792, lng: 77.566020 },
{ lat: -29.556185, lng: 22.508060 },
{ lat: 35.010270, lng: -88.409909 },
],
coordinates: { lat: -34.397, lng: 150.644 }
}
onBtnClick() {
const min = 1, max = 4;
const no = Math.floor(Math.random() * (max - min + 1) ) + min;
this.setState({
coordinates: this.state.list[no-1]
});
}
render() {
return (
<div style={{ height: '100%' }}>
<input
type="button" value="Change Marker Position"
style={{ marginBottom: "20px" }}
onClick={(e) => this.onBtnClick()}
/>
<Map
markerPosition={this.state.coordinates}
googleMapURL="https://maps.googleapis.com/maps/api/js?key=AIzaSyAvcDy5ZYc2ujCS6TTtI3RYX5QmuoV8Ffw"
loadingElement={<div style={{ height: `100%` }} />}
containerElement={<div style={{ height: `400px` }} />}
mapElement={<div style={{ height: `100%` }} />}
/>
</div>
)
}
}
答案 0 :(得分:1)
通过将defaultZoom
更改为zoom
并将defaultCenter
更改为center
来修复了该问题