Ionic Framework b14 と最新の ngmap を使用しています。
マップを表示するビューがありますが、中心を設定したいときに、サービスから取得した座標が表示されません。
(function() {
var injectParams = ['$scope', '$stateParams', 'storeFactory'];
var StoreController = function($scope, $stateParams, storeFactory) {
var id = $stateParams.storeId;
$scope.store;
storeFactory.getStore(id)
.success(function(store) {
$scope.store = store;
}).error(function(error) {
$scope.status = ' ' + error.message;
});
$scope.$on('mapInitialized', function(event, map) {
var myLatLng = new google.maps.LatLng(store.Latitude, store.Longitud);
map.setCenter(myLatLng);
});
};
StoreController.$inject = injectParams;
angular.module('elizondo').controller('StoreController', StoreController);
}());
サーバーが応答するのに時間がかかる必要があると思いますが、それを修正する方法がわかりません。助けてください。
ありがとう。