# Semantic Street View - Example London Bus Search

**Use case:** 

Search Google Street View for images of anything the camera might see in a given area. Get ranked results with precise geotags and descriptions.

## Input

```json
{
  "location": "Bridge St, London",
  "searchPrompt": "London Bus",
  "radiusMeters": 250,
  "maxImages": 25,
  "headings": [
    0,
    90,
    180,
    270
  ],
  "newerThan": "2024",
  "gridSpacingMeters": 15,
  "stopAfterMatches": 0
}
```

## Output

```json
{
  "imageUrl": {
    "label": "Image",
    "format": "string"
  },
  "match": {
    "label": "Match",
    "format": "string"
  },
  "date": {
    "label": "Captured",
    "format": "string"
  },
  "lat": {
    "label": "Latitude",
    "format": "number"
  },
  "lng": {
    "label": "Longitude",
    "format": "number"
  },
  "heading": {
    "label": "Heading",
    "format": "integer"
  },
  "panoId": {
    "label": "Panorama ID",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Google Street View - Semantic Search](https://apify.com/bfarrington/streetview-semantic-search) with a specific input configuration. Visit the [Actor detail page](https://apify.com/bfarrington/streetview-semantic-search) to learn more, explore other use cases, and run it yourself.