好的,我有一个动态生成的谷歌地图(使用 jquery ui map v3 插件)。
要显示的地图数据取决于用户输入/选择。
我这样打开地图:
map_lat = parseFloat(xxxxxxxxxx);
map_long = parseFloat(xxxxxxxxxxxx);
map_zoom = parseInt(xxxxxxxxxxxx);
myCenter = map_lat+","+map_long;
myCenter = myCenter.toString();
$("#my_map").width(600).height(620);
$("#my_map").gmap({
"center": myCenter,
"zoom": map_zoom,
"disableDefaultUI": false
});
populateMap( *varius options here* );
用标记和数据填充我的地图的功能是:
function populateMap( *varius options here* );
{
var htmlData = "", // will hold a list of links for user to interact. Each link must open appropriate marker info window
htmlDataShow = '' // will hold some html data along with the link list
;
$("#my_map").gmap("clear", "markers");
$("#point-view").hide();
$.getJSON( "path_to_json_file", function(data)
{
$.each( data.markers, function(i, marker)
{
htmlData += '<a href="javascript:void(0)" onClick=\'openGMarker("'+marker.id+'")\'>'+marker.title+'</a> ';
$("#my_map").gmap("addMarker",
{
"position": new google.maps.LatLng(marker.latitude, marker.longitude),
"bounds": true ,
"icon": marker.icon,
"id":marker.id,
}).click(function()
{
$("#my_map").gmap("openInfoWindow", { "content": marker.content }, this);
});
});
htmlDataShow = '<h2 class="fut20 white lightStripTitleFull">Select a point to view on map</h2><div class="graystrip"><p>'+htmlData+'</p></div>';
$("#point-view").empty().html(htmlDataShow).show();
});
}
上述功能将在页面上生成可供用户交互的可用标记/链接列表(单击以在信息窗口上显示详细信息)。
为了让用户能够与链接交互,我有这个功能:
function openGMarker(id)
{
$('#my_map').gmap('closeInfoWindow');
var marker = $('#my_map').gmap('get', 'markers')[id];
//console.log(marker);
}
此函数将获取链接/标记的 id 并打开正确的信息窗口。我设法获得了 id 部分,但到目前为止我无法理解如何打开信息窗口。
任何帮助表示赞赏。