如何向使用 extInfoWindows 进行谷歌地图的 infowindow 添加选项卡
我有以下代码,用于在单击标记时在谷歌地图上显示信息窗口,如何向使用 extinfowindows 的 infowindows 添加选项卡,任何人都可以帮助找出问题。
function createMarker(point, name, address, imagepath) {
var marker = new GMarker(point, gicons[imagepath]);
var html1 = '<span class="name-tab"><b>' + name + '</b></span> <span class="info"><br/>' + address + '</span>';
GEvent.addListener(marker, 'click', function () {
marker.openExtInfoWindow(
map, "simple_example_window", html1, {
beakOffset: -4
});
});
}
I have the following code to display the info window on the google map when marker is clicked how can i add tabs to the infowindows which is using extinfowindows ,can anyone help to trace out the problem.
function createMarker(point, name, address, imagepath) {
var marker = new GMarker(point, gicons[imagepath]);
var html1 = '<span class="name-tab"><b>' + name + '</b></span> <span class="info"><br/>' + address + '</span>';
GEvent.addListener(marker, 'click', function () {
marker.openExtInfoWindow(
map, "simple_example_window", html1, {
beakOffset: -4
});
});
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
注意:GMaps v3.0 不支持选项卡,
请检查此项
但是我们可以使用 JQuery 将其用于 V3.0,这里是代码示例
Note:tabs are not supported for GMaps v3.0
check this
But we can make it for V3.0 using JQuery here is sample of code