markerwithlabel ユーティリティ ライブラリ オブジェクトの labelClass を取得し、jquery 回転を使用して回転させることは可能ですか?
私はこのようなことを試みてきましたが、うまくいきません...:
var markerx = new MarkerWithLabel({
position: new google.maps.LatLng(0.0),
draggable: false,
raiseOnDrag: false,
map: map,
labelContent: "some chat",
labelAnchor: new google.maps.Point(30, 20),
labelClass: "labels", // the CSS class for the label
labelStyle: {opacity: 1.0},
icon: "/assets/swell_arrow.png",
visible: true
});
$(document).ready(function()
{
$('.labels').rotate(30);
});
ご意見ありがとうございます。