在Google Map V3中,如何在多边形内部和上方放置标签? V2中没有标签覆盖 当我使用库maplabel时,即使我指定了更高的Z-index,我也可以将文本放在里面,但不在上面。 谢谢 菲尔
答案 0 :(得分:2)
为时已晚,但我遇到了同样的问题,这段代码运行正常!
var triangleCoords = [
{ lat:30.655993, lng: 76.732375 },
{ lat: 30.651379, lng: 76.735808},
{ lat: 30.653456, lng: 76.729682}
]
var bermudaTriangle = new google.maps.Polygon({
paths: triangleCoords ,
strokeColor: '#FF0000',
strokeOpacity: 0.8,
strokeWeight: 2,
fillColor: '#FF0000',
fillOpacity: 0.35
});
attachPolygonInfoWindow(bermudaTriangle)
function attachPolygonInfoWindow(polygon) {
var infoWindow = new google.maps.InfoWindow();
google.maps.event.addListener(polygon, 'mouseover', function (e) {
infoWindow.setContent("Polygon Name");
var latLng = e.latLng;
infoWindow.setPosition(latLng);
infoWindow.open(map);
});
}
答案 1 :(得分:1)
maplabel在mapPane中的画布上渲染其文本,该画布通常呈现在floatPane中的所有zIndex值之下。 要将mapPane画布放入zIndex顺序,请尝试:
var mapLabel = new MapLabel({
position: new google.maps.LatLng(yourLat, yourLng),
text: 'test',
zIndex: 101} );
$(mapLabel.getPanes().mapPane).css('z-index', mapLabel.zIndex);
答案 2 :(得分:0)
设置标签内容,找到多边形的center position,就是这样:)
var labelOptions = {
content: label,
boxStyle: {
textAlign: "center",
fontSize: "8pt",
width: "50px"
},
disableAutoPan: true,
pixelOffset: new google.maps.Size(-25, 0),
position: this.my_getBounds(gpoints).getCenter(),
closeBoxURL: "",
isHidden: false,
pane: "mapPane",
enableEventPropagation: true
};
var polygonLabel = new InfoBox(labelOptions);
polygonLabel.open(map);
答案 3 :(得分:0)
您可以使用InfoBox的position
字段。使用下面的代码获取多边形的中心位置。
const bounds = new window.google.maps.LatLngBounds();
bounds.extend(new window.google.maps.LatLng(lat1,lng1));
bounds.extend(new window.google.maps.LatLng(lat2,lng2));
..
..
let polygonCenter = bounds.getCenter();