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.
我正在使用 gmaps4rails 侧边栏功能来允许跳转到地图上的单个标记。
我的问题是:
如何触发第一个侧边栏项目上的单击事件,以便默认显示第一个标记的信息窗口?
您应该只添加一个回调:
Gmaps.map.callback = function() { var firstMarker = Gmaps.map.markers[0]; var map = Gmaps.map.map; firstMarker.infowindow.open(map, firstMarker.serviceObject); }
请务必将此回调gmaps放在您视图中的助手之后。
gmaps