ข้อมูลสรุปรีวิวที่ทำงานด้วยระบบ AI

ข้อมูลสรุปรีวิวที่ทำงานด้วยระบบ AI คือข้อมูลสรุปของสถานที่ที่ AI สร้างขึ้นโดยอิงตามรีวิวของผู้ใช้เท่านั้น การสังเคราะห์องค์ประกอบสำคัญของรีวิวจากผู้ใช้ เช่น คุณลักษณะของสถานที่และความรู้สึกของผู้รีวิว สรุปรีวิวจะให้ข้อมูลเชิงลึกระดับสูงและช่วยให้ผู้ใช้มีข้อมูลประกอบการตัดสินใจ

ตัวอย่างเช่น ข้อมูลสรุปรีวิวของ Ferry Building ในซานฟรานซิสโกมีข้อมูลตั้งแต่เรื่องอาหารและการช็อปปิ้งไปจนถึงวิวและบรรยากาศ

"ผู้เข้าชมกล่าวว่าสถานที่สำคัญทางประวัติศาสตร์แห่งนี้มีร้านค้า ร้านอาหาร และตลาดเกษตรกรให้เลือกมากมาย โดยหลายคนชื่นชมวิวอ่าวและ เมือง นอกจากนี้ ยังเน้นบรรยากาศที่มีชีวิตชีวา การเดินทางด้วยเรือข้ามฟากที่สะดวกไปยัง จุดหมายอื่นๆ และโอกาสในการสนับสนุนธุรกิจในพื้นที่"

ข้อมูลสรุปรีวิวรองรับใน รายละเอียดสถานที่ (ใหม่) การค้นหาข้อความ (ใหม่) และ การค้นหาใกล้เคียง (ใหม่)

สรุปรีวิวรองรับสถานที่น่าสนใจในภาษาและภูมิภาคต่อไปนี้

ภาษา ภูมิภาค
อังกฤษ

อินเดีย

ญี่ปุ่น

สหราชอาณาจักร

สหรัฐอเมริกา

ญี่ปุ่น ญี่ปุ่น

ขอสรุปรีวิว

หากต้องการขอสรุปรีวิว ให้ใส่ reviewSummary ในมาสก์ฟิลด์ของคำขอ

  • รายละเอียดสถานที่ (ใหม่): reviewSummary
  • การค้นหาข้อความ (ใหม่) และการค้นหาใกล้เคียง (ใหม่): places.reviewSummary

การระบุแหล่งที่มาของข้อมูลสรุปรีวิวต้องมีลิงก์ไปยังรีวิวของสถานที่ใน Google Maps หากต้องการดึงลิงก์ดังกล่าว ให้ระบุ reviewSummary.reviewsUri ในมาสก์ฟิลด์ของคำขอ

ส่วนเนื้อหาของการตอบกลับประกอบด้วย 3 ฟิลด์ ได้แก่

  • text: ข้อมูลสรุปรีวิวที่ AI สร้างขึ้น
  • flagContentUri: ใช้เพื่อแจ้งว่าเนื้อหาไม่เหมาะสมเพื่อให้ Google นำออก
  • disclosureText: สตริงข้อความที่แปลแล้วซึ่งมีข้อความการเปิดเผยข้อมูล "สรุปด้วย Gemini" ซึ่งต้องรวมไว้ในการระบุแหล่งที่มา

คำขอรายละเอียดสถานที่ (ใหม่)

ตัวอย่างต่อไปนี้ขอสรุปรีวิวสำหรับร้านอาหารที่ขายเกี๊ยวในนิวยอร์ก

curl -X GET https://places.googleapis.com/v1/places/ChIJD2l2k7ZL0YkRC80d-3MV1lM \
-H 'Content-Type: application/json' \
-H "X-Goog-Api-Key: API_KEY" \
-H "X-Goog-FieldMask: displayName,reviewSummary"

การตอบกลับจะอยู่ในรูปแบบต่อไปนี้

{
  "displayName": {
    "text": "Dumpling House",
    "languageCode": "en"
  },
  "reviewSummary": {
    "text": {
      "text": "People say this restaurant serves delicious dumplings, noodles, and pork belly buns. They highlight the generous portions, reasonable prices, and quick service. They also like the friendly and accommodating staff.",
      "languageCode": "en-US"
    },
    "flagContentUri": "https://www.google.com/local/review/rap/report?postId=5%401:CAIQACodChtyc19oOnNwOUFtUVhIX1BoTEZjTFg0MmNXNEE%7CCAIQACorChtyc19oOnNwOUFtUVhIX1BoTEZjTFg0MmNXNEESDAikt7HDBhDopLLxAg&d=17924085&t=8",
    "disclosureText": {
      "text": "Summarized with Gemini",
      "languageCode": "en-US"
    },
    "reviewsUri": "https://www.google.com/maps/place//data=!4m4!3m3!1s0x89d14bb69376690f:0x53d61573fb1dcd0b!9m1!1b1"
  }
}

คำขอค้นหาข้อความ (ใหม่)

ตัวอย่างต่อไปนี้ขอข้อมูลสรุปรีวิวสำหรับร้านกาแฟในนิวยอร์กซิตี้

curl -X POST -d '{
  "textQuery": "coffee shop",
  "locationBias": {
    "circle": {
      "center": {
        "latitude": 40.722630,
        "longitude": -74.001397
      }
    }
  },
}' \
-H 'Content-Type: application/json' -H "X-Goog-Api-Key: API_KEY" \
-H "X-Goog-FieldMask: places.id,places.reviewSummary" \
'https://places.googleapis.com/v1/places:searchText'

เนื้อหาการตอบกลับอยู่ในรูปแบบต่อไปนี้

{
  "places": [
    {
      "id": "ChIJyfJXNphZwokRbo-oe0DjVT4",
      "reviewSummary": {
        "text": {
          "text": "People say this coffee shop serves up delicious oat milk lattes, cold brew, and pastries, such as almond croissants and cheese danish. They also highlight the friendly staff, cozy atmosphere, and outdoor seating.",
          "languageCode": "en-US"
        },
        "flagContentUri": "https://www.google.com/local/review/rap/report?postId=5%401:CAIQACodChtyc19oOkk1Z1UwZkp4cEJ3bnA3aGt5VGJLMFE%7CCAIQACorChtyc19oOkk1Z1UwZkp4cEJ3bnA3aGt5VGJLMFESDAj7p9_BBhCYsoeAAw&d=17924085&t=8",
        "disclosureText": {
          "text": "Summarized with Gemini",
          "languageCode": "en-US"
        },
        "reviewsUri": "https://www.google.com/maps/place//data=!4m4!3m3!1s0x89c259983657f2c9:0x3e55e3407ba88f6e!9m1!1b1"
      }
    },
    {
      "id": "ChIJHcFFXH9ZwokR_QKedPacLiQ",
      "reviewSummary": {
        "text": {
          "text": "People say this cafe offers delicious matcha, lattes, and freshly baked pastries, including the popular rose honey latte and blueberry lemon muffin. They highlight the spacious, chill, and cinema-inspired vibe, perfect for working or socializing, and the fast, friendly service. They also like the free WiFi, outlets, and clean restrooms.",
          "languageCode": "en-US"
        },
        "flagContentUri": "https://www.google.com/local/review/rap/report?postId=5%401:CAIQACodChtyc19oOl8yWTlXS0NDVTk1UEhiTFdBQzhlelE%7CCAIQACorChtyc19oOl8yWTlXS0NDVTk1UEhiTFdBQzhlelESDAikt7HDBhDopLLxAg&d=17924085&t=8",
        "disclosureText": {
          "text": "Summarized with Gemini",
          "languageCode": "en-US"
        },
        "reviewsUri": "https://www.google.com/maps/place//data=!4m4!3m3!1s0x89c2597f5c45c11d:0x242e9cf6749e02fd!9m1!1b1"
      }
    },
    ...
  ]
}

คำขอการค้นหาในบริเวณใกล้เคียง (ใหม่)

ตัวอย่างต่อไปนี้จะขอโรงแรมใกล้ดาวน์ทาวน์ซีแอตเทิล

curl -X POST -d '{
  "maxResultCount": 5,
  "locationRestriction": {
    "circle": {
      "center": {
        "latitude": 47.609937,
        "longitude": -122.340714
      },
      "radius": 1000
    }
  },
  "includedTypes": ["hotel"],
  "excludedTypes": [],
  "rankPreference":"POPULARITY"
}' \
-H 'Content-Type: application/json' -H "X-Goog-Api-Key: API_KEY" \
-H "X-Goog-FieldMask: places.id,places.reviewSummary" \
'https://places.googleapis.com/v1/places:searchNearby'

การตอบกลับจะอยู่ในรูปแบบต่อไปนี้

{
  "places": [
    {
      "id": "ChIJRwVmS-BrkFQRpAB3pO5JOuQ",
      "reviewSummary": {
        "text": {
          "text": "People say this hotel offers clean, modern, and spacious rooms with comfortable beds and phenomenal city views. They highlight the convenient downtown location, with easy walking access to popular attractions, and the efficient self-parking option. They also like the friendly and helpful staff, and the smooth check-in and check-out process.",
          "languageCode": "en-US"
        },
        "flagContentUri": "https://www.google.com/local/review/rap/report?postId=5%401:CAIQACodChtyc19oOlJWVG5YOXZrSnZhTXBqUy1rc1JZc3c%7CCAIQACorChtyc19oOlJWVG5YOXZrSnZhTXBqUy1rc1JZc3cSDAikt7HDBhDopLLxAg&d=17924085&t=8",
        "disclosureText": {
          "text": "Summarized with Gemini",
          "languageCode": "en-US"
        },
        "reviewsUri": "https://www.google.com/maps/place//data=!4m4!3m3!1s0x54906be04b660547:0xe43a49eea47700a4!9m1!1b1"
      }
    },
    {
      "id": "ChIJQVJVX7RqkFQRcpsm3VVub9U",
      "reviewSummary": {
        "text": {
          "text": "People say this hotel offers spacious rooms, a convenient location near the convention center and Pike Place Market, and a tasty restaurant. They also highlight the friendly and attentive staff, the comfortable beds and pillows, and the convenient amenities such as a Starbucks in the lobby and a club lounge.\n\nSome reviews mention the rooms can be noisy.",
          "languageCode": "en-US"
        },
        "flagContentUri": "https://www.google.com/local/review/rap/report?postId=5%401:CAIQACodChtyc19oOldJVUlodGhTUTJOdUdTSmFxQWw2Nnc%7CCAIQACorChtyc19oOldJVUlodGhTUTJOdUdTSmFxQWw2NncSDAikt7HDBhDopLLxAg&d=17924085&t=8",
        "disclosureText": {
          "text": "Summarized with Gemini",
          "languageCode": "en-US"
        },
        "reviewsUri": "https://www.google.com/maps/place//data=!4m4!3m3!1s0x54906ab45f555241:0xd56f6e55dd269b72!9m1!1b1"
      }
    },
    ...
  ]
}

การระบุแหล่งที่มา

ข้อมูลสรุปทั้งหมดที่ทำงานด้วยระบบ AI ซึ่งแสดงในแอปของคุณต้องมี การระบุแหล่งที่มาอย่างเหมาะสมตามนโยบายและมาตรฐานของ Google ดูข้อมูลเพิ่มเติมได้ที่นโยบายสำหรับ Places API