Google Maps Scraper avatar
Google Maps Scraper
Try for free

No credit card required

View all Actors
Google Maps Scraper

Google Maps Scraper

compass/crawler-google-places
Try for free

No credit card required

Extract data from hundreds of Google Maps locations and businesses. Get Google Maps data including reviews, images, contact info, opening hours, location, popular times, prices & more. Export scraped data, run the scraper via API, schedule and monitor runs, or integrate with other tools.

User avatar

crawing with coordinates is not working

Closed

knutty_queuer opened this issue
18 days ago

I just tried many times crawiling using coordinates it's not working

User avatar

Hello,

Thanks for the report. It seems you might have swapped Longitude and Latitude. The order must be Longitude, Latitude. So instead of this

1"customGeolocation": {
2    "type": "Point",
3    "coordinates": [
4      "51.2756007875927",
5      "1.082900713197"
6    ],
7    "radiusKm": 8
8  },

which is somewhere near the equator. Use

1"customGeolocation": {
2    "type": "Point",
3    "coordinates": [
4      "1.082900713197",
5      "51.2756007875927",
6    ],
7    "radiusKm": 8
8  },

which is somewhere in Great Britain.

User avatar

knutty_queuer

16 days ago

still doesnt work i just check your logic takes coordinates like that only worest experience

User avatar

What doesn't work? I see you extracted places from Great Britain as expected.

The reason for this order is a GeoJson international standard, it is not something Apify has created, we just want to follow what everyone else does.

Developer
Maintained by Apify
Actor metrics
  • 4.4k monthly users
  • 98.2% runs succeeded
  • 2.8 days response time
  • Created in Nov 2018
  • Modified about 24 hours ago