angularjs,angularjs-google-maps
Turns out the problem was because I'd created my own latitude longitude object in a service to store the map center: var _center = { lat: ..., lng: ... }; But was assigning a Google Maps LatLng object to it in a drag event handler: $scope.dataContext.center($scope.map.getCenter()); Needless to say, this...