谷歌地图工具提示
我想知道是否有人可以帮助我。
我一直在为放置在谷歌地图上的标记制作工具提示。我可以让它显示我希望用户看到的信息,在本例中是字段名称和地址,因此代码行是 title: name+address
。
有人可以告诉我如何在这些之间放置一个空格,以便工具提示会显示“名称地址”而不是“名称地址”。
我已经使用例如 title: name'_'+ address
、title: name' '+address
尝试了各种方法,但无法让它工作。
任何帮助将不胜感激。
非常感
谢克里斯
I wonder whether someone may be able to help me please.
I've been working on a tooltip for markers that I place on a google map. I can get this to work showing the information that I would like the user to see, in this case the fields name and address, so the code line is title: name+address
.
Could someone please tell me how I could put a space between these so the tooltip would read 'name address' rather than 'nameaddress'.
I've tried all sorts of things using e.g.title: name'_'+ address
, title: name' '+address
and I can't get it to work.
Any help would be greatly appreciated.
Many thanks
Chris
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以尝试这个
注意:引号中需要一个空格,并且两侧需要一个
+
。You can try this
NB: you need a space in the quotes and a
+
on either side.我使用这个函数来初始化起始值:
我使用这个函数将值点位置设置到地图中
我使用这个函数创建一个工具提示来指向位置
我使用这个样式到css文件
I use this function to initialize started values:
I used this function to set values point position into map
I use this function to create a tooltip to point position
I use this style to css file