Google Places APIs - Private POIs?

Google Maps has information about whether the place is closed (closed) or open, but it seems that this information is not available in the Google Places API. Does anyone know if this information can be obtained?

+5
source share
2 answers

permanently_closed- This is a logical flag indicating whether the place is constantly stopped (true). If the place is not closed forever, the flag is missing in the response. https://developers.google.com/places/web-service/details#PlaceDetailsResults (2015 +)

In addition, the AutoFill API prefers places that are not closed forever, although you can still get them if there is no better match for user input.

+2
source

All Articles