简体   繁体   中英

How to get Lat and Lng from StandaloneSearchBox?

I use the react-google-maps StandaloneSearchBox and query the locations of my points of interest. This works as far as it goes. However, I get back functions for the location and not the actual value. How do I actually get the lat and lng values similar to the viewport.

geometry:
 location: _.bf
   lat: ƒ ()
   lng: ƒ ()

 viewport: _.Wf
   Bb: Vf {g: 41.4022605197085, h: 41.4049584802915}
   Ra: Qf {g: 2.173047169708498, h: 2.175745130291502}

You can just call the lat and lng functions to get the values.

  • geometry.location.lat() -> latitude value
  • geometry.location.lng() -> longitude value

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM