بناء نظام لتتبّع المواقع في الوقت الفعلي
طبّق أنماط الوقت الفعلي على دراسة حالة لتتبّع GPS مباشر: ابثث مواقع الأجهزة، وخفّض وتيرة التحديثات، واعرض علامات متحركة على خريطة مشتركة.
بناء نظام لتتبّع المواقع في الوقت الفعلي درس مجاني في WebSockets & Realtime Systems Programming على CoddyKit. هذا هو الدرس 4 من أصل 4. يمكنك قراءة الدرس كاملاً أدناه مجاناً — ثم تمرن عليه مباشرة في المتصفح باستخدام محرر أكواد مدمج ومدرس ذكاء اصطناعي متاح 24/7. هذا الدرس جزء من مسار التعلم في WebSockets & Realtime Systems Programming، وتقدمك يتزامن عبر الويب وتطبيق CoddyKit. تتضمن دورة WebSockets & Realtime Systems Programming 4 دروس في المجموع.
بعض أجزاء هذا الدرس لم تُترجم بعد وتظهر باللغة الإنجليزية.
The Tracking Use Case
Ride-sharing, delivery, and fleet apps all need live location tracking: devices push coordinates and dashboards see markers move in realtime.
System Components
A tracking system has three roles:
- Producers (mobile devices) emit positions
- Server fans positions out by room/area
- Consumers (viewers) subscribe to a vehicle or zone
The Position Message
Keep payloads tiny. Latitude, longitude, a timestamp, and the device id are usually enough.
{
"id": "veh-42",
"lat": 41.0082,
"lng": 28.9784,
"ts": 1717000000000
}Throttling Device Updates
GPS chips can emit positions every 100ms. That floods the network. Throttle to one update per second on the device.
let last = 0;
function maybeSend(pos) {
const now = Date.now();
if (now - last < 1000) return;
last = now;
socket.send(JSON.stringify(pos));
}Server-Side Rooms by Vehicle
Each vehicle gets a room. Viewers join the room of the vehicle they care about, so the server only forwards relevant updates.
const rooms = new Map();
function broadcast(vehicleId, msg) {
const subs = rooms.get(vehicleId) || [];
for (const ws of subs) ws.send(msg);
}Smoothing Marker Movement
Snapping markers between points looks jerky. Interpolate on the client between the last and new position over the update interval.
function lerp(a, b, t) {
return a + (b - a) * t;
}
console.log(lerp(0, 10, 0.5));Handling Stale Devices
If a device stops sending for 30 seconds, mark it as offline on the map instead of leaving a frozen marker.
function isStale(lastTs) {
return Date.now() - lastTs > 30000;
}Reducing Bandwidth Further
For dense fleets, batch many vehicle updates into one message every second instead of one message per vehicle.
{
"ts": 1717000000000,
"vehicles": [
{"id":"v1","lat":41.0,"lng":29.0},
{"id":"v2","lat":41.1,"lng":29.1}
]
}Persisting Trails
Realtime is for the live view; store the position history in a time-series database so users can replay a trip later.
Scaling Across Regions
Use a pub/sub backbone (Redis or NATS) so a viewer connected to any server node can follow a vehicle reporting to a different node.
Privacy Considerations
Location is sensitive. Authorize every subscription, expose only the vehicles a user is allowed to see, and reduce precision when full accuracy is not needed.
Quick Check
Why throttle GPS updates on the device before sending?
Recap
You built a realtime location tracker:
- Tiny position payloads, throttled on the device
- Per-vehicle rooms and optional batching
- Client-side interpolation and stale detection
- Pub/sub for multi-region scale and strict authorization
تعلم WebSockets & Realtime Systems Programming مع معلم ذكاء اصطناعي — مجانًا
اكتب وقم بتشغيل أكوادك الفعلية في المتصفح، واحصل على مساعدة فورية من معلم ذكاء اصطناعي متاح 24/7، واستمر من حيث توقفت على الويب أو في التطبيق.
- الدورات
- 12
- الدروس
- 47
الأسئلة الشائعة
هل درس «بناء نظام لتتبّع المواقع في الوقت الفعلي» مجاني؟
نعم — نص درس «بناء نظام لتتبّع المواقع في الوقت الفعلي» كامل متاح مجاناً هنا على الويب. لتمرينه بشكل تفاعلي (محرر أكواد مدمج ومدرس ذكاء اصطناعي متاح 24/7) وفتح باقي دورة WebSockets & Realtime Systems Programming، انتقل إلى CoddyKit PRO. تتضمن دورة WebSockets & Realtime Systems Programming 4 دروس في المجموع.
ماذا ستتعلم في «بناء نظام لتتبّع المواقع في الوقت الفعلي»؟
طبّق أنماط الوقت الفعلي على دراسة حالة لتتبّع GPS مباشر: ابثث مواقع الأجهزة، وخفّض وتيرة التحديثات، واعرض علامات متحركة على خريطة مشتركة. تتمرن على WebSockets & Realtime Systems Programming مع أكواد عملية تشغلها مباشرة في المتصفح، ومدرس ذكاء اصطناعي متاح 24/7 يجيب على أسئلتك أثناء عملك.
هل أحتاج إلى خبرة سابقة لأبدأ WebSockets & Realtime Systems Programming؟
لا تُشترط خبرة سابقة. WebSockets & Realtime Systems Programming على CoddyKit منظم للمبتدئين حتى المتقدمين، لذا يمكنك البدء من هنا أو من البداية والتقدم بسرعتك الخاصة. هذا هو الدرس 4 من أصل 4.
كم من الوقت يستغرق درس «بناء نظام لتتبّع المواقع في الوقت الفعلي»؟
معظم دروس CoddyKit تستغرق حوالي 5–10 دقائق. كل منها موجز وتفاعلي، لذا تحرز تقدماً مستمراً وتستأنف من حيث توقفت عبر الويب والتطبيق.
هل يمكنني كتابة وتشغيل أكواد في درس WebSockets & Realtime Systems Programming هذا؟
نعم. كل درس في WebSockets & Realtime Systems Programming يتضمن محرر أكواد مدمج، لذا تكتب وتشغل أكواداً حقيقية مباشرة في متصفحك وتحصل على تعليقات فورية من الذكاء الاصطناعي — بدون إعداد محلي.
جميع الدروس في هذه الدورة
- المحررات واللوحات البيضاء التعاونية
- خوادم الدردشة والألعاب المباشرة
- لوحات بيانات الوقت الفعلي
- بناء نظام لتتبّع المواقع في الوقت الفعلي