Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

improve format track length (issue #1094) #1095

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

myadzel
Copy link
Contributor

@myadzel myadzel commented Dec 3, 2022

No description provided.

@@ -0,0 +1,15 @@
function formatTrackLength(len, nullable) {
Copy link
Owner

@wladich wladich Dec 27, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Я не нашёл, где formatTrackLength вызывается с двумя параметрами

Но как я написал в коменте в #1094, мне очень не нравится текущее поведение, когда нули после точки отбрасываются. Т.е. я считаю, nullable должен быть всегда true, как было в formatLength()

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Вызывалось у меня, но я потом убрал параметр в вызовах, чтобы визуально не шумели, а здесь осталось; у тебя иное видение, значит добавим.

Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

т.е. я имею в виду, что параметр в функции совсем не нужен, нули просто всегда должны быть.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Согласен частично. Это актуально для списка треков и для измерителя расстояния.

Для треков на карте нули не нужны.

Copy link
Owner

@wladich wladich Dec 27, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Нужны, т.к. "7.00 km" и "7 km" означает совершенное разное.
Первое это 6.995-7.005, а второе это 6.5-7.5

@@ -415,7 +416,7 @@ const ElevationProfile = L.Class.extend({
<tr><td>Avg / Max descent inclination:</td><td>${d.descentAngleStr}</td></tr>
<tr class="start-group"><td>Total ascent:</td><td>${d.approx}${d.ascent}</td></tr>
<tr><td>Total descent:</td><td>${d.approx}${d.descent}</td></tr>
<tr class="start-group"><td>Distance:</td><td>${d.dist} km</td></tr>
<tr class="start-group"><td>Distance:</td><td>${distance}</td></tr>
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Надо ещё distanceStr в setCursorPosition() поправить

@myadzel myadzel force-pushed the 1094-fix-track-length branch from 72be3a6 to 30210f5 Compare December 27, 2022 22:20
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants