Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
グーグルマップで描いた座標を保存したい。
このマイマップアドレスは、線と距離を描くことができます。 リンク
この行の座標をテキストボックスに保存する方法を教えてください..?
変数にはすでにマーカーがあり、次のようにループします。
var tempPosition, string=""; for (var i = vmarkers.length - 1; i >= 0; i--) { tempPosition = vmarkers[i].getPosition(); if(tempPosition) { string += "[" + tempPosition.lat() + "," + tempPosition.lng() + "]"; } }