First: use $location.hash(ID);
Second: use $ionicScrollDelegate.anchorScroll(true);
Ex:
`
var scrollToLocation = function ( idLocation ) {
$location.hash( idLocation );
$ionicScrollDelegate.anchorScroll(true);
};
The parameter true or false in anchorScroll is used to say if scroll will be animated or not.
`