# Find gyms on Apple Maps in Sydney

**Use case:** 

Generate a Sydney gyms dataset from Apple Maps for fitness competitor tracking, territory analysis, website discovery, and address normalization.

## Input

```json
{
  "queries": [
    "gyms"
  ],
  "location": "Sydney, Australia",
  "startUrls": [
    {
      "url": "https://maps.apple.com/?address=55%20S%20Van%20Ness%20Ave%2C%20San%20Francisco%2C%20CA%2094103%2C%20United%20States&name=Blue%20Bottle%20Coffee"
    }
  ],
  "maxResults": 5,
  "language": "en-AU",
  "countryCode": "AU",
  "includePhotos": false
}
```

## Output

```json
{
  "name": {
    "label": "Name",
    "format": "text"
  },
  "category": {
    "label": "Category",
    "format": "text"
  },
  "appleMapsUrl": {
    "label": "Apple Maps URL",
    "format": "link"
  },
  "address": {
    "label": "Address",
    "format": "text"
  },
  "city": {
    "label": "City",
    "format": "text"
  },
  "region": {
    "label": "Region",
    "format": "text"
  },
  "country": {
    "label": "Country",
    "format": "text"
  },
  "latitude": {
    "label": "Latitude",
    "format": "number"
  },
  "longitude": {
    "label": "Longitude",
    "format": "number"
  },
  "phone": {
    "label": "Phone",
    "format": "text"
  },
  "website": {
    "label": "Website",
    "format": "link"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "reviewCount": {
    "label": "Reviews",
    "format": "number"
  },
  "sourceQuery": {
    "label": "Source query",
    "format": "text"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [Apple Maps Places Scraper](https://apify.com/fetch_cat/apple-maps-places-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/fetch_cat/apple-maps-places-scraper) to learn more, explore other use cases, and run it yourself.