0

我一直在阅读许多类似的线程,但看不到如何在我的代码中进行这项工作......任何建议将不胜感激。

我通过 AJAX 设置了许多标记,并根据 JSON 结果中返回的数据在我的地图下方创建了一个表格。我想在我的数据表中创建一个可单击的链接,该链接将模拟对地图上相应标记的单击,并打开已经为实际单击标记定义的信息窗口...

function display( json_results ) {

        $("#map").gmap3({action:'clear'});

        $("#map").gmap3(
            {action: 'init',
              options:{
                center:true,
                zoom:13,
                mapTypeId: google.maps.MapTypeId.ROADMAP,
                mapTypeControl: true,
                mapTypeControlOptions: {
                        style: google.maps.MapTypeControlStyle.DROPDOWN_MENU
                },
                navigationControl: true,
                scrollwheel: true,
                streetViewControl: true
                }
            },
            {action: 'addMarkers',
                radius:100,
                markers: json_results,
                clusters:{
                            maxZoom: 10,
                            // This style will be used for clusters with more than 0 markers
                            20: {
                            content: '<div class="cluster cluster-1">CLUSTER_COUNT</div>',
                            width: 53,
                            height: 52
                            },
                            // This style will be used for clusters with more than 20 markers
                            50: {
                            content: '<div class="cluster cluster-2">CLUSTER_COUNT</div>',
                            width: 56,
                            height: 55
                            },
                            // This style will be used for clusters with more than 50 markers
                            100: {
                            content: '<div class="cluster cluster-3">CLUSTER_COUNT</div>',
                            width: 66,
                            height: 65
                            }

                    },
                marker: {
                    options: {
                        //icon: new google.maps.MarkerImage('http://maps.gstatic.com/mapfiles/icon_green.png'),
                        clickable: true
                        },
                    events:{
                        click: function(marker,event,data) {
                            $(this).gmap3({action: 'clear', name : 'infowindow'});
                            $(this).gmap3({action: 'addinfowindow', anchor: marker, options: { content:
                            '<div class="text"><strong><div style="color:navy;">' + data.itype + '</strong><br/><div id="address" snum="' + data.streetnum + '" snam="' + data.streetnam + '" styp="' + data.streettyp + '">'+ data.iaddress +'</div><br/>' + data.inum + '<br/>'+ data.datetime +'</div><hr>'+data.notes+'</div>'} })
                        },  
                        mouseover: function(marker, event, data){
                            $(this).gmap3(
                                { action:'clear', name:'overlay'},
                                { action:'addOverlay',
                                    latLng: marker.getPosition(),
                                    content:    '<div class="infobulle">' +
                                                '<div class="bg"></div>' +
                                                '<div class="text">' + data.itype +'</div>' +
                                                '</div>' +
                                                '<div class="arrow"></div>',
                                    offset: {
                                        x:-46,
                                        y:-73
                                    }
                                });
                        },
                        mouseout: function(){
                            $(this).gmap3({action:'clear', name:'overlay'});
                            }

                    } //end events
                } // end marker

                }
                ,{action:"autofit"} //end action

                );
            };

当页面被加载并且带有搜索结果的表单被提交时,我从一些 JQUERY 调用这个函数。一切都完美无缺。现在我想在地图外添加一个链接,该链接将触发对相应标记的点击...

例如:<a href="javascript:google.maps.event.trigger(markers[i], "click")">See This Infowindow</a>其中 i 将是我在 JSON 中传递的值,同时我将 lat/long 和 infowindow 数据传递给上面的函数。我假设要发送用于映射的第一个数据数组是 0,第二个是 1 等等,所以我会让第一个链接的 i=0,第二个链接的 i=1 等等......

不确定该逻辑是否有意义,也许有更好的方法将引用传递给标记......

谁能帮我解决这个问题?也许是一个简单的函数,我可以将标记的值传递到我现有的代码中?或者任何你认为最好的方法......

谢谢大师!

4

1 回答 1

1

您是否尝试定义自己的函数来处理点击?

function myclick(i) {
    google.maps.event.trigger(markers[i],"click");
  }

 function setHTML() {
    var html = "";
    for (var i=0; i<markers.length; i++) {
        html += '<a href="javascript:myclick(' + i + ')">' + marker[i].id + '<\/a>';
    }
    document.getElementById("table").innerHTML = html;
  }
于 2012-08-14T09:44:03.480 回答