1

有什么办法可以从外面的桌子上打开标记的信息窗口。我也在“stackoverflow”中看到了其他用户的其他帖子,完成起来似乎有点棘手。

这是我正在使用的代码。在最后两行代码中,我将推文附加到一个表格中,如果我想从那里点击任何推文,它应该在地图上打开相应的标记。问题是我不知道如何链接标记和表格行。

            function geocode(user, date, profile_img, text, url, location) {
                var geocoder = new google.maps.Geocoder();
                geocoder.geocode({
                    address: location
                }, function (response, status) {
                    if (status == google.maps.GeocoderStatus.OK) {
                        var x = response[0].geometry.location.lat(),
                            y = response[0].geometry.location.lng();
                        var myLatLng = new google.maps.LatLng(x, y);
                        var marker = new google.maps.Marker({
                            icon: profile_img,
                            title: user,
                            map: map,
                            position: myLatLng
                        });
                        var contentString = '<div id="content">' + '<div id="siteNotice">' + '</div>' + '<h2 id="firstHeading" class="firstHeading">' + user + '</h2>' + '<div id="bodyContent">' + text + '</div>' + '<div id="siteNotice"><a href="' + url + '"></a></div>' + '<p>Date Posted- ' + date + '.</p>' + '</div>';


                        var infowindow = new google.maps.InfoWindow({
                            content: contentString
                        });
                        google.maps.event.addListener(marker, 'click', function () {
                            infowindow.open(map, marker);
                        });

                $('#user-tweets').css("overflow","scroll");
                $('#user-tweets').append('<table width="320" border="0"><tr><td onclick=infoWindow(map,marker); colspan="2" rowspan="1">'+user+'</td></tr><tr><td width="45"><a href="'+profile_img+'"><img src="'+profile_img+'" width="55" height="50"/></a></td><td width="186">'+text+'</td></tr></table><hr>');
                        function infoWindow(map,marker){

                            infowindow.open(map, marker);
                        }
                        bounds.extend(myLatLng);
4

1 回答 1

2

AK 47,

假设在提供的代码之后未闭合的括号和花括号都闭合...

首先在外部范围内为冗长的 HTML 字符串制作模板 - 即。外部function geocode(){}——它们被定义一次的地方,而不是每次需要它们的地方。

var templates = [];
templates[0] = '<div><div></div><h2 class="firstHeading">%user</h2><div>%text</div><div><a href="%url"></a></div><p>Date Posted- %date.</p></div>';
templates[1] = '<table width="320" border="0"><tr><td class="user" colspan="2" rowspan="1">%user</td></tr><tr><td width="45"><a href="%profile_img"><img src="%profile_img" width="55" height="50" /></a></td><td width="186">%text</td></tr></table><hr />';

您会看到我删除了 ID,否则每次使用模板时都会重复这些 ID。重复时,我失去了他们的目的。

然后将所有内容替换var contentString = ...;function infoWindow(map,marker){...}

var infowindow = new google.maps.InfoWindow({
    content: templates[0].replace('%user',user).replace('%text',text).replace('%url',url).replace('%date',date);
});
var $tweet = $(templates[1].replace('%user',user).replace(/%profile_img/g,profile_img).replace('%text',text));
$('#user-tweets').css("overflow","scroll").append($tweet);
function openInfoWindow() {
    infowindow.open(map, marker);
}
google.maps.event.addListener(marker, 'click', openInfoWindow);
$tweet.find(".user").on('click', openInfoWindow);

你会看到它function openInfoWindow()不接受参数。相反,它拾取mapmarker通过闭包(它们在外部范围中定义)。这允许openInfoWindow在两个地方按名称附加 - 作为标记单击推文单击的处理程序(这是您想要的)。

这可能不是 100% 正确,因为我必须做出假设,但它至少应该让您了解如何解决问题。

于 2012-09-01T09:31:42.827 回答