Bevor Sie Polylinien für Routen (oder Markierungen) anpassen können, müssen Sie die Anpassungsoptionen der Benutzeroberfläche initialisieren.
Optionen zur Anpassung der Benutzeroberfläche initialisieren
Der empfohlene Callback, der zum ersten Festlegen der Anpassungsoptionen der Benutzeroberfläche verwendet wird, wird im GMTCMapViewDelegate
deklariert. Der mapViewDidInitialize
-Callback wird ausgelöst, wenn das GMTCMapView
-Objekt zum Rendern der Karte bereit ist.
Der Stilkoordinator ist initialisiert, aber es sind keine UI-Elemente vorhanden.
Swift
/** ViewController.swift */
class ViewController: UIViewController, GMTCMapViewDelegate {
// MARK: - GMTCMapViewDelegate
func mapViewDidInitialize(_ mapview: GMTCMapView) {
// Set the UI customization options here.
}
}
Objective-C
/** ViewController.m */
@interface ViewController () <GMTCMapViewDelegate>
#pragma mark GMTCMapViewDelegate
- (void)mapViewDidInitialize:(GMTCMapView *)mapview {
// Set the UI customization options here.
}
Polylinien anpassen
Die Polylinienanpassung wird mit GMTCConsumerMapStyleCoordinator#setPolylineStyleOptions(_:polylineType:)
festgelegt.
Das folgende Beispiel zeigt, wie Sie Stiloptionen für Polylinien festlegen:
Polylinientypen
Sie können die folgenden Polylinientypen anpassen:
GMTCPolylineType.activeRoute
: Die Route, die das Fahrzeug zum nächsten Punkt des Fahrgasts nimmt, unabhängig davon, ob es sich um die Abhol- oder die Absetzvorgang handelt.GMTCPolylineType.remainingRoute
: Der Abschnitt der Fahrt, der verbleibt, nachdem das FahrzeugGMTCPolylineType.activeRoute
beendet hat.
Beide Typen werden im Verlauf eines gemeinsamen Prozesses dargestellt.
Polylinieneigenschaften
Die Eigenschaften, die Sie für jede Polylinie anpassen können, sind eine Teilmenge der in Google Maps verfügbaren EigenschaftenPolylineOptions
.
Die Consumer SDK-GMTCPolylineStyleOptions
-Properties haben die folgenden Eigenschaften:
- Mit einem Initialisierer erstellt.
- Kann unveränderlich oder änderbar sein, wenn Sie für ein beliebiges Attribut benutzerdefinierte Werte angeben möchten.
- haben Standardwerte.
Sie können die folgenden Eigenschaften anpassen:
color
width
isVisible
: Zum Deaktivieren einer Polylinie setzen SieisVisible
auffalse
.isTrafficEnabled
: Diese Eigenschaft ist standardmäßig auffalse
festgelegt.
Beispiel
Swift
/** MapViewController.swift */
private func updatePolylineUIOptions() {
// Get the GMTCConsumerMapStyleCoordinator
let consumerMapStyleCoordinator = mapView.consumerMapStyleCoordinator
// The polyline type that you would like to set custom UI options for.
let customizablePolylineType = GMTCPolylineType.activeRoute
// Initializing polyline options with default values (immutable version).
let polylineStyleOptions = GMTCPolylineStyleOptions()
consumerMapStyleCoordinator.setPolylineStyleOptions(
polylineStyleOptions, polylineType: customizablePolylineType)
// Initializing polyline options with custom values (mutable version).
let mutablePolylineStyleOptions = GMTCMutablePolylineStyleOptions()
mutablePolylineStyleOptions.isVisible = true
mutablepolylineStyleOptions.strokeWidth = 8.0
mutablepolylineStyleOptions.strokeColor = .blue
mutablepolylineStyleOptions.zIndex = 1000
mutablepolylineStyleOptions.isGeodesic = true
mutablePolylineStyleOptions.isTrafficEnabled = true
mutablePolylineStyleOptions.setTrafficColorFor(.slow, color: .yellow)
mutablePolylineStyleOptions.setTrafficColorFor(.trafficJam, color: .purple)
consumerMapStyleCoordinator.setPolylineStyleOptions(
mutablePolylineStyleOptions, polylineType: customizablePolylineType)
// Reset polyline options to default values.
consumerMapStyleCoordinator.setPolylineStyleOptions(
nil, polylineType: customizablePolylineType)
}
Objective-C
/** MapViewController.m */
- (void)updatePolylineUIOptions {
// Get the GMTCConsumerMapStyleCoordinator
GMTCConsumerMapStyleCoordinator *consumerMapStyleCoordinator = [_mapView consumerMapStyleCoordinator];
// The polyline type that you would like to set custom UI options for.
GMTCPolylineType customizablePolylineType = GMTCPolylineTypeActiveRoute;
// Initializing polyline options with default values (immutable version).
GMTCPolylineStyleOptions *polylineStyleOptions = [[GMTCPolylineStyleOptions alloc] init];
[consumerMapStyleCoordinator setPolylineStyleOptions:polylineStyleOptions
polylineType:customizablePolylineType];
// Initializing polyline options with custom values (mutable version).
GMTCMutablePolylineStyleOptions *mutablePolylineStyleOptions = [[GMTCMutablePolylineStyleOptions alloc] init];
mutablePolylineStyleOptions.isVisible = YES;
mutablepolylineStyleOptions.strokeWidth = 8.0;
mutablepolylineStyleOptions.strokeColor = [UIColor blueColor];
mutablepolylineStyleOptions.zIndex = 1000;
mutablepolylineStyleOptions.isGeodesic = YES;
mutablePolylineStyleOptions.isTrafficEnabled = YES;
[mutablePolylineStyleOptions setTrafficColorForSpeed:GMTSSpeedTypeSlow color:[UIColor yellowColor]];
[mutablePolylineStyleOptions setTrafficColorForSpeed:GMTSSpeedTypeTrafficJam color:[UIColor purpleColor]];
[consumerMapStyleCoordinator setPolylineStyleOptions:mutablePolylineStyleOptions
polylineType:customizablePolylineType];
// Reset polyline options to default values.
[consumerMapStyleCoordinator setPolylineStyleOptions:nil
polylineType:customizablePolylineType];
}
Polylinien mit Verkehrserkennung
Die Verkehrsebene der Polylinie ist standardmäßig deaktiviert. Wenn Sie diese Funktion mit polylineStyleOptions.isTrafficEnabled = true
aktivieren, werden Segmente, die Abschnitte mit nicht normalem Traffic darstellen, als Route dargestellt.
Die Verkehrslage wird als eine von vier Geschwindigkeiten dargestellt:
GMTSSpeedType.noData
GMTSSpeedType.normal
GMTSSpeedType.slow
GMTSSpeedType.trafficJam
Mit setTrafficColorFor(_:color:)
können Sie die Farbe für jede dieser Geschwindigkeitsklassifizierungen anpassen.