get_street_view
Fetch and save Google Street View images using location, coordinates, or panorama ID. Specify image size, camera angle, and field of view to capture precise street-level visuals.
Instructions
Fetch a Street View image based on location, coordinates, or panorama ID and save to file.
Args: filename: Required filename to save the image (must not already exist in output directory) location: The address to get Street View image for (e.g., "Empire State Building, NY") lat_lng: Comma-separated latitude and longitude (e.g., "40.748817,-73.985428") pano_id: Specific panorama ID to fetch size: Image dimensions as "widthxheight" (e.g., "600x400") heading: Camera heading in degrees (0-360) pitch: Camera pitch in degrees (-90 to 90) fov: Field of view in degrees (zoom level, 10-120) radius: Search radius in meters when using location or coordinates source: Limit Street View searches to selected sources ("default" or "outdoor")
Returns: Image: The Street View image
Raises: ValueError: If filename already exists in output directory
Input Schema
Name | Required | Description | Default |
---|---|---|---|
filename | Yes | ||
fov | No | ||
heading | No | ||
lat_lng | No | ||
location | No | ||
pano_id | No | ||
pitch | No | ||
radius | No | ||
size | No | 600x400 | |
source | No | default |