# 抓取洛杉矶中餐馆名单(含电话和评分)

**Use case:** 

从谷歌地图提取洛杉矶中餐馆: 店名、电话、地址、评分、评论数、网站, 结构化 JSON 输出。适合餐饮选址与本地营销名单。

## Input

```json
{
  "searchTerms": [
    "中餐馆 洛杉矶"
  ],
  "maxResultsPerSearch": 20,
  "language": "zh-cn"
}
```

## Output

```json
{
  "searchTerm": {
    "label": "Search Term",
    "format": "string"
  },
  "title": {
    "label": "Name",
    "format": "string"
  },
  "address": {
    "label": "Address",
    "format": "string"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "ratingCount": {
    "label": "Review Count",
    "format": "integer"
  },
  "type": {
    "label": "Type",
    "format": "string"
  },
  "phoneNumber": {
    "label": "Phone",
    "format": "string"
  },
  "website": {
    "label": "Website",
    "format": "string"
  },
  "latitude": {
    "label": "Latitude",
    "format": "number"
  },
  "longitude": {
    "label": "Longitude",
    "format": "number"
  }
}
```

## About this Actor

This example demonstrates how to use [Google Maps Places Scraper - Fast & Cheap Bulk Places](https://apify.com/johnvc/google-maps-places-api) with a specific input configuration. Visit the [Actor detail page](https://apify.com/johnvc/google-maps-places-api) to learn more, explore other use cases, and run it yourself.