-1
これは私がgeometry.locationのパラメータ形式は何ですか?
function callback() {
document.getElementById("demo").innerHTML="entered into callback function";
var addresses = ['x','y','z'];
for (var i = 0; i < addresses.length; i++) {
createMarker(addresses[i]);
}
}
を訪問する必要がある場所の場所が含まれており、これはページ内のマーカー
function createMarker(place) {
document.getElementById("demo").innerHTML+=" entered into createmarker function, location=";
document.getElementById("demo").innerHTML+=place;
var placeLoc = place.geometry.location;
document.getElementById("demo").innerHTML+="placeloc="+placeLoc;
var marker = new google.maps.Marker({
map: map,
position: place.geometry.location
});
を作成するための私の関数である私の関数であり、私は
entered into callback function entered into create marker function, location=x
を見ることができます
しかし、私は "placeloc ="の文章を見ることはできませんし、alspはマップ内のマーカーです。x、y、zはgeomtery.locationが動作する特定のフォーマットであるべきですか? google.maps.LatLngLiteral
も動作するはずgoogle.maps.LatLng
ことが
place.geometry.location
ニーズ:MarkerOptions
オブジェクトにposition
プロパティとして使用する
あなたのアドレスアレイのメンバーは文字列です。文字列には 'geometry'プロパティはありません。 – geocodezip
大丈夫ですか?だから私はそれを互換性にするために文字列を変換する必要がありますか? –
'.geometry.location'は' google.maps.LatLng'または 'google.maps.LatLngLiteral'である必要があります。あなたの住所はどこから来ますか?あなたの 'createMarker'関数はどこから来ましたか? (GoogleドキュメントのPlaces APIの例のようです)問題を示す[最小、完全、テスト済み、読みやすい例](http://stackoverflow.com/help/mcve)を入力してください。 – geocodezip