ドラッグ可能なマーカーを使用して Google マップを作成しています。マーカーを作成した後で、その位置を変更するにはどうすればよいですか? これに使えますsetposition(latlng)
か?はいの場合、どのように?Google Map 3 インスタンスを作成するコードは次のとおりです。
function showm(la,lo) {
$('#gmap').hide();
alert(lo);
$('#gmap').gmap3({
marker:{
latLng: [la,lo],
options:{
draggable:true
},
events:{
dragend: function(marker){
$(this).gmap3({
getaddress:{
latLng:marker.getPosition(),
callback:function(results){
alert(marker.getPosition().lat());
var map = $(this).gmap3("get"),
infowindow = $(this).gmap3({get:"infowindow"}),
content = results && results[1] ? results[0].formatted_address : "no address";
if (infowindow){
infowindow.open(map, marker);
infowindow.setContent(content);
} else {
$(this).gmap3({
infowindow:{
anchor:marker,
options:{content: content}
}
});
}
}
}
});
}
}
},
map:{
options:{
zoom: 12
}
}
});
$('#gmap').show();
}