最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - @react-google-mapsapi Autocomplete component returning undefined onPlaceChanged - Stack Overflow

programmeradmin2浏览0评论

I am having difficulty using the Autoplete ponent in @react-google-maps/api. Autoplete itself works and will display options. Clicking an option populates the input box but I only return 'undefined' from the Places Api. I have avoided using something like PlacesAutoplete because I prefer the built in result rendering from Google.

Edited: App.js file should be minimally functional with use of an appropriate API key.

import React, { useState, useRef} from 'react';
import { Autoplete, useLoadScript } from '@react-google-maps/api';

const placesLibrary = ['places']


function App() {
  const [searchResult, setSearchResult] = useState('')

  const autopleteRef = useRef();

  const { isLoaded } =  useLoadScript({
    googleMapsApiKey: 'GOOGLE_API_KEY',
    libraries: placesLibrary
});

  const onLoad = () => {
     const autoplete = autopleteRef.current
  }

  const onPlaceChanged = (place) => {
    setSearchResult(place)
    console.log(searchResult)
  }

  if(!isLoaded) {
    return <div>Loading...</div>
    };


  return (
    <div className="App">
    
    
        <div id="searchColumn">
            <h2>Tide Forecast Options</h2>
            <Autoplete
            onPlaceChanged={(place) => onPlaceChanged(place)}
            onLoad = {onLoad}>

                <input
                type="text"
                placeholder="Search for Tide Information"
                style={{
                    boxSizing: `border-box`,
                    border: `1px solid transparent`,
                    width: `240px`,
                    height: `32px`,
                    padding: `0 12px`,
                    borderRadius: `3px`,
                    boxShadow: `0 2px 6px rgba(0, 0, 0, 0.3)`,
                    fontSize: `14px`,
                    outline: `none`,
                    textOverflow: `ellipses`,
                }}
                />
            </Autoplete>
        </div>
    </div>    
  )}

export default App;

I am having difficulty using the Autoplete ponent in @react-google-maps/api. Autoplete itself works and will display options. Clicking an option populates the input box but I only return 'undefined' from the Places Api. I have avoided using something like PlacesAutoplete because I prefer the built in result rendering from Google.

Edited: App.js file should be minimally functional with use of an appropriate API key.

import React, { useState, useRef} from 'react';
import { Autoplete, useLoadScript } from '@react-google-maps/api';

const placesLibrary = ['places']


function App() {
  const [searchResult, setSearchResult] = useState('')

  const autopleteRef = useRef();

  const { isLoaded } =  useLoadScript({
    googleMapsApiKey: 'GOOGLE_API_KEY',
    libraries: placesLibrary
});

  const onLoad = () => {
     const autoplete = autopleteRef.current
  }

  const onPlaceChanged = (place) => {
    setSearchResult(place)
    console.log(searchResult)
  }

  if(!isLoaded) {
    return <div>Loading...</div>
    };


  return (
    <div className="App">
    
    
        <div id="searchColumn">
            <h2>Tide Forecast Options</h2>
            <Autoplete
            onPlaceChanged={(place) => onPlaceChanged(place)}
            onLoad = {onLoad}>

                <input
                type="text"
                placeholder="Search for Tide Information"
                style={{
                    boxSizing: `border-box`,
                    border: `1px solid transparent`,
                    width: `240px`,
                    height: `32px`,
                    padding: `0 12px`,
                    borderRadius: `3px`,
                    boxShadow: `0 2px 6px rgba(0, 0, 0, 0.3)`,
                    fontSize: `14px`,
                    outline: `none`,
                    textOverflow: `ellipses`,
                }}
                />
            </Autoplete>
        </div>
    </div>    
  )}

export default App;
Share Improve this question edited Sep 29, 2022 at 14:58 jpa317 asked Sep 28, 2022 at 19:10 jpa317jpa317 351 gold badge1 silver badge6 bronze badges 3
  • I can't reproduce your code on codesandbox. can you edit your question and provide a minimal reproducible example? So that someone in the munity could also help you with your issue. :)) – Yrll Commented Sep 29, 2022 at 2:52
  • 1 I wrote a reproducible App.js file. Thanks for the help. – jpa317 Commented Sep 29, 2022 at 14:59
  • Thanks for updating the question, I now was able to reproduce your code and I'm on my way to draft an answer. Will try to post in a while. – Yrll Commented Oct 11, 2022 at 4:46
Add a ment  | 

2 Answers 2

Reset to default 11

I was able to reproduce your code and found some unnecessary stuff you have included like the useRef, autopleteRef but you could just clarify things in the ment. And also I did not find the way you used the onPlaceChanged and onLoad events on the @react-google-maps/api Library Docs. So I just based what I did there and removed some stuff you put.

Here's what the code looks like:

first is that onLoad() function for the <Autoplete /> already had a built in parameter called autoplete that returns the result of the autoplete by using getPlace(). ref here. So what I did here is I changed the value of searchResult state with what the result of the autoplete returns using setSearchResult(autoplete) inside the onload() function.

  function onLoad(autoplete) {
    setSearchResult(autoplete);
  }

Then on the onPlaceChanged() function, I used the new searchResult value to get the place details.

  function onPlaceChanged() {
    if (searchResult != null) {
      //variable to store the result
      const place = searchResult.getPlace();
      //variable to store the name from place details result 
      const name = place.name;
      //variable to store the status from place details result
      const status = place.business_status;
      //variable to store the formatted address from place details result
      const formattedAddress = place.formatted_address;
      // console.log(place);
      //console log all results
      console.log(`Name: ${name}`);
      console.log(`Business Status: ${status}`);
      console.log(`Formatted Address: ${formattedAddress}`);
    } else {
      alert("Please enter text");
    }
  }

You can remove the ment from console.log(place) if you want to check what's inside the variable place result and use that as a reference if you want to get other details from the autoplete result.

Then I just changed your callbacks inside your onLoad and onPlaceChanged props to simply call on to the functions above.

  return (
    <div className="App">
      <div id="searchColumn">
        <h2>Tide Forecast Options</h2>
        <Autoplete onPlaceChanged={onPlaceChanged} onLoad={onLoad}>
          <input
            type="text"
            placeholder="Search for Tide Information"
            style={{
              boxSizing: `border-box`,
              border: `1px solid transparent`,
              width: `240px`,
              height: `32px`,
              padding: `0 12px`,
              borderRadius: `3px`,
              boxShadow: `0 2px 6px rgba(0, 0, 0, 0.3)`,
              fontSize: `14px`,
              outline: `none`,
              textOverflow: `ellipses`
            }}
          />
        </Autoplete>
      </div>
    </div>
  );

With this, things seems to be working fine.

Here's a code sandbox if you want to try this out (Just use your own API key): https://codesandbox.io/s/react-google-maps-api-multiple-markers-infowindow-forked-dpueyy?file=/src/App.js

Hope this helps.

Anyone looking for Typescript solution

const [searchResult, setSearchResult] = useState<google.maps.places.Autoplete>()

  function onLoad(autoplete: google.maps.places.Autoplete) {
    setSearchResult(autoplete);
  }

  function locationSelected() {
    if(searchResult) {
      const place = searchResult.getPlace();
      console.log("Search : ",place);
    } 
  }

  <Autoplete onLoad={onLoad} onPlaceChanged={locationSelected}>
    <input  type="text" placeholder="Search"></input>
  </Autoplete>
发布评论

评论列表(0)

  1. 暂无评论