使 Google 地图标记鼠标悬停更具交互性
我有一张带有谷歌标记的地图,但我想用它做一些有趣的事情,比如在其中发布一个链接,并将文本格式化为每行一个信息项,而不是全部在一行中。
这可能吗?如果是这样,那么可以做什么以及如何做? :) 这是我当前的无聊地图和本页底部的标记: http://www.comehike.com/outdoors/parks/trailhead.php
I have a map with a google marker, but I would like to do some fun things with it like post a link in there, and format the text there to have an information item per line instead of all in one line.
Is that possible? If so, then what can be done and how? :)
Here is my current boring map and marker at the bottom of this page:
http://www.comehike.com/outdoors/parks/trailhead.php
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以这样做:
您想要显示的内容在哪里
,例如图像和联系信息或其他内容。
也就是说,如果您希望在鼠标悬停事件时打开信息窗口。您可以通过立即调用该函数(map.openInfoWindow(point, myHtml))来默认打开它。
希望有帮助。
You could do:
where
is what you want to show, for example image and contact info or something.
That is if you want the info window opened on mouseover event. You could either open it by default by calling that function ( map.openInfoWindow(point, myHtml) ) right away.
Hope that helps.