googlemaps APIのGeocoderを使うとREQUEST_DENIEDになってしまいます。
map自体の表示や、markerの表示はうまく行っていますが、ここだけが上手くいきません。
問題のコードは以下になります。
var address = 'ここに住所'; console.log(address) let geocoder = new google.maps.Geocoder(); geocoder.geocode({'address':address,'language':'ja','region':'jp'}, function(results, status) { if (status === google.maps.GeocoderStatus.OK) { let latY = results[0].geometry.location.lat(); let lngX = results[0].geometry.location.lng(); console.log(latY); console.log(lngX); } else { alert(status); } });
console.には以下のエラーメッセージも表示されます。
Geocoding Service: You must enable Billing on the Google Cloud Project
クレジットカードを登録していないのが問題なのでしょうか?
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/06/05 06:41 編集