Google Maps Scraper avatar
Google Maps Scraper

Pricing

Pay per event

Go to Store
Google Maps Scraper

Google Maps Scraper

Developed by

Compass

Compass

Maintained by Apify

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

4.2 (90)

Pricing

Pay per event

1528

Total users

122K

Monthly users

17K

Runs succeeded

97%

Issues response

3.3 days

Last modified

a day ago

CS

Error with zoom 21

Closed

cohesive_spike opened this issue
10 days ago

Got this error using zoom 21 and multi polygon

matej.vavro avatar

Hi there!

From your logs:

Splitted the map into 5005764 map segments

Error: The "value" parameter cannot be stringified to JSON: Object is too large it’s clear that at zoom level 21 (and with your multi-polygon input) the actor is generating over 5 million segments, which exceeds what can be held in memory or serialized to JSON.

To fix this, you can:

Lower the zoom level in your input (e.g. try 15–18 instead of 21) so each polygon is split into far fewer tiles.

Reduce or simplify your polygon area, or break it into smaller chunks, so you generate fewer total segments.

Either change will keep the number of map segments—and the size of the stored queue items—within manageable limits.

Hope this helps!