Troubleshooting =============== Non-assignable model expression ------------------------------- DOM element misses attribute. First encounter:: // html // js $scope.dafuq = { lat: '47.75443', lng: '11.99677', zoom: 4 }; $scope.zoom = 4; Solution:: // html // js $scope.dafuq = { lat: '47.75443', lng: '11.99677', zoom: 4 }; $scope.zoom = 4;