我正在使用 ng-map 指令,如下所示:
var center1 = $scope.latitude;
var center2 = $scope.longitude;
console.log(typeof center1);
$scope.map_center = [center1, center2];
<div>
<map ng-transclude class="google-map" center="map_center" options="map.options">
<points coords="points.coords" options="points.options" events="points.events" decimals="points.decimals"></points>
</map>
</div>
这会将地图视图呈现为空白。但是在对中心进行硬编码时,它可以正常工作。我很困惑是什么问题。