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.
单击地点标签时是否会触发事件?
google.maps.event.addListener(button1, 'click', function() { map.setZoom(4); } });
所以在这个例子中,我们有一个监听器(在初始化函数内部)。我们有我们的 var button1。每当单击 button1 时,我们的地图都会将其缩放级别设置为 4。当然,您可以更改函数内部发生的任何事情。
您提出的问题是单击地点标签时是否触发了事件,默认情况下简单的答案是否定的。但是,您可以使用此侦听器触发事件。