feat: новая архитектура UI и расширенная визуализация AIS

Архитектурные улучшения:
- Внедрен UIRenderingCoordinator с централизованным throttling
- Решены проблемы зависания UI через батчинг операций карты
- Добавлен VesselPathController для отслеживания маршрутов
- Реализован MapLibreMapImpl как альтернатива Яндекс.Картам

Визуализация AIS:
- Добавлены векторные иконки для всех типов судов
- Разделение Class A/B судов с соответствующими иконками
- Иконки навигационных статусов (anchor, moored, engine, sail)
- Улучшенный CursorOverlay с информацией о судах

Производительность:
- Throttling UI обновлений (vessel: 500ms, AIS: 1s, paths: 2s)
- Устранение утечек Handler объектов
- Оптимизация GeoJSON операций в MapLibre
This commit is contained in:
2025-10-02 09:15:33 +03:00
parent 41432665ea
commit b5aee265bc
85 changed files with 7132 additions and 449 deletions
@@ -4,10 +4,23 @@
android:layout_height="match_parent"
android:orientation="vertical">
<TextView
android:id="@+id/text_target_count"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="AIS цели: 0"
android:textSize="16sp"
android:textStyle="bold"
android:padding="12dp"
android:background="#f0f0f0"
android:textColor="#333333"
android:gravity="center" />
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/recycler_ais_targets"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
android:layout_height="0dp"
android:layout_weight="1"/>
<TextView
android:id="@+id/text_empty_state"