カスタムラベルのxとyの位置を調整しようとしています。これは可能ですか? まだこの問題に関するドキュメントはまだありません。Googleマップのカスタムラベルのxとyの位置
numberMarkerImg = {
url: '../images/mobile/map-marker.png',
size: new google.maps.Size(32, 38),
scaledSize: new google.maps.Size(32, 38)
};
// Letter markers
marker = new google.maps.Marker({
position : point,
map : map,
icon : numberMarkerImg,
draggable: false,
labelClass: "labels",
label: {
text: saved_label,
color: 'black',
fontSize: '12px',
x: '200',
y: '100'
}
});
ありがとうございました!私は "labelOrigin:new google.maps.Point(9、9)"を使用して終了しました – user992731