# Overture Maps point and radius places scraper

**Use case:** 

Find Overture Maps POIs around one coordinate and export normalized names, categories, addresses, contacts, confidence, and provenance.

## Input

```json
{
  "boundingBox": {
    "west": 13.39,
    "south": 52.5,
    "east": 13.42,
    "north": 52.53
  },
  "latitude": 40.758,
  "longitude": -73.9855,
  "radiusKm": 2,
  "minConfidence": 0.7,
  "maxItems": 200
}
```

## Output

```json
{
  "gersId": {
    "label": "GERS ID"
  },
  "name": {
    "label": "Place name"
  },
  "category": {
    "label": "Category"
  },
  "address": {
    "label": "Address"
  },
  "locality": {
    "label": "Locality"
  },
  "country": {
    "label": "Country"
  },
  "phones": {
    "label": "Phones"
  },
  "emails": {
    "label": "Emails"
  },
  "websites": {
    "label": "Websites"
  },
  "confidence": {
    "label": "Confidence",
    "format": "number"
  },
  "latitude": {
    "label": "Latitude",
    "format": "number"
  },
  "longitude": {
    "label": "Longitude",
    "format": "number"
  },
  "release": {
    "label": "Release"
  },
  "sourceUrl": {
    "label": "Source",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [Overture Maps Places Extractor](https://apify.com/automation-lab/overture-maps-places-extractor) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/overture-maps-places-extractor) to learn more, explore other use cases, and run it yourself.