Ng-Map向我展示了地图的多个实例。为什么?

时间:2016-11-02 21:37:34

标签: angularjs google-maps-api-3 ng-map

enter image description here

我遇到了这个错误。我不知道它从哪里出来。 我花了很多时间检查代码,但是在开发过程中一切都是正确的,在生产时就出现了。

环境基本没有差异。

也许有些与Ng-Map合作的人有所认识。这将非常有用。我完全吓坏了。

我在这张地图上做了什么?

$scope.$watch('State.status', function() {

    switch( State.status ) {
        case 'school':
            // open school modal
            break;
        case 'work':
            // open work modal
            break;
        case 'home':
            // open home modal
            break;
        default:
            console.log('wat');
            break;
    }
});

我检索到的Json有这种结构(显然我省略了一些部分):

<div>


 <ng-map
                                    center="{{ vm.center || 'Roma, Italia' }}"
                                    zoom="7"
                                    pan-control="true"
                                    map-type-control="true"
                                    map-type-control-options="{style:'DROPDOWN_MENU'}"
                                    zoom-control="true"
                                    zoom-control-options="{style:'SMALL'}"
                                    default-style="true">

                                <marker ng-repeat="user in vm.data.users" id="{{user._id}}" position="{{user.addressOffice}}" on-click="vm.showDetail(user)"></marker> 

                                <info-window id="foo-iw">
                                        Some text
                                </info-window>

                                </ng-map>

                                </div>

还有一件事: 如果我缩小我得到了这个: enter image description here

0 个答案:

没有答案