Google maps api 3 使用重叠标记器搜索问题

Google maps api 3 使用重叠标记器搜索问题,google-maps-api-3,Google Maps Api 3,我们使用markerclusterer和OverlappingMarkerSpider实现了google地图。集群和蜘蛛网工作良好。但我们已经实现了搜索,其中将调用基于名称和下面函数的用户搜索特定位置。搜索工作正常,但坐标相同的位置除外。我们已经实现了重叠标记器和精细工作,但对于细化的位置,放大不精细工作,并将其指向地图中心 function showMarkerInfo(index) { hidePopup('popup'); map.setCenter(new googl

我们使用markerclusterer和OverlappingMarkerSpider实现了google地图。集群和蜘蛛网工作良好。但我们已经实现了搜索,其中将调用基于名称和下面函数的用户搜索特定位置。搜索工作正常,但坐标相同的位置除外。我们已经实现了重叠标记器和精细工作,但对于细化的位置,放大不精细工作,并将其指向地图中心

function showMarkerInfo(index)
{

    hidePopup('popup');

    map.setCenter(new google.maps.LatLng(filterMarker[index].get('LATITUDE'),filterMarker[index].get('LONGITUDE')));

    idleMapZoomListener = google.maps.event.addListener(map, 'idle', function() {
        google.maps.event.trigger(filterMarker[index], "click");
        map.setCenter(new google.maps.LatLng(MAP_INIT_LAT,MAP_INIT_LNG));

        google.maps.event.removeListener(idleMapZoomListener);
    });


    if (map.getZoom() == 16 ) {
        map.setZoom(17);
    } else {
        map.setZoom(16);
    }

}
我们使用oms.trigger(“单击”,filterMarker[index]);而不是google.maps.event.trigger(filterMarker[index],“单击”);而且工作正常。

请提供一份说明问题的报告。