2017-05-28 13 views
0

私のAngular Google Mapsマップを読み込むのは苦労しています。それは...AngularJS Googleマップをレンダリングすることができません

app.module.js

(function() { 

    angular.module('myplaces', ['ui.router', 'uiGmapgoogle-maps']) 

}()) 

places.component.js

angular.module('myplaces') 
    .component('placespage', { 
    templateUrl: 'places.template.html', 
    controller: controller 
    }) 
    function controller() { 
    const ctrl = this; 
    ctrl.map = { 
     center: 
     { 
      latitude: -25.363, 
      longitude: 131.044 
     }, 
     zoom:7 
    }; 
    } 

places.template.html

<div class="container"> 
    <div class="row"> 
    <div class="col-md-12"> 
     <ui-gmap-google-map center='map.center' zoom='map.zoom'></ui-gmap-google-map> 
    </div> 
    </div> 
    <div class="row"> 
    <div class="col-md-12"> 
     <h1>Results</h1> 
    </div> 
    </div> 
</div> 

答えて

0
を任意のコンソールエラーを投げていません

$ctrlを使用してテンプレートのコントローラにバインドするのを忘れてしまったことに気付きました。

<ui-gmap-google-map center='$ctrl.map.center' zoom='$ctrl.map.zoom'></ui-gmap-google-map> 
関連する問題