Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在浏览谷歌地图 API v3,发现点击事件在这里不起作用https://developers.google.com/maps/documentation/javascript/examples/event-simple。这是一个已知的问题?
单击标记后,您可以尝试缩小:
google.maps.event.addListener(marker, 'click', function() { map.setZoom(8); map.setCenter(marker.getPosition()); });