عند متابعة رحلة، يعرض تطبيق المستهلك الموقع الجغرافي للمركبة المناسبة للمستهلك. ولتنفيذ ذلك، يحتاج تطبيقك إلى البدء في متابعة الرحلة وتحديث مستوى التقدّم أثناء الرحلة والتوقف عن متابعة الرحلة عند اكتمالها.
يتناول هذا المستند الخطوات الرئيسية التالية في هذه العملية:
- إعداد خريطة
- بدء خريطة وعرض الرحلة المشتركة
- تعديل مستوى تقدّم الرحلة ومتابعته
- إيقاف متابعة رحلة
- التعامل مع أخطاء الرحلات
إعداد خريطة
لمتابعة عملية استلام أو تسليم الشحنة في تطبيق الويب، عليك تحميل خريطة وإنشاء مثيل لحزمة Consumer SDK لبدء تتبُّع رحلتك. يمكنك تحميل خريطة جديدة أو استخدام خريطة حالية. بعد ذلك، يمكنك استخدام الدالة initialization لإنشاء مثيل لحزمة Consumer SDK بحيث تتطابق طريقة عرض الخريطة مع الموقع الجغرافي للعنصر الذي يتم تتبُّعه.
تحميل خريطة جديدة باستخدام واجهة برمجة تطبيقات JavaScript لخرائط Google
لإنشاء خريطة جديدة، حمِّل Google Maps JavaScript API في تطبيق الويب. يوضّح المثال التالي كيفية تحميل Google Maps JavaScript API وتفعيل حزمة تطوير البرامج (SDK) وبدء عملية التحقّق من الإعداد.
- تعمل المَعلمة
callback
على تشغيل الدالةinitMap
بعد تحميل واجهة برمجة التطبيقات. - تتيح السمة
defer
للمتصفّح مواصلة عرض بقية محتوى صفحتك أثناء تحميل واجهة برمجة التطبيقات.
استخدِم الدالة initMap
لإنشاء مثيل حِزم تطوير البرامج (SDK) للمستهلك. على سبيل المثال:
<script src="https://maps.googleapis.com/maps/api/js?key=YOUR_API_KEY&callback=initMap&libraries=journeySharing" defer></script>
تحميل خريطة حالية
يمكنك أيضًا تحميل خريطة حالية تم إنشاؤها بواسطة واجهة برمجة تطبيقات JavaScript لخرائط Google، مثل الخريطة التي تستخدمها بالفعل.
على سبيل المثال، لنفترض أنّ لديك صفحة ويب تتضمن كيان google.maps.Map
عاديًا، حيث تظهر العلامة كما هو محدّد في رمز HTML التالي. يؤدي هذا إلى عرض خريطتك باستخدام الدالة initMap
نفسها في رد الاتصال في النهاية:
<!DOCTYPE html>
<html>
<head>
<style>
/* Set the size of the div element that contains the map */
#map {
height: 400px; /* The height is 400 pixels */
width: 100%; /* The width is the width of the web page */
}
</style>
</head>
<body>
<h3>My Google Maps Demo</h3>
<!--The div element for the map -->
<div id="map"></div>
<script>
// Initialize and add the map
function initMap() {
// The location of Pier 39 in San Francisco
var pier39 = {lat: 37.809326, lng: -122.409981};
// The map, initially centered at Mountain View, CA.
var map = new google.maps.Map(document.getElementById('map'));
map.setOptions({center: {lat: 37.424069, lng: -122.0916944}, zoom: 14});
// The marker, now positioned at Pier 39
var marker = new google.maps.Marker({position: pier39, map: map});
}
</script>
<!-- Load the API from the specified URL.
* The defer attribute allows the browser to render the page while the API loads.
* The key parameter contains your own API key.
* The callback parameter executes the initMap() function.
-->
<script defer src="https://maps.googleapis.com/maps/api/js?key=YOUR_API_KEY&callback=initMap">
</script>
</body>
</html>
استبدال خريطة حالية
يمكنك استبدال خريطة حالية تحتوي على محددات أو تخصيصات أخرى دون فقدان تلك التخصيصات.
على سبيل المثال، إذا كان لديك صفحة ويب تحتوي على كيان google.maps.Map
عادي يظهر عليه محدّد الموقع، يمكنك استبدال الخريطة والاحتفاظ بها. يصف هذا القسم خطوات القيام بذلك.
لاستبدال الخريطة والحفاظ على التخصيصات، أضِف ميزة مشاركة الرحلة إلى صفحة HTML باستخدام الخطوات التالية، والتي تم ترقيمها أيضًا في المثال التالي:
أضف رمزًا لمصنع الرموز المميزة للمصادقة.
إعداد موفّر موقع جغرافي في الدالة
initMap()
.إعداد عرض الخريطة في الدالة
initMap()
. تحتوي طريقة العرض على الخريطة.انقل تخصيصك إلى دالة ردّ الاتصال لبدء عرض الخريطة.
أضِف مكتبة المواقع الجغرافية إلى أداة تحميل واجهة برمجة التطبيقات.
يوضح المثال التالي التغييرات التي يجب إجراؤها. إذا كنت تدير رحلة باستخدام رقم التعريف المحدّد بالقرب من Uluru، سيتم عرضه الآن على الخريطة:
<!DOCTYPE html>
<html>
<head>
<style>
/* Set the size of the div element that contains the map */
#map {
height: 400px; /* The height is 400 pixels */
width: 100%; /* The width is the width of the web page */
}
</style>
</head>
<body>
<h3>My Google Maps Demo</h3>
<!--The div element for the map -->
<div id="map"></div>
<script>
let locationProvider;
// (1) Authentication Token Fetcher
async function authTokenFetcher(options) {
// options is a record containing two keys called
// serviceType and context. The developer should
// generate the correct SERVER_TOKEN_URL and request
// based on the values of these fields.
const response = await fetch(SERVER_TOKEN_URL);
if (!response.ok) {
throw new Error(response.statusText);
}
const data = await response.json();
return {
token: data.Token,
expiresInSeconds: data.ExpiresInSeconds
};
}
// Initialize and add the map
function initMap() {
// (2) Initialize location provider.
locationProvider = new google.maps.journeySharing.FleetEngineTripLocationProvider({
projectId: "YOUR_PROVIDER_ID",
authTokenFetcher,
});
// (3) Initialize map view (which contains the map).
const mapView = new google.maps.journeySharing.JourneySharingMapView({
element: document.getElementById('map'),
locationProviders: [locationProvider],
// any styling options
});
locationProvider.tripId = TRIP_ID;
// (4) Add customizations like before.
// The location of Pier 39 in San Francisco
var pier39 = {lat: 37.809326, lng: -122.409981};
// The map, initially centered at Mountain View, CA.
var map = new google.maps.Map(document.getElementById('map'));
map.setOptions({center: {lat: 37.424069, lng: -122.0916944}, zoom: 14});
// The marker, now positioned at Pier 39
var marker = new google.maps.Marker({position: pier39, map: map});
};
</script>
<!-- Load the API from the specified URL
* The async attribute allows the browser to render the page while the API loads
* The key parameter will contain your own API key (which is not needed for this tutorial)
* The callback parameter executes the initMap() function
*
* (5) Add the SDK to the API loader.
-->
<script defer
src="https://maps.googleapis.com/maps/api/js?key=YOUR_API_KEY&callback=initMap&libraries=journeySharing">
</script>
</body>
</html>
تهيئة خريطة وعرض تقدم الرحلة
عند بدء رحلة، يجب أن ينشئ تطبيقك مثيلًا لمقدّم موقع جغرافي للرحلة، ثم يبدأ تنشيط خريطة لبدء مشاركة مستوى تقدّم الرحلة. راجِع الأقسام التالية للاطّلاع على أمثلة.
إنشاء مثيل لموفّر موقع رحلة
تحتوي حزمة JavaScript SDK على موفِّر موقع جغرافي محدّد مسبقًا لواجهة برمجة التطبيقات Fleet Engine Ridesharing API. استخدِم رقم تعريف مشروعك و إشارة إلى مصنع الرموز المميّزة لإنشاء مثيل له.
JavaScript
locationProvider =
new google.maps.journeySharing
.FleetEngineTripLocationProvider({
projectId: 'your-project-id',
authTokenFetcher: authTokenFetcher, // the token fetcher defined in the previous step
// Optionally, you may specify a trip ID to
// immediately start tracking.
tripId: 'your-trip-id',
});
TypeScript
locationProvider =
new google.maps.journeySharing
.FleetEngineTripLocationProvider({
projectId: 'your-project-id',
authTokenFetcher: authTokenFetcher, // the token fetcher defined in the previous step
// Optionally, you may specify a trip ID to
// immediately start tracking.
tripId: 'your-trip-id',
});
إعداد عرض الخريطة
بعد تحميل حزمة JavaScript SDK، يمكنك إعداد
عرض الخريطة وإضافته إلى صفحة HTML. يجب أن تحتوي صفحتك على عنصر <div>
يحمل عرض الخريطة. تم تسمية العنصر <div>
بـ map_canvas
في المثال التالي.
JavaScript
const mapView = new
google.maps.journeySharing.JourneySharingMapView({
element: document.getElementById('map_canvas'),
locationProviders: [locationProvider],
// Styling customizations; see below.
vehicleMarkerSetup: vehicleMarkerSetup,
anticipatedRoutePolylineSetup:
anticipatedRoutePolylineSetup,
// Any undefined styling options will use defaults.
});
// If you did not specify a trip ID in the location
// provider constructor, you may do so here.
// Location tracking starts as soon as this is set.
locationProvider.tripId = 'your-trip-id';
// Give the map an initial viewport to allow it to
// initialize; otherwise, the 'ready' event above may
// not fire. The user also has access to the mapView
// object to customize as they choose.
mapView.map.setCenter({lat: 37.2, lng: -121.9});
mapView.map.setZoom(14);
TypeScript
const mapView = new
google.maps.journeySharing.JourneySharingMapView({
element: document.getElementById('map_canvas'),
locationProviders: [locationProvider],
// Styling customizations; see below.
vehicleMarkerSetup: vehicleMarkerSetup,
anticipatedRoutePolylineSetup:
anticipatedRoutePolylineSetup,
// Any undefined styling options will use defaults.
});
// If you did not specify a trip ID in the location
// provider constructor, you may do so here.
// Location tracking starts as soon as this is set.
locationProvider.tripId = 'your-trip-id';
// Give the map an initial viewport to allow it to
// initialize; otherwise, the 'ready' event above may
// not fire. The user also has access to the mapView
// object to customize as they choose.
mapView.map.setCenter({lat: 37.2, lng: -121.9});
mapView.map.setZoom(14);
تعديل مسار الرحلة ومتابعته
يجب أن يستمع تطبيقك إلى الأحداث وأن يحدِّث تقدم الرحلة كتقدم للرحلة. يمكنك استرداد البيانات الوصفية عن رحلة من عنصر المهمة باستخدام موفِّر الموقع الجغرافي. تشمل المعلومات الوصفية وقت الوصول المقدَّر والمسافة المتبقية قبل الاستلام أو التسليم. تؤدي التغييرات في المعلومات الوصفية إلى تشغيل حدث update. يوضح المثال التالي كيفية الاستماع إلى أحداث التغيير هذه.
JavaScript
locationProvider.addListener('update', e => {
// e.trip contains data that may be useful
// to the rest of the UI.
console.log(e.trip.dropOffTime);
});
TypeScript
locationProvider.addListener('update', (e:
google.maps.journeySharing.FleetEngineTripLocationProviderUpdateEvent) => {
// e.trip contains data that may be useful
// to the rest of the UI.
console.log(e.trip.dropOffTime);
});
إيقاف متابعة رحلة
عند انتهاء الرحلة، عليك منع مزوّد الموقع الجغرافي من تتبّعها. لإجراء ذلك، يجب إزالة معرّف الرحلة وموفِّر الموقع الجغرافي. راجِع الأقسام التالية للاطّلاع على أمثلة.
إزالة معرّف الرحلة من مقدّم الموقع الجغرافي
يوضّح المثال التالي كيفية إزالة معرّف رحلة من مقدّم الموقع الجغرافي.
JavaScript
locationProvider.tripId = '';
TypeScript
locationProvider.tripId = '';
إزالة موفر الموقع من عرض الخريطة
يوضح المثال التالي كيفية إزالة مزوّد موقع جغرافي من عرض الخريطة.
JavaScript
mapView.removeLocationProvider(locationProvider);
TypeScript
mapView.removeLocationProvider(locationProvider);
التعامل مع أخطاء الرحلة
تؤدي الأخطاء التي تنشأ بشكل غير متزامن من طلب معلومات الرحلة إلى تشغيل أحداث الخطأ. يوضح المثال التالي كيفية الاستماع إلى هذه الأحداث لمعالجة الأخطاء.
JavaScript
locationProvider.addListener('error', e => {
// e.error contains the error that triggered the
// event
console.error(e.error);
});
TypeScript
locationProvider.addListener('error', (e: google.maps.ErrorEvent) => {
// e.error contains the error that triggered the
// event
console.error(e.error);
});