私は jquery.ui.map を使用しており、新しく作成されたマーカーで openInfoWindow を呼び出そうとしています。
これは機能し、マーカーを追加しますが、このマーカーの作成時に openInfoWindow を呼び出すにはどうすればよいですか?
$('#map_canvas').gmap('addMarker',{'position': event.latLng,'draggable': true,'bounds': false}).dragend(function() {
dragEndFunc(this);
}).click(function() {
markerClickFunc(this);
});