0

Google マップの Geocoder API を使用して新しいマップ センターを設定しようとすると、このエラーが発生します。

geocoder.geocode({adress:this.startPosition},
    (results2,status)=>{
      if(status=="OK"){
        this.map.setCenter(results2[0].geometry.location)
        alert(results2[0].geometry.location)
      }else{
        alert("Geocode was not sucessfull" + status)
      }
    });

ここで、「startPosition」は現在地を含む文字列です

4

1 に答える 1