宣传单标记图标点击事件无效

时间:2015-12-04 15:45:49

标签: javascript angularjs ionic-framework angular-leaflet-directive

我正面临着传单标记的问题,当我刷新页面时,标记是可点击的,但当我来自另一个页面标记时,我无法点击,我尝试所有的东西,但没有找到任何解决方案。

JAVASCRIPT:

angular.extend($scope, {
center: {
    lat: 51.505,
    lng: -0.09,
    zoom: 8
},
markers: {},

});

mapService.getLocation(function(location) {
    $scope.center = {
        lat: location.lat,
        lng: location.long,
        zoom: 12
    };
    $scope.$digest($scope.center);
    mapService.getMarkers(
        new google.maps.LatLng(location.lat, location.long),
        document.getElementById('map'), ['school'],
        function(results) {
            results.forEach(function(marker) {
                var __location = marker.geometry.location.toJSON();
                $scope.markers[marker.id] = {
                    lat: __location.lat,
                    lng: __location.lng,
                    message: marker.name,
                    focus: false
                }
            });
            $scope.$digest($scope.markers);
        }
    )
});

HTML:

<leaflet
width="100%"
markers="markers"
lf-center="center">

[注意]我使用传单(ver:&#34; 0.7.7&#34;)和angular-leaflet-directive(版本:&#34; 0.10.0&#34;)。

1 个答案:

答案 0 :(得分:2)

只需添加传单地图的data-tap-disabled="true"父标记

即可解决我的问题