我有来自服务器的纬度和经度数据传递给我并保存在$ scope.Adress中,我需要使用这些值制作地图对象,如下所示。然而,这不起作用,我需要回答的是如何格式化它以便它可以工作。
$scope.map = {
center: {
latitude: $scope.Address.Latitude,
longitude: $scope.Address.Longitude
},
markers: [{
latitude: $scope.Address.Latitude,
longitude: $scope.Address.Longitude
}],
zoom: 15
};
答案 0 :(得分:0)
这可能只是一个错字。您说您将位置数据保存在$ scope.Adress中,但您的代码使用$ scope.Address。