# Scrape Geographic Data of Major Tourist Attractions Worldwid

**Use case:** 

Obtain precise 3D coordinates, Place IDs, and full addresses for top global tourist attractions. This data is invaluable for travel agencies, tour operators, an

## Input

```json
{
  "searchQueries": [
    "Machu Picchu Peru",
    "Great Wall of China Mutianyu",
    "Colosseum Rome Italy",
    "Statue of Liberty New York USA",
    "Sydney Opera House Australia",
    "Pyramids of Giza Egypt",
    "Taj Mahal India"
  ],
  "minDelayBetweenRequests": 4,
  "maxDelayBetweenRequests": 6
}
```

## Output

```json
{
  "place_name": {
    "label": "Place name"
  },
  "google_place_id": {
    "label": "Google place id"
  },
  "latitude": {
    "label": "Latitude"
  },
  "longitude": {
    "label": "Longitude"
  },
  "camera_altitude": {
    "label": "Camera altitude"
  },
  "address": {
    "label": "Address"
  },
  "description": {
    "label": "Description"
  },
  "phone": {
    "label": "Phone"
  },
  "website": {
    "label": "Website"
  },
  "rating": {
    "label": "Rating"
  },
  "reviews_count": {
    "label": "Reviews count"
  },
  "images": {
    "label": "Images"
  },
  "url": {
    "label": "Url"
  },
  "scraped_at": {
    "label": "Scraped at"
  }
}
```

## About this Actor

This example demonstrates how to use [Google Earth Scraper](https://apify.com/crawlerbros/google-earth-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/crawlerbros/google-earth-scraper) to learn more, explore other use cases, and run it yourself.