0

ユーザーが場所フィールドを含むフォームを送信しました。Google Geocoding API を呼び出して、その場所の緯度と経度を取得し、その場所が存在することを確認してから、3 つのデータすべてをデータベースに送信したいと考えています。

geocoder = new google.maps.Geocoder();
geocoder.geocode( { 'address': location}, function(results, status) {
  if (status == google.maps.GeocoderStatus.OK) {
    alert(results[0].geometry.location);
  } else {
    alert('Geocode was not successful for the following reason: ' + status);
  }
});

このコードを取得して正しい座標を警告する唯一の場所は、コレクションの posts.js ファイル内ですが、サーバー エラーも発生しています。

Exception while invoking method 'post' ReferenceError: google is not defined
4

1 に答える 1