قبل از اینکه نشانگرها (یا چندخطیها) را سفارشی کنید، ابتدا باید گزینههای سفارشیسازی رابط کاربری را مقداردهی اولیه کنید.
گزینههای سفارشیسازی رابط کاربری را مقداردهی اولیه کنید
تابع فراخوانی پیشنهادی که برای تنظیم اولیه گزینههای سفارشیسازی رابط کاربری استفاده میشود، در GMTCMapViewDelegate تعریف شده است. تابع فراخوانی mapViewDidInitialize زمانی فعال میشود که شیء GMTCMapView آماده رندر نقشه باشد. هماهنگکننده سبک مقداردهی اولیه شده است، اما هیچ عنصر رابط کاربری وجود ندارد.
سویفت
/** ViewController.swift */
class ViewController: UIViewController, GMTCMapViewDelegate {
// MARK: - GMTCMapViewDelegate
func mapViewDidInitialize(_ mapview: GMTCMapView) {
// Set the UI customization options here.
}
}
هدف-سی
/** ViewController.m */
@interface ViewController () <GMTCMapViewDelegate>
#pragma mark GMTCMapViewDelegate
- (void)mapViewDidInitialize:(GMTCMapView *)mapview {
// Set the UI customization options here.
}
نشانگرها را سفارشی کنید
مثال زیر از GMTCMapView برای سفارشیسازی سبکهای نشانگر استفاده میکند. برای تنظیم نوع نشانگر و ویژگیهای آن، از setMarkerStyleOptions(_:markerType:) استفاده کنید. گزینههای نشانگر سفارشی شما، مقادیر پیشفرض ارائه شده توسط Consumer SDK را لغو میکنند.
سویفت
/** MapViewController.swift */
func updateMarkerUIOptions() {
let customizableMarkerType = GMTCCustomizableMarkerType.tripVehicle
let markerStyleOptions = GMTCMutableMarkerStyleOptions()
markerStyleOptions.groundAnchor = groundAnchor
markerStyleOptions.isVisible = true
markerStyleOptions.icon = icon
markerStyleOptions.zIndex = 100
markerStyleOptions.isFlat = false
let coordinator = self.mapView.consumerMapStyleCoordinator
coordinator.setMarkerStyleOptions(markerStyleOptions, markerType: customizableMarkerType)
}
/** To restore the default values, call setMarkerStyleOptions(_:markerType:) using nil for the GMTCMarkerStyleOptions parameter.
Here is an example of retrieving the active GMTCMarkerStyleOptions. */
private func retrieveMarkerStyle(markerType: GMTCCustomizableMarkerType) {
let styleCoordinator = mapView.consumerMapStyleCoordinator
// The 'markerStyleOptions' contains the stored style options for this marker type.
let markerStyleOptions = styleCoordinator.markerStyleOptions(for: markerType)
}
هدف-سی
/** MapViewController.m */
- (void)updateMarkerUIOptions {
// The marker type that you would like to set custom UI options for.
GMTCCustomizableMarkerType customizableMarkerType = GMTCCustomizableMarkerTypeTripVehicle;
GMTCMutableMarkerStyleOptions *markerStyleOptions =
[[GMTCMutableMarkerStyleOptions alloc] init];
markerStyleOptions.groundAnchor = groundAnchor;
markerStyleOptions.isVisible = YES;
markerStyleOptions.icon = icon;
markerStyleOptions.zIndex = 100;
markerStyleOptions.isFlat = NO;
[[_mapView consumerMapStyleCoordinator] setMarkerStyleOptions:markerStyleOptions markerType:customizableMarkerType];
}
/** To restore the default values, call setMarkerStyleOptions:markerStyleOptions:markerType: using nil for the GMTCMarkerStyleOptions parameter.
Here is an example of retrieving the active GMTCMarkerStyleOptions. */
- (void)retrieveMarkerStyle:(GMTCCustomizableMarkerType)markerType {
GMTCConsumerMapStyleCoordinator *styleCoordinator = _mapView.consumerMapStyleCoordinator;
// The 'markerStyleOptions' contains the stored style options for this marker type.
GMTCMarkerStyleOptions *markerStyleOptions = [styleCoordinator markerStyleOptionsForType:markerType];
}
انواع نشانگر
میتوانید نشانگرهای زیر را سفارشی کنید:
-
GMTCCustomizableMarkerType.unknown -
GMTCCustomizableMarkerType.tripPickupPoint -
GMTCCustomizableMarkerType.tripDropoffPoint -
GMTCCustomizableMarkerType.tripVehicle -
GMTCCustomizableMarkerType.intermediateDestination
برای سفارشیسازی نقاط مسیر هنگام اشتراکگذاری یک سفر، از GMTCCustomizableMarkerType.tripPickupPoint ، GMTCCustomizableMarkerType.intermediateDestination و GMTCCustomizableMarkerType.tripDropoffPoint استفاده کنید.
برای سفارشیسازی آیکون وسیله نقلیه هنگام اشتراکگذاری یک سفر، از GMTCCustomizableMarkerType.tripVehicle استفاده کنید. آیکون نشانگر با توجه به نوع واقعی وسیله نقلیه برای سفر تغییر نمیکند.
گزینههای نشانگر
ویژگیهای قابل تنظیم موجود برای هر نشانگر، زیرمجموعهای از ویژگیهای ارائه شده توسط Google Maps MarkerOptions هستند. GMTCMarkerStyleOptions SDK Consumer دارای ویژگیهای زیر است:
- ساخته شده با استفاده از یک مقداردهی اولیه
- پس از ساخته شدن، تغییرناپذیر است.
- مقادیر پیشفرض دارند، بنابراین فقط باید مقادیر دلخواه را مشخص کنید.
شما میتوانید ویژگیهای زیر را سفارشی کنید:
-
groundAnchor -
isVisible: برای خاموش کردن یک نشانگر،isVisibleرا روی false تنظیم کنید. دادههای کافی باید ارائه شوند تا بتوانید از عنصر رابط کاربری خودتان به جای آن استفاده کنید. -
iconView -
icon -
zIndex -
isFlat
مثال
سویفت
/** MapViewController.swift */
private func updateMarkerUIOptions() {
// Get the GMTCConsumerMapStyleCoordinator
let consumerMapStyleCoordinator = mapView.consumerMapStyleCoordinator
// The marker type that you would like to set custom UI options for.
let customizableMarkerType = GMTCCustomizableMarkerType.tripVehicle
// Initializing marker options.
let markerStyleOptions = GMTCMutableMarkerStyleOptions()
markerStyleOptions.groundAnchor = kGMSMarkerDefaultGroundAnchor
markerStyleOptions.icon = icon
markerStyleOptions.zIndex = 100
markerStyleOptions.isFlat = false
markerStyleOptions.isVisible = true
consumerMapStyleCoordinator.setMarkerStyleOptions(markerStyleOptions, markerType: customizableMarkerType)
// Reset marker options to default values.
consumerMapStyleCoordinator.setMarkerStyleOptions(nil, markerType: customizableMarkerType)
}
هدف-سی
/** MapViewController.m */
- (void)updateMarkerUIOptions {
// Get the GMTCConsumerMapStyleCoordinator
GMTCConsumerMapStyleCoordinator *consumerMapStyleCoordinator = [_mapView consumerMapStyleCoordinator];
// The marker type that you would like to set custom UI options for.
GMTCCustomizableMarkerType customizableMarkerType = GMTCCustomizableMarkerTypeTripVehicle;
// Initializing marker options.
GMTCMutableMarkerStyleOptions *markerStyleOptions =
[[GMTCMutableMarkerStyleOptions alloc] init];
markerStyleOptions.groundAnchor = kGMSMarkerDefaultGroundAnchor;
markerStyleOptions.icon = icon;
markerStyleOptions.zIndex = 100;
markerStyleOptions.isFlat = NO;
markerStyleOptions.isVisible = YES;
[consumerMapStyleCoordinator setMarkerStyleOptions:markerStyleOptions markerType:customizableMarkerType];
// Reset marker options to default values.
[consumerMapStyleCoordinator setMarkerStyleOptions:nil markerType:customizableMarkerType];
}
بهروزرسانیهای پویای ETA برای نشانگرهای دریافت
برای ایجاد یک نشانگر تحویل که به صورت پویا زمان تقریبی بهروزرسانیشده را به صورت دورهای نشان میدهد، گزینههای سبک نشانگر را برای GMTCCustomizableMarkerType.tripPickupPoint بهروزرسانی کنید.
مثال
سویفت
/** MapViewController.swift */
/// Updates the ETA every minute by creating a Timer that repeats every minute.
private func schedulePickupMarkerStyleUpdates() {
Timer.scheduledTimer(
timeInterval: 60.0, // Update marker ETA every minute.
target: self,
selector: #selector(updatePickupMarkerETA),
userInfo: nil,
repeats: true)
}
/// Updates the marker options for GMTCCustomizableMarkerType.tripPickupPoint for the current time.
@objc private func updatePickupMarkerETA() {
let consumerMapStyleCoordinator = mapView.consumerMapStyleCoordinator
let previousOptions = consumerMapStyleCoordinator.markerStyleOptions(for: .tripPickupPoint)
// Get updated ETA icon.
let updatedETAIcon = pickupIconForCurrentTime()
let markerStyleOptions = GMTCMutableMarkerStyleOptions()
markerStyleOptions.groundAnchor = kGMSMarkerDefaultGroundAnchor
markerStyleOptions.icon = updatedETAIcon
markerStyleOptions.zIndex = 100
markerStyleOptions.isFlat = false
markerStyleOptions.isVisible = true
consumerMapStyleCoordinator.setMarkerStyleOptions(markerStyleOptions, markerType: .tripPickupPoint)
}
هدف-سی
/** MapViewController.m */
/** Updates the ETA every minute by creating an NSTimer that repeats every minute. */
- (void)schedulePickupMarkerStyleUpdates {
[NSTimer scheduledTimerWithTimeInterval:60.0 // Update marker ETA every minute.
target:self
selector:@selector(updatePickupMarkerETA)
userInfo:nil
repeats:YES];
}
/** Updates the marker options for GMTCCustomizableMarkerTypeTripPickupPoint for the current time. */
- (void)updatePickupMarkerETA {
GMTCConsumerMapStyleCoordinator *consumerMapStyleCoordinator = [_mapView consumerMapStyleCoordinator];
GMTCMarkerStyleOptions *previousOptions = [consumerMapStyleCoordinator markerStyleOptionsForType:GMTCCustomizableMarkerTypeTripPickupPoint];
// Get updated ETA icon.
UIImage *updatedETAIcon = [self pickupIconForCurrentTime];
GMTCMutableMarkerStyleOptions *markerStyleOptions =
[[GMTCMutableMarkerStyleOptions alloc] init];
markerStyleOptions.groundAnchor = kGMSMarkerDefaultGroundAnchor;
markerStyleOptions.icon = updatedETAIcon;
markerStyleOptions.zIndex = 100;
markerStyleOptions.isFlat = NO;
markerStyleOptions.isVisible = YES;
[consumerMapStyleCoordinator setMarkerStyleOptions:markerStyleOptions markerType:GMTCCustomizableMarkerTypeTripPickupPoint];
}