我想知道当您想将数百家餐馆/企业的数据批量上传到 Google 地图以便能够通过 Google Places API 查询并通过 Google Maps Local 显示时,最好的方法是什么。
我在 Places API 中看到了 Places Actions: https ://developers.google.com/places/documentation/actions 但它似乎不允许我拥有一个地方的所有权。
加上语法是:
POST maps/api/place/add/json?sensor=true_or_false&key=AddYourOwnKeyHere
Host: maps.googleapis.com
{
"location": {
"lat": -33.8669710,
"lng": 151.1958750
},
"accuracy": 50,
"name": "Google Shoes!",
"types": ["shoe_store"],
"language": "en-AU"
}
所以我真的看不出如何添加描述和开放时间。
我希望能够看到我上传的所有地点,但我也想让本地管理员可以选择为地点添加数据并更改营业时间等内容(因为我们并不总是有最新的日期信息)