0

react-google-autocomplete在 React 中使用库名称。它工作正常,但它不返回完整和完整的地址。例如,我住在一个名为 (ABC) 的城市。ABC 的扇区名称为 F-10,其建筑物名称为 (Example-Building, F-10)。当我输入ABC它返回 ABC 但当我输入F-10 and building name它不返回它的名字。我想得到一个完整的街道地址,有人可以帮我看看怎么做。谢谢

在 public.html 中,我包含了一个谷歌地图文件

  <script src="https://maps.googleapis.com/maps/api/js?key=API_KEY&libraries=places"></script>



 export const RenderAddress = () => {
  return (
    <Autocomplete
      className="registrationTextField"
      apiKey={"API_KEY"}
      onPlaceSelected={(place) => {
        console.log(place);
      }}
      options={{
        types: ["(regions)"],
        componentRestrictions: { country: "pk" },
      }}
    />
  );
};
4

0 回答 0