ol.Feature.getGeometry().j get me the array of all coordinates. [ x, y, x, y, x, y .. ] thats work for points, or polygons. I use it to move the features and it work fast and fine. But the .j is not the "official" way to get the array. How about the best way? edit: I dont like use getCoordinates() it give different instance of arrays for points, or polygons and i dont like to use .j because it can chance in later versions. ( so i must fix it )
use ol.js 3.5.0 and jquery for the example code
var x=5, y=-10;
var l=feature.getGeometry().j,n=[],b=true;
$.each(l,function(i,v){
if(b){
n.push(v+x);
b=false
}else{
n.push(v+y);
b=true
}});
feature.getGeometry().j=n;
The function applyTransform() allows you to modify this internal representation of the geometry.
See also ol.TransformFunction