Hi Xavier, this is really weird. All online maps have same issue? May you give me some specific location like coordinates x, y, map OSM classic and zoom z? I have to check it because I have no similar troubles.
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Show posts Menu protected void addElevation(double distance, double elevation) {
double declivity = elevation / distance;
if (declivity > 0.025) {
elePositiveDistance += distance;
elePositiveHeight += elevation;
} else if (declivity < -0.025) {
eleNegativeDistance += distance;
eleNegativeHeight += elevation;
} else {
eleNeutralDistance += distance;
eleNeutralHeight += elevation;
}
eleTotalAbsDistance += distance;
eleTotalAbsHeight += Math.abs(elevation);
}