web-dev-qa-db-ja.com

Google Map V3で、ポリゴンの内側と上にラベルを配置するにはどうすればよいですか?

Google Map V3で、ポリゴンの内側と上にラベルを配置するにはどうすればよいですか? V2のようにラベルオーバーレイがありませんライブラリmaplabelを使用すると、より高いZインデックスを指定しても、テキストを内側に配置できますが、上に配置することはできません。ありがとうフィル

15
trachy

手遅れですが、私は同じ問題に直面しており、このコードは正常に機能します!

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);
    });
}
3
Mohan Singh

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);
1
Andrew

使用 google-maps-utility-library

ラベルの内容を設定し、ポリゴンの 中心位置 を見つけてください:)

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);
1
Jaykishan

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();

0