使用地理编码初始化React Google Maps StandaloneSearchBox

时间:2017-12-05 13:47:53

标签: reactjs react-google-maps

有人可以告诉我如何使用以下类型初始化React Google Maps的StandaloneSearchBox组件:['geocode'](就像在原始的google.maps.places.Autocomplete中一样,所以我可以限制自动完成的输入建议吗?

2 个答案:

答案 0 :(得分:0)

StandaloneSearchBox是google.maps.places.SearchBox的包装。
因此Google的SearchBox文档说:

  

SearchBox构造函数带有两个参数:

     
      
  • 文本类型的HTML输入元素。这是输入字段   SearchBox服务将监视并附加其结果。
  •   
  • 一个选项   参数,可以包含bounds属性:bounds是一个   google.maps.LatLngBounds对象,用于指定要搜索的区域   。结果偏向于(但不限于)   这些范围内包含的位置。
  •   
     

来源:https://developers.google.com/maps/documentation/javascript/places-autocomplete#places_searchbox

因此您可以像这样调用此组件:

<StandaloneSearchBox
      ref={props.onSearchBoxMounted}
      bounds={props.bounds}
      onPlacesChanged={props.onPlacesChanged}
      defaultBounds={new google.maps.LatLngBounds(
            new google.maps.LatLng(40.712216, -74.22655),
            new google.maps.LatLng(40.773941, -74.12544)
      )}

defaultBoundsLatLngBounds class的地方,它代表地理坐标中的矩形。

答案 1 :(得分:0)

我可以在亚历山大的建议下做这样的事情。将地址传递到地址搜索中,并使用地理编码通过搜索进行近距离搜索。希望这会有所帮助。

import React from 'react';
import { compose, withProps, lifecycle } from 'recompose';
import { withScriptjs } from 'react-google-maps';
import StandaloneSearchBox from 'react-google-maps/lib/components/places/StandaloneSearchBox';
import get from 'lodash/get';
import head from 'lodash/head';
import { Search } from '../components';

const GOOGLE_API_KEY = '123';

const AddressSearchbox = compose(
  withProps(props => {
    return {
      ...props,
      googleMapURL: `https://maps.googleapis.com/maps/api/js?key=${GOOGLE_API_KEY}&v=3.exp&libraries=geometry,drawing,places`,
      loadingElement: <div style={{ height: `100%` }} />,
      containerElement: <div style={{ height: `400px` }} />,
    };
  }),
  withScriptjs,
  lifecycle({
    componentDidMount() {
      const refs = {};

      this.setState({
        places: [],
        searchText: '',
        error: null,
        onSearchBoxMounted: ref => {
          refs.searchBox = ref;
        },
        onPlacesChanged: () => {
          const places = refs.searchBox.getPlaces();
          this.setState({
            places,
            searchText: '',
          });
        },
      });

      ***
      const geocoder = new google.maps.Geocoder();
      geocoder.geocode({ address: this.props.placeName }, (results, status) => {
      if (status === google.maps.DirectionsStatus.OK) {
        const lngs = results[0].geometry.bounds.j;
        const lats = results[0].geometry.bounds.l;
        this.setState({
          boundSearch: new google.maps.LatLngBounds(
            new google.maps.LatLng(lats.l, lngs.l),
            new google.maps.LatLng(lats.j, lngs.j)
          ),
        });
      } else {
        this.setState({
          error: status,
        });
      }
      ***
      });
    },
  })
)(props => {
  return (
    <div data-standalone-searchbox="">
      <StandaloneSearchBox
        ref={props.onSearchBoxMounted}
        onPlacesChanged={props.onPlacesChanged}
        bounds={props.boundSearch}
      >
        <Search searchText={props.searchText} />
      </StandaloneSearchBox>
      <div>{get(head(props.places), 'formatted_address')}</div>
    </div>
  );
});

export default AddressSearchbox;

<AddressSearchbox address="cleveland, oh" />