如何使用Angular Directive强制Google地图加载到我的Angular应用程序中

时间:2017-01-30 08:16:34

标签: javascript angularjs google-maps angular-directive

我遇到的问题是,我的Google地图在80%的时间内都没有显示。这似乎是我的地图在我的Angular视图中填充其余数据时尚未完全呈现的情况。

如何强制加载地图?

我做了一些研究,我在相关问题上找到了这个答案,但我不确定如何以及如果我能实现这样的事情:

  

这让我困扰了GMaps v3一段时间。我找到了办法   它是这样的:

google.maps.event.addListenerOnce(map, 'idle', function(){
    // do something only the first time the map is loaded
});
     

当地图进入空闲状态时会触发“空闲”事件 -   一切都加载(或加载失败)。我发现它更可靠   然后tilesloaded / bounds_changed并使用addListenerOnce方法   闭包中的代码在第一次触发“空闲”时执行   然后事件被分离了。

     

链接:How can I check whether Google Maps is fully loaded?

这是我目前的设置:

1。我的Google Maps API链接和密钥位于我的index.html文件中:

<script src="https://maps.googleapis.com/maps/api/js?key=XXXXXXXXXXXXXXXXXXXXX"></script>

2。我使用以下作为我的角度指令:

'use strict';

angular.module('portalDashboardApp')
  .directive('ogGoogleMap', function ($http, $q) {
      return {
          restrict: 'E',
          scope: {
              twitter: '=',
              instagram: '='
          },
          template: '<div id="gmaps"></div>',
          replace: true,
          link: function (scope, element, attrs) {

              var map, infoWindow;
              var markers = [];

              // map config
              var mapOptions = {
                  center: new google.maps.LatLng(-0.013026, 21.333860),
                  zoom: 3,
                  mapTypeId: google.maps.MapTypeId.ROADMAP
              };

              // init the map
              function initMap() {
                  if (map === void 0) {
                      map = new google.maps.Map(element[0], mapOptions);
                  }
              }

              // place a marker
              function setMarker(map, position, title, content, icon) {

                  if (icon === 'IN') {
                      icon = 'images/instagramMarker.png';
                  }
                  else {
                      icon = 'images/twitterMarker.png';
                  }

                  var marker;
                  var markerOptions = {
                      position: position,
                      map: map,
                      title: title,
                      icon: icon
                  };

                  marker = new google.maps.Marker(markerOptions);
                  markers.push(marker); // add marker to array

                  google.maps.event.addListener(marker, 'click', function () {
                      // close window if not undefined
                      if (infoWindow !== void 0) {
                          infoWindow.close();
                      }
                      // create new window
                      var infoWindowOptions = {
                          content: content
                      };
                      infoWindow = new google.maps.InfoWindow(infoWindowOptions);
                      infoWindow.open(map, marker);
                  });
              }

              function deleteCurrentMarkers() {
                  for (var i = 0; i < markers.length; i++) {
                      markers[i].setMap(null);
                  }
                  markers = [];
              }

              scope.$watch('instagram', function () {
                  deleteCurrentMarkers();
                  populateMarkers(scope.twitter, 'TW');
                  populateMarkers(scope.instagram, 'IN');
              });

              // show the map and place some markers
              initMap();

              function populateMarkers(locationArray, type) {

                  angular.forEach(locationArray, function (location) {

                      setMarker(map, new google.maps.LatLng(location[0], location[1]), '', '', type);

                  });

              }

          }
      };
  });

第3。我使用以下简单的方法在我的Angular Controller中分配我的地图数据:

首先我检索我的数据:

function pullSocialData() {

    SocialMediaUserService.getKeywordProfileID().then(function (keywordProfileID) {

        GetFusionDataService.getItems(getRequestURL(keywordProfileID))
          .success(function (data) {

              formatDataAccordingToLocation(data);

          })
          .error(function (error, status) {
              handleDataRetrievalError(error, status);
          });

    });
}

我分配了我的数据:

function formatDataAccordingToLocation(data) {
    $scope.twitterLocations = data.lat_longs_twitter;
    $scope.instagramLocations = data.lat_longs_instagram;
}

这就是我的API数据:

lat_longs_twitter: [
    [
    -25.77109,
    28.09264
    ],
    [
    -26.1078272,
    28.2229014
    ]
]

4。我的HTML地图div:

<div ng-show="!demographics.showDemographicsGraph">
    <og-google-map twitter="twitterLocations" instagram="instagramLocations"></og-google-map>
</div>

当我的地图正确加载时,它看起来像这样:

enter image description here

如果没有正确加载,它看起来像这样:

enter image description here

提前谢谢!

2 个答案:

答案 0 :(得分:0)

在您的指令链接功能中,尝试在地图initMap回调中移动idle

google.maps.event.addListenerOnce(map, 'idle', function(){ 
   // show the map and place some markers
   initMap();
});

答案 1 :(得分:0)

为了加载我的地​​图,我添加了一些验证来检查我的数据是否在初始化地图之前已经返回。我还添加了timeOut以获得良好的衡量标准,以便为地图提供更多渲染时间。

我在Angular Directive中做了以下更改:

scope.$watch('instagram', function () {
  if (scope.twitter != undefined || scope.instagram != undefined) {
      initMap();
      setTimeout(function () {
          deleteCurrentMarkers();
          populateMarkers(scope.twitter, 'TW');
          populateMarkers(scope.instagram, 'IN');
      }, 3000);
  }
});