web-dev-qa-db-ja.com

Google Maps:InfoWindowを自動的に閉じますか?

私のサイトで 、Google Maps API v3を使用して地図上に家のマーカーを配置しています。

閉じるアイコンを明示的にクリックしない限り、InfoWindowsは開いたままになります。つまり、マップマーカーにカーソルを合わせると、一度に2つ以上のInfoWindowsを開くことができます。

質問:現在アクティブなInfoWindowのみを開き、他のすべてのInfoWindowを閉じるようにするにはどうすればよいですか?つまり、一度に開くことができるInfoWindowは1つだけですか?

103
Ted

InfoWindowsには close() 関数があります。最後に開いたウィンドウを追跡し、新しいウィンドウが作成されたときにそのウィンドウで閉じる関数を呼び出すだけです。

このデモ はあなたが探している機能を備えています。 Maps API V3デモギャラリー で見つけました。

149
Chris B

多くの情報ウィンドウを使用したこの代替ソリューション:prevで開いたinfowindowを変数に保存し、新しいウィンドウが開いたら閉じる

var prev_infowindow =false; 
...
base.attachInfo = function(marker, i){
    var infowindow = new google.maps.InfoWindow({
        content: 'yourmarkerinfocontent'
    });

    google.maps.event.addListener(marker, 'click', function(){
        if( prev_infowindow ) {
           prev_infowindow.close();
        }

        prev_infowindow = infowindow;
        infowindow.open(base.map, marker);
    });
}
61
mike
//assuming you have a map called 'map'
var infowindow = new google.maps.InfoWindow();

var latlng1 = new google.maps.LatLng(0,0);
var marker1 = new google.maps.Marker({position:latlng1, map:map});
google.maps.event.addListener(marker1, 'click',
    function(){
        infowindow.close();//hide the infowindow
        infowindow.setContent('Marker #1');//update the content for this marker
        infowindow.open(map, marker1);//"move" the info window to the clicked marker and open it
    }
);
var latlng2 = new google.maps.LatLng(10,10);
var marker2 = new google.maps.Marker({position:latlng2, map:map});
google.maps.event.addListener(marker2, 'click',
    function(){
        infowindow.close();//hide the infowindow
        infowindow.setContent('Marker #2');//update the content for this marker
        infowindow.open(map, marker2);//"move" the info window to the clicked marker and open it
    }
);

これにより、クリックされた各マーカーに情報ウィンドウが「移動」され、事実上それ自体が閉じられ、新しい場所で再び開かれます(ビューポートに合わせてパンされます)。開く前に内容が変更され、目的の効果が得られます。 n個のマーカーで機能します。

26
Joel Mellon

私の解決策。

var map;
var infowindow = new google.maps.InfoWindow();
...
function createMarker(...) {
var marker = new google.maps.Marker({
     ...,
     descrip: infowindowHtmlContent  
});
google.maps.event.addListener(marker, 'click', function() {
    infowindow.setOptions({
        content: this.descrip,
        maxWidth:300
    });
    infowindow.open(map, marker);
});
16
kaidoj

このリンクから http://www.svennerberg.com/2009/09/google-maps-api-3-infowindows/

Teo:これを行う最も簡単な方法は、何度も何度も再利用するInfoWindowオブジェクトのインスタンスを1つだけにすることです。新しいマーカーをクリックすると、infoWindowは現在の位置から「移動」して、新しいマーカーを指すようになります。

SetContentメソッドを使用して、正しいコンテンツをロードします。

9
Keith Adler

Close()関数を使用する以外にも簡単な方法があります。 InfoWindowプロパティを使用して変数を作成すると、別の変数を開くと自動的に閉じます。

var info_window;
var map;
var chicago = new google.maps.LatLng(33.84659, -84.35686);

function initialize() {
    var mapOptions = {
        center: chicago,
        zoom: 14,
        mapTypeId: google.maps.MapTypeId.ROADMAP
    };
    map = new google.maps.Map(document.getElementById("map_canvas"), mapOptions);

    info_window = new google.maps.InfoWindow({
        content: 'loading'
    )};

createLocationOnMap('Location Name 1', new google.maps.LatLng(33.84659, -84.35686), '<p><strong>Location Name 1</strong><br/>Address 1</p>');
createLocationOnMap('Location Name 2', new google.maps.LatLng(33.84625, -84.36212), '<p><strong>Location Name 1</strong><br/>Address 2</p>');

}

function createLocationOnMap(titulo, posicao, conteudo) {            
    var m = new google.maps.Marker({
        map: map,
        animation: google.maps.Animation.DROP,
        title: titulo,
        position: posicao,
        html: conteudo
    });            

    google.maps.event.addListener(m, 'click', function () {                
        info_window.setContent(this.html);
        info_window.open(map, this);
    });
}
5
MelloG

アクティブウィンドウの変数を宣言する

var activeInfoWindow; 

マーカーリスナーでこのコードをバインドします

 marker.addListener('click', function () {
    if (activeInfoWindow) { activeInfoWindow.close();}
    infowindow.open(map, marker);
    activeInfoWindow = infowindow;
});
3
Hardeep Singh

どうですか-

google.maps.event.addListener(yourMarker, 'mouseover', function () {
        yourInfoWindow.open(yourMap, yourMarker);

    });

google.maps.event.addListener(yourMarker, 'mouseout', function () {
        yourInfoWindow.open(yourMap, yourMarker);

    });

次に、その上にマウスを置くと、自動的に閉じます。

2
Nathan
var map;
var infowindow;
...
function createMarker(...) {
    var marker = new google.maps.Marker({...});
    google.maps.event.addListener(marker, 'click', function() {
        ...
        if (infowindow) {
            infowindow.close();
        };
        infowindow = new google.maps.InfoWindow({
            content: contentString,
            maxWidth: 300
        });
        infowindow.open(map, marker);
    }
...
function initialize() {
    ...
    map = new google.maps.Map(document.getElementById("map_canvas"), myOptions);
    ...
    google.maps.event.addListener(map, 'click', function(event) {
        if (infowindow) {
            infowindow.close();
        };
        ...
    }
}
1
D K

現在開いている情報ウィンドウを追跡するために、変数を上部に保存しました。以下を参照してください。

var currentInfoWin = null;
google.maps.event.addListener(markers[counter], 'click', function() {      
    if (currentInfoWin !== null) {
        currentInfoWin.close(map, this); 
    }
    this.infoWin.open(map, this); 
    currentInfoWin = this.infoWin;  
}); 
1
P Nelson