如何使用外部lat设置中心,lng?

时间:2018-04-28 00:23:58

标签: javascript reactjs google-maps google-maps-api-3

我已经构建了一个从数据库中提取地址的应用程序。我已经使用地理编码器(https://www.npmjs.com/package/geocoder)来获取地址的lat和lng,现在希望每当我点击一个拉动地址的按钮时,它会更新地图以缩放到该地址和中心。如果我将地图组件外部的地址拉出来,可以这样做吗?

到目前为止,这是我的地图组件:

    const MapWithASearchBox = compose(
  withProps({
    googleMapURL: "https://maps.googleapis.com/maps/api/js?key=AIzaSyDYwerCGhOnkM1sNHmSrckp8D1o9hY3mZ4&v=3.exp&libraries=geometry,drawing,places",
    loadingElement: <div style={{ height: `100%` }} />,
    containerElement: <div style={{ height: `400px` }} />,
    mapElement: <div style={{ height: `100%` }} />,
  }),
  lifecycle({
    componentDidMount(){

    },
    componentWillMount() {
      const refs = {}

      this.setState({

        bounds: null,
        center: {
          lat: -35.015742, lng: 138.520858
        },
        markers: [],
        onMapMounted: ref => {
          refs.map = ref;
        },
        onIdle: () => {
          this.setState({
            center: fullPos,
          })
        },
        onBoundsChanged: () => {
          this.setState({
            bounds: refs.map.getBounds(),
            center: refs.map.getCenter(),
          })
        },
        onSearchBoxMounted: ref => {
          console.log("s. mounted");
          refs.searchBox = ref;
        },
        onPlacesChanged: () => {
          console.log("places changed");
          console.log(refs.searchBox)
          console.log(refs)
          const places = refs.searchBox.getPlaces();
          console.log(places);
          const bounds = new google.maps.LatLngBounds();

          places.forEach(place => {
            if (place.geometry.viewport) {
              bounds.union(place.geometry.viewport)
            } else {
              bounds.extend(place.geometry.location)
            }
          });
          const nextMarkers = places.map(place => ({
            position: place.geometry.location,
          }));
          const nextCenter = _.get(nextMarkers, '0.position', this.state.center);

          this.setState({
            center: nextCenter,
            markers: nextMarkers,
          });
          // refs.map.fitBounds(bounds);
        },

      })
    },
  }),
  withScriptjs,
  withGoogleMap
)(props =>
  <GoogleMap
    ref={props.onMapMounted}
    defaultZoom={20}
    center={props.center}
    onBoundsChanged={props.onBoundsChanged}
    mapTypeId={google.maps.MapTypeId.SATELLITE}
    panControl={true}
    scrollwheel={false}
  >
    <SearchBox
      ref={props.onSearchBoxMounted}
      bounds={props.bounds}
      controlPosition={google.maps.ControlPosition.TOP_LEFT}
      onPlacesChanged={props.onPlacesChanged}
    >
      <input
        type="text"
        placeholder="Customized your placeholder"
        value={fullAdd}
        style={{
          boxSizing: `border-box`,
          border: `1px solid transparent`,
          width: `240px`,
          height: `32px`,
          marginTop: `27px`,
          padding: `0 12px`,
          borderRadius: `3px`,
          boxShadow: `0 2px 6px rgba(0, 0, 0, 0.3)`,
          fontSize: `14px`,
          outline: `none`,
          textOverflow: `ellipses`,
        }}
      />
    </SearchBox>
    {props.isMarkerShown && (
      <Marker position={fullPos} />
    )}
  </GoogleMap>
);

如果fullPos是lat,lng变量我一直在不同的领域玩,希望它能运作。

1 个答案:

答案 0 :(得分:0)

  

拉出地图组件外部的地址

不确定您的意思将新地址从组件外部传递给它作为道具然后,也许您可​​以使用 ComponentWillUpdate 并创造一些美好的条件(以避免错误无限循环)并且只检查传递的AddressProp是否被更改,那么也许你可以做类似的事情:this.setState({center: passedAddressProp})

很可能很明显,你的意思是我在远离这个组件的地方得到这个地址所以他们没有机会进行沟通,那么解决方案可能在于redux / mobx(无论你喜欢/使用哪种方式),当地址被更改时,你可以使用新地址触发一个动作,并且该组件侦听状态的这一部分,同时在componentWillUpdate中有一些漂亮的条件,你可以改变this.state。当这个国家的这个全球部分发生变化时,这个中心。