Google Maps - center map on marker click

后端 未结 2 423
甜味超标
甜味超标 2021-01-24 20:54

I have the following code for placing several markers on a google map.

What I now want to do is when the user clicks on a marker it zooms in and then centers the map to

2条回答
  •  执笔经年
    2021-01-24 21:42

    google.maps.event.addListener(marker, "click", function (evt) {
                infowindow.setContent(this.html);
                infowindow.open(map, this);
                map.setCenter(evt.latLng); 
                map.setZoom(10);
            });
    

    that will working in my own app

提交回复
热议问题