此主题有两年的帖子:Creating custom info windows in Google Maps。
我想知道两年后这仍然是最好的解决方案,还是有其他可能更简单的方法来创建自定义信息winodws。
由于
答案 0 :(得分:2)
我没有尝试过两年前的InfoBox,而是best custom solution I've seen for V3 is also called InfoBox。它有很多选项,所以它并不比旧的InfoBox简单。这对于休闲使用来说既烦人又令人讨厌,但是当你需要一个特定的外观时它会很强大。
Here's a page I wrote using InfoBox您可以点击标记LatLngs。
答案 1 :(得分:1)
您基本上需要以下内容:
var map = new google.maps.Map(document.getElementById("map_canvas"), {});
var infoWin = google.maps.InfoWindow({ content: 'Window Content' });
infoWin.open(map);
有关详细信息,请参阅以下内容:
https://developers.google.com/maps/documentation/javascript/overlays#InfoWindows