search_maps_images
Search for a place on Google Maps and retrieve photo URLs with author attribution. Scrapes images without an API key.
Instructions
Search Google Maps for a place and return photo URLs from the place page. Accepts a place name like 'Eiffel Tower' or 'Joe's Pizza NYC'. Uses Selenium to scrape photos from the Google Maps place panel — no API key required. Returns a JSON object with each photo's URL, author, and author profile URL so callers can credit the photographer if they reuse the image.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes | Place to search for on Google Maps (e.g., 'Eiffel Tower', 'Joe's Pizza NYC') | |
| headless | No | Run browser in headless mode (default: true) | |
| num_images | No | Number of photos to retrieve (default: 5) | |
| require_attribution | No | If true, return only photos with visible author attribution. If false (default), prefer attributed photos but fall back to the place's official photo strip when fewer attributed photos are available. Attributed photos are always returned first. |