Transport Monitoring Mobile App Development

NOVASOLUTIONS.TECHNOLOGY is engaged in the development, support and maintenance of iOS, Android, PWA mobile applications. We have extensive experience and expertise in publishing mobile applications in popular markets like Google Play, App Store, Amazon, AppGallery and others.
Development and support of all types of mobile applications:
Information and entertainment mobile applications
News apps, games, reference guides, online catalogs, weather apps, fitness and health apps, travel apps, educational apps, social networks and messengers, quizzes, blogs and podcasts, forums, aggregators
E-commerce mobile applications
Online stores, B2B apps, marketplaces, online exchanges, cashback services, exchanges, dropshipping platforms, loyalty programs, food and goods delivery, payment systems.
Business process management mobile applications
CRM systems, ERP systems, project management, sales team tools, financial management, production management, logistics and delivery management, HR management, data monitoring systems
Electronic services mobile applications
Classified ads platforms, online schools, online cinemas, electronic service platforms, cashback platforms, video hosting, thematic portals, online booking and scheduling platforms, online trading platforms

These are just some of the types of mobile applications we work with, and each of them may have its own specific features and functionality, tailored to the specific needs and goals of the client.

Showing 1 of 1 servicesAll 1735 services
Transport Monitoring Mobile App Development
Medium
from 1 week to 3 months
FAQ
Our competencies:
Development stages
Latest works
  • image_mobile-applications_feedme_467_0.webp
    Development of a mobile application for FEEDME
    756
  • image_mobile-applications_xoomer_471_0.webp
    Development of a mobile application for XOOMER
    624
  • image_mobile-applications_rhl_428_0.webp
    Development of a mobile application for RHL
    1052
  • image_mobile-applications_zippy_411_0.webp
    Development of a mobile application for ZIPPY
    947
  • image_mobile-applications_affhome_429_0.webp
    Development of a mobile application for Affhome
    862
  • image_mobile-applications_flavors_409_0.webp
    Development of a mobile application for the FLAVORS company
    445

Transport Monitoring Mobile App Development

Dispatcher looks at the map — 40 trucks, three of them haven't updated position for 20 minutes. Did the broadcast freeze? No network in the mountains? Or GPS antenna disabled intentionally? These are three different scenarios with different responses, and the app should distinguish them — not just color the dot gray.

What the Dispatcher Actually Needs

Monitoring app — not just "markers on a map." Dispatcher works with fleet of 20–200 units and needs:

  • Real-time with metadata: coordinate + speed + direction + engine status + tracker battery level
  • Track history: route for day/week with geocoded address of stops
  • Geofencing: notification on enter/exit zone (warehouse, construction site, restricted territory)
  • Alerts: speeding, long idle with engine running, deviation from route

All this requires different architecture on client.

Real-time Telematics Data Reception

Telematics blocks (Teltonika FMB, Wialon TK, Navixy OEM) transmit data via TCP or GPRS to server. Mobile app doesn't connect to trackers directly — it gets already-processed stream via WebSocket or MQTT client.

On Android use OkHttp WebSocket with EventBus or SharedFlow for delivering updates to ViewModel. On iOS — URLSessionWebSocketTask (iOS 13+) or Starscream for older targets. Updates come as JSON or protobuf — protobuf preferred with large fleet: 40 vehicles × 10 fields in protobuf takes ~1.5 KB vs ~8 KB in JSON.

Map: Performance with Large Fleet

200 markers on map with animation — already tough. Key solutions:

Annotations instead of SVG overlays. On iOS MKAnnotationView handles up to ~300 markers without noticeable lag. Beyond that — use MKOverlay with custom renderer drawing all points in one CALayer. On Android Google Maps SDK degrades after ~500 markers — switch to Mapbox Maps SDK v10 with SymbolLayer based on GeoJSON source: entire fleet updates with single source.setGeoJson(featureCollection) call.

Server-side clustering. At zoom < 11 clusters computed on server (PostGIS ST_ClusterKMeans), client gets ready centroids with count. Local clustering (Supercluster) suitable for fleets up to 300–400 units.

Movement animation. Tracker position updates every 10–30 seconds — marker shouldn't "jump." ValueAnimator with LatLngInterpolator (Android) or CABasicAnimation with CGPoint interpolation (iOS) — marker smoothly "glides" to new point.

Track History and Geocoding

Track for day — 2000–8000 points depending on recording interval. Display via Polyline / MKPolyline, but not entire track at once: load bbox of visible map area and request points only for it. At zoom "entire day" — discretize track on server via Douglas-Peucker algorithm.

Stop addresses — reverse geocoding via Google Maps Geocoding API or OpenStreetMap Nominatim (self-hosted). Cache results in SQLite to avoid repeating requests on history scroll.

Alerts and Notifications

Speeding, geofence events, long idle — triggers computed on server, push notification comes via FCM/APNs. On iOS use UNNotificationCategory with UNNotificationAction — directly from notification can open map with specific vehicle.

Geozones — GeoJSON polygons, ST_Contains check in PostgreSQL + PostGIS on each incoming tracker message. Mobile client only displays geozones and receives alerts — doesn't compute intersections locally.

Development Stages and Timeline

Mobile monitoring app developed parallel with telematics processing server or as overlay over existing platform (Wialon, Gurtam, Navixy — all provide SDK/API).

  1. Audit of telematics platform and API
  2. Dispatcher interface design: map, vehicle list, history, alerts
  3. Development: map → real-time → history → geozones → notifications
  4. Load testing (simulate 200+ trackers with 30 sec update frequency)
  5. Publication

MVP (map + real-time + history): 6–10 weeks. Full platform with geozones, alerts, mileage analytics and reports: 3–5 months. Cost calculated after existing infrastructure audit.