8

我想使用ngMap将 Google 地图添加到我的应用程序中。

这些演示是“静态的”,因为它们只有硬编码的 HTML。我希望我的代码是“动态的”,因为它会定期要求服务器查看其数据库并返回一堆坐标来绘制,这些坐标会随着时间而变化。我希望这很清楚;如果没有,请询​​问更多详细信息。

我修改了ngmap 标记演示以每两秒生成一些随机纬度/经度坐标(而不是像我的最终应用程序那样访问我的服务器)。请参阅Plunk

控制台中没有错误,而且似乎 ngMap 正在尝试添加我的标记,因为我在控制台中看到了很多这样的事情......

adding marker with options,  
Object {ngRepeat: "myMarker in markers", position: O}
clickable: true
ngRepeat: "myMarker in markers"
position: O
A: 103.96749299999999
k: 1.387454
__proto__: O
visible: true
__proto__: Object

其中 K 和 A 是我期望的纬度/经度。

但是...我在地图上看不到任何标记。我究竟做错了什么?


[更新] 一个很好的答案,之后我很高兴地为此获得了赏金。对于其他阅读本文并希望使用 ngMap 的人,正如@allenhwkim 在另一个 stackoverflow 问题中所说,我认为,在他的博客上,ngMap 只是为您创建地图,然后您使用标准的 Google Maps API 操作它。

例如,就在循环添加标记之前,我声明
var bounds = new google.maps.LatLngBounds();了并且在循环中,在将标记添加到地图之后,我bounds.extend(latlng);,最后,在循环之后,我

var centre = bounds.getCenter();  
$scope.map.setCenter(centre);

我分叉了答案并创建了一个新的 Plunk来展示这一点。不是世界上最有用的功能,但重点只是展示如何使用$scope.mapGoogle Maps API。再次感谢 Allen,感谢 ngMap。

4

2 回答 2

26

答案在这里

http://plnkr.co/edit/Widr0o?p=preview

请记住,ngMap 不会取代 Google Maps V3 API。

如果您还有其他问题,请告诉我。

以下是控制器的代码块。

// $scope.map .. this exists after the map is initialized
var markers = [];
for (var i=0; i<8 ; i++) {
  markers[i] = new google.maps.Marker({
    title: "Hi marker " + i
  })
}
$scope.GenerateMapMarkers = function() {
  $scope.date = Date(); // Just to show that we are updating

  var numMarkers = Math.floor(Math.random() * 4) + 4;  // betwween 4 & 8 of them
  for (i = 0; i < numMarkers; i++) {
    var lat =   1.280095 + (Math.random()/100);
    var lng = 103.850949 + (Math.random()/100);
    // You need to set markers according to google api instruction
    // you don't need to learn ngMap, but you need to learn google map api v3
    // https://developers.google.com/maps/documentation/javascript/marker
    var latlng = new google.maps.LatLng(lat, lng);
    markers[i].setPosition(latlng);
    markers[i].setMap($scope.map)
  }      

  $timeout(function() {
    $scope.GenerateMapMarkers(); 
  }, 2000);  // update every 2 seconds
};  

$scope.GenerateMapMarkers();    
于 2014-03-13T15:26:13.623 回答
5

为什么不做类似的事情

<map zoom="2" center="[40.74, -74.18]">
  <marker position="{{destination.position}}" ng-repeat="destination in destinations"></marker>
</map>

如果您要求 ng-repeat 那会起作用。您可以通过对后端的简单 http 调用来填充目的地:

$http.get(url + '/destinations', config).success(function (data) {
  if (data != null && data.total > 0) {
      $scope.destinations = data.destinations;
  } else {
      $scope.destinations = []
  }
});
于 2014-09-19T20:22:21.387 回答