iOS में किसी यात्रा को फ़ॉलो करने के लिए मैप सेट अप करने के लिए, नीचे दिए गए चरणों को पूरा करें:
चरण 1: मैप व्यू शुरू करना
किसी यात्रा को फ़ॉलो करने के लिए, आपको मैप व्यू शुरू करना होगा.
नीचे दिए गए उदाहरण में, GMTCMapView
को शुरू करने का तरीका बताया गया है.
Swift
/*
* MapViewController.swift
*/
class ViewController: UIViewController, GMTCMapViewDelegate {
private var rideSharingMap: GMTCMapView?
override func viewDidLoad() {
super.viewDidLoad()
self.rideSharingMap = GMTCMapView(frame: UIScreen.main.bounds)
self.rideSharingMap.delegate = self
self.rideSharingMap?.settings.myLocationButton = true
self.view.addSubview(self.rideSharingMap!)
...
}
}
Objective-C
/*
* MapViewController.h
*/
@interface MapViewController : UIViewController<GMTCMapViewDelegate>
...
@end
/*
* MapViewController.m
*/
@implementation MapViewController
- (void)viewDidLoad {
[super viewDidLoad];
...
self.mapView = [[GMTCMapView alloc] initWithFrame:CGRectZero];
self.mapView.settings.myLocationButton = YES;
self.mapView.delegate = self;
...
}
...
@end
दूसरा चरण: मैप व्यू इवेंट मैनेज करना
अब जब आपने मैप व्यू शुरू कर लिया है, तो यहां बताया गया है कि किसी प्रतिनिधि को असाइन करने की सुविधा किसी वाहन के सफ़र में आगे बढ़ने पर, मैप व्यू इवेंट में होने वाले बदलावों को मैनेज करने के लिए.
Swift
func mapViewDidInitialize(_ mapview: GMTCMapView) {
// Handle the update to the state of the map view to browsing.
}
func mapView(_ mapView: GMSMapView, didTapConsumerMarker mapMarker: GMSMarker, markerType: GMTCMapViewMarkerType) -> Bool {
// Handle the mapView marker was tapped.
}
Objective-C
/*
* MapViewController.m
*/
#pragma mark - GMTCMapViewDelegate implementation
// Handle state update of map view.
- (void)mapViewDidInitializeCustomerState:(GMTCMapView *)mapview {
// Handle the update to the state of the map view to browsing.
}
- (void)mapView:(GMSMapView *)mapView
didTapConsumerMarker:(nonnull GMSMarker *)mapMarker
markerType:(GMTCMapViewMarkerType)markerType {
// Handle the mapView marker was tapped.
}