# Track Google Maps grid rankings around downtown Seattle

**Use case:** 

Run local grid rank checks from exact latitude and longitude points to see how a target business ranks near downtown Seattle.

## Input

```json
{
  "targetName": "Serious Pie Downtown",
  "targetPlaceId": "",
  "keywords": [
    "pizza",
    "italian restaurant"
  ],
  "locations": [
    "Seattle, WA"
  ],
  "gridPoints": [
    {
      "label": "Downtown Seattle",
      "lat": 47.6062,
      "lng": -122.3321,
      "zoom": 14
    },
    {
      "label": "South Lake Union",
      "lat": 47.6205,
      "lng": -122.3493,
      "zoom": 14
    }
  ],
  "maxResults": 20,
  "includeCompetitors": false,
  "countryCode": "us",
  "languageCode": "en",
  "maxRequestRetries": 3
}
```

## Output

```json
{
  "checkedAt": {
    "label": "Checked at",
    "format": "string"
  },
  "keyword": {
    "label": "Keyword",
    "format": "string"
  },
  "location": {
    "label": "Location",
    "format": "string"
  },
  "gridLabel": {
    "label": "Grid",
    "format": "string"
  },
  "targetName": {
    "label": "Target",
    "format": "string"
  },
  "targetMatched": {
    "label": "Found",
    "format": "boolean"
  },
  "targetPosition": {
    "label": "Target rank",
    "format": "integer"
  },
  "rank": {
    "label": "Rank",
    "format": "integer"
  },
  "isTarget": {
    "label": "Target row",
    "format": "boolean"
  },
  "businessName": {
    "label": "Business",
    "format": "string"
  },
  "category": {
    "label": "Category",
    "format": "string"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "address": {
    "label": "Address",
    "format": "string"
  },
  "website": {
    "label": "Website",
    "format": "string"
  },
  "phone": {
    "label": "Phone",
    "format": "string"
  },
  "placeCid": {
    "label": "CID",
    "format": "string"
  },
  "placeId": {
    "label": "Place ID",
    "format": "string"
  },
  "mapUrl": {
    "label": "Map URL",
    "format": "string"
  },
  "latitude": {
    "label": "Latitude",
    "format": "number"
  },
  "longitude": {
    "label": "Longitude",
    "format": "number"
  },
  "competitorCount": {
    "label": "Competitors",
    "format": "integer"
  }
}
```

## About this Actor

This example demonstrates how to use [Google Maps Local Rank Monitor](https://apify.com/automation-lab/google-maps-local-rank-monitor) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/google-maps-local-rank-monitor) to learn more, explore other use cases, and run it yourself.