地图标记在Angularjs中的Google地图中应用后的灰色平铺

Dhr*_*ara 2 google-maps angularjs

使用angular-google-maps 1.0.18地图加载完全正常,问题增加了标记添加.包含标记的正方形在地图中变为灰色.我也试过使用其他问题中提出的解决方案.但它没有任何区别.有关如何解决此问题的任何线索.

在此输入图像描述

灰色框出现在模式框中的嵌入式Google Map的部分中

代码:

var cities = [
        {
            city : 'Toronto',
            desc : 'This is the best city in the world!',
            lat : 43.7000,
            long : -79.4000
        },
        {
            city : 'New York',
            desc : 'This city is aiiiiite!',
            lat : 40.6700,
            long : -73.9400
        },
        {
            city : 'Chicago',
            desc : 'This is the second best city in the world!',
            lat : 41.8819,
            long : -87.6278
        },
        {
            city : 'Los Angeles',
            desc : 'This city is live!',
            lat : 34.0500,
            long : -118.2500
        },
        {
            city : 'Las Vegas',
            desc : 'Sin City...\'nuff said!',
            lat : 28.65596033103927,
            long : 77.2226215342037
        }
    ];

    var mapOptions = {
        zoom: 4,
        center: new google.maps.LatLng(40.0000, -98.0000),
        mapTypeId: google.maps.MapTypeId.TERRAIN
    }

    $scope.map = new google.maps.Map(document.getElementById('map'), mapOptions);
    console.log($scope.map);

    $scope.markers = [];

    var infoWindow = new google.maps.InfoWindow();

    var createMarker = function (info){

        var marker = new google.maps.Marker({
            map: $scope.map,
            position: new google.maps.LatLng(info.lat, info.long),
            title: info.city
        });
        marker.content = '<div class="infoWindowContent">' + info.desc + '</div>';

        google.maps.event.addListener(marker, 'click', function(){
            infoWindow.setContent('<h2>' + marker.title + '</h2>' + marker.content);
            infoWindow.open($scope.map, marker);
        });

        google.maps.event.trigger($scope.map, 'resize');
        //$scope.map.setCenter(new google.maps.LatLng(22.3605336, -72.6362989));

        $scope.markers.push(marker);

        //google.maps.event.trigger($scope.map, 'resize');

    }  

    for (i = 0; i < cities.length; i++){
        createMarker(cities[i]);
    }

    $scope.openInfoWindow = function(e, selectedMarker){
        e.preventDefault();
        google.maps.event.trigger(selectedMarker, 'click');
    }
Run Code Online (Sandbox Code Playgroud)

HTML:

<div>
    <div id="map"></div>
    <div id="class" ng-repeat="marker in markers | orderBy : 'title'">
         <a href="#" ng-click="openInfoWindow($event, marker)">{{marker.title}}</a>
    </div>
</div>
Run Code Online (Sandbox Code Playgroud)

Dan*_*ook 5

我们遇到了这个问题,看起来与OP的截图完全一样.

对我们来说问题是我们使用了一个名为dropzone的javascript库,它要求我们将CSS样式应用于'canvas',如下所示:

 canvas {
    -moz-box-shadow: 3px 3px 3px 0 #e3e3e3;
    -webkit-box-shadow: 3px 3px 3px 0 #e3e3e3;
    background-color: #f3f3f3;
    border: 1px solid #c3c3c3;
    box-shadow: 3px 3px 3px 0 #e3e3e3;
    height: 100px;
    margin: 6px 0 0 6px;
}
Run Code Online (Sandbox Code Playgroud)

这种样式无意中被应用于Google Map画布,这导致在添加标记时"灰色框"出现在地图上.

删除任何适用于所有"canvas"元素的样式,并根据需要使用类/ id选择器,这样您就不会无意中将样式应用于Google Map画布.