我的應用程序有一個城市搜索,但是當用戶輸入完整的地址,他得到placeId
比城市更具體的 - 一個地址,或一個企業。我想要該城市的placeId
存儲在我的數據庫中。獲得來自谷歌Places API的城市的地方ID
我使用Geocomplete http://ubilabs.github.io/geocomplete/
$('input[name="address"]').geocomplete().bind('geocode:result', function(event, result){
console.log(result.place_id)
});
我需要從place_id
地址獲得place_id
城市和PHP檢查的有效性。
這是第三line'-問題「逗號一次。 – RST
請分享您的代碼,並確切地告訴它是PHP還是JavaScript? –
@OlegAndreyev我已更新問題 – Fulrus