我使用谷歌MapAPI 3和自定义覆盖(OverlayView)我有这样的代码:
http://jsfiddle.net/8X6cY/1/
请用鼠标悬停maker以查看工具提示覆盖.
我怎样才能精确地将工具提示弹出窗口(黄色窗口)定位在标记附近?。我的X,Y想法不起作用,因为它与Map有关,因此如果页面的布局是流动的,我的解决方案(X,Y)就毫无价值。
你知道吗?
google.maps.event.addListener(marker, 'mouseover', function(event) {
var pixel = latLngToPixel.getProjection().fromLatLngToContainerPixel(event.latLng);
// Grab marker position
var pos = [ pixel.x, pixel.y ];
// Create the tooltip on a dummy div and store it on the marker
marker.tooltip = $('<div />').qtip({
content: {
text: 'I\'m a replacement tooltip for the regular google one<br />New line<br /> new line<br />Newer line',
title: {
text: 'aaa',
button: true
}
},
position: {
at: "right center",
my: "left center",
target: pos,
container: $('#map_canvas')
},
show: {
ready: true,
event: false,
solo: true
},
hide: {
event: 'mouseleave unfocus'
}
});
});
}
3条答案
按热度按时间pnwntuvh1#
以防有人想知道答案,我就这么说:
我希望这能帮到什么人,这花了我相当多的时间
w8f9ii692#
我已经更新了它和工作,删除:“右中”,我的:“左中”,希望你想要那个http://jsfiddle.net/8X6cY/2/
现在通过SO上的pidox和pidoy.访问你的像素坐标。希望它能帮助你。
wnrlj8wa3#
如果有人正在寻找一个解决方案的React使用覆盖视图组件从@react-google-maps/API。
组件上有一个 prop ,可以给我们偏移宽度/高度。例如,如果你有一个自定义标记,你可以像这样使用:
所述方法
可用作辅助函数,返回基于中心点的标测图标记在x和y轴上的准确位置(基本上可命名为基于宽度/高度的标记平移)
在文档中发现:https://react-google-maps-api-docs.netlify.app/#overlayview
希望能有所帮助!