在地图上添加标记:AngularJS

时间:2015-02-16 21:57:56

标签: javascript angularjs google-maps google-maps-api-3

我很难应对AngularJS及其设置地图和标记的方法。

现在我有以下代码:

<map data-ng-model="mymapdetail" zoom="11" 
              center="{{item.coordinates}}" style="heigth:375px">
<div data-ng-model="mymarker"></div>
</map>

这正确显示了居中的地图。然后我试图以这种方式添加标记。

$scope.mymarker = new google.maps.Marker({
            map: $scope.mymapdetail,
            position: new google.maps.LatLng(item.coordinates),
            title: woa.title
        });

此代码不会产生任何结果。哪里错了?

1 个答案:

答案 0 :(得分:1)

这里有working solution标记出现在点击和this one标记已经可见 - 使用你的代码(差不多 - 我没有使用map指令),但你应该能够适应它您的代码几乎没有变化。 可能导致它无效的主要原因是使用new google.maps.LatLng(item.coordinates)

以下是代码:

//Angular App Module and Controller
angular.module('mapsApp', [])
.controller('MapCtrl', function ($scope) {
    var item = {
        coordinates: [40.6423926, -97.3981926]
    };

    var woa = {
        city: 'This is my marker. There are many like it but this one is mine.'
    };


    //set up map
    var mapOptions = {
        zoom: 4,
        center: new google.maps.LatLng(40.0000, -98.0000),
        mapTypeId: google.maps.MapTypeId.TERRAIN
    };

    $scope.mymapdetail = new google.maps.Map(document.getElementById('map'), mapOptions);

    //add marker
    $scope.mymarker = new google.maps.Marker({
        map: $scope.mymapdetail,
        animation: google.maps.Animation.DROP,
        position: new google.maps.LatLng(item.coordinates[0], item.coordinates[1]),
        title: woa.city
    });

});

让我知道它是否适合您。