我遇到了这个错误。我不知道它从哪里出来。 我花了很多时间检查代码,但是在开发过程中一切都是正确的,在生产时就出现了。
环境基本没有差异。
也许有些与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>