I want to implement a "track up" map view, where the current position is not in the center of the map but 1/4 of the map height from the bottom (like standard navigation systems are in track up mode). I found this to be working with [centerOn] (https://openlayers.org/en/latest/apidoc/module-ol_View-View.html#centerOn) defining the current GPS coordinates as "coordinate" and the "position" as width/2 and 1/4 of the map height just fine.
Now, I want to add animation to this, to have a smooth transition between the GPS updates.
I have tried this with [animate] (https://openlayers.org/en/latest/apidoc/module-ol_View-View.html#animate), which does look really good from an animation perspective, but can't be positioned at the 1/4 height. Any idea how to combine both?