我正在使用 ui-angular,但我不知道如何将地图移至新位置。我了解它是如何工作的,我只是使用 Leaflet.js,但因为这是一个指令,我不明白我应该使用什么对象来与页面上的地图进行交互。
Here is my map directive
<leaflet id="owmMap" center="center" markers="markers" layers="layers"></leaflet>
Here is my code so far.
$scope.moveTo = function(obj){
console.log(obj);
//map.panTo((new L.LatLng(40.737, -73.923));); <--- This is what I need to replicate
}