嘿,有人用过react-google-map
吗?
我需要一些帮助 我正在使用
<StandaloneSearchBox
ref={searchBox => this.searchBox = searchBox}
onPlacesChanged={this.onPlacesChanged}
>
<Input
type="text"
placeholder={placeholder}
{...props}
/>
</StandaloneSearchBox>
获取搜索框,但我无法将结果限制在城市范围内。目前,它也在搜索地址。如何将结果限制在城市
在google places documentation
中,它表示我们需要通过types=(cities)
才能将结果限制在城市,但是我不知道如何在此处进行操作。
有想法吗?