显示 Google 地图标记的信息窗口
我已经使用 gMap jQuery 插件 成功加载了 Google 地图,并使其显示传递给它的几个标记使用此处在“带有标记和信息窗口的地图”下演示的模式的 JSON 对象。到目前为止,一切都很好。
现在我想在同一页面上有一个链接,单击该链接时,会显示地图上标记的信息窗口。
这是怎么做到的?
I have succeeded in loading a Google map using the gMap jQuery plugin and making it display several markers passed to it in a JSON object using the pattern demonstrated here under "Map with marker and info window". So far, so good.
Now I want to have a link on the same page which, when clicked, displays the info window for a marker on the map.
How is this done?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要在创建标记时存储对标记的引用,然后在链接的
click
事件上调用marker.openInfoWindow(htmlContent)
。You need to store a reference to the marker when you create it and then call
marker.openInfoWindow(htmlContent)
on theclick
-event of the link.