रास्ते की जानकारी पाएं

मौजूदा रास्ते के लिए, समय, दूरी, और रास्ते के हिस्सों की जानकारी पाने के लिए, अपने ऐप्लिकेशन को सेट अप करने के लिए इस गाइड का पालन करें.

खास जानकारी

मौजूदा रास्ते की जानकारी पाने के लिए, navigator इंस्टेंस से सही प्रॉपर्टी पाएं:

  • GMSNavigator.timeToNextDestination पर टैप करें. इससे, आपको मौजूदा रास्ते पर अगले डेस्टिनेशन तक पहुंचने में लगने वाला समय, सेकंड में पता चलेगा.
  • GMSNavigator.distanceToNextDestination मौजूदा रास्ते पर अगले डेस्टिनेशन की दूरी मीटर में जानने के लिए.
  • GMSNavigationDelayCategory ट्रैफ़िक फ़्लो के लिए, देरी की कैटगरी पाने के लिए.
  • GMSNavigator.currentRouteLeg रास्ते के मौजूदा हिस्से के बारे में जानकारी पाने के लिए.
  • GMSNavigator.traveledPath पर टैप करें.

कोड देखना

अगली मंज़िल तक पहुंचने में लगने वाला समय

अगले डेस्टिनेशन तक पहुंचने में लगने वाला समय जानने के लिए, timeToNextDestination() को कॉल करें. इससे NSTimeInterval वैल्यू मिलती है. यहां दिए गए उदाहरण में, अगले डेस्टिनेशन पर पहुंचने में लगने वाले समय को लॉग करने का तरीका बताया गया है:

Swift

if let navigator = mapView.navigator {
  let time = navigator.timeToNextDestination
  let minutes = floor(time/60)
  let seconds = round(time - minutes * 60)
  NSLog("Time to next destination: %.0f:%.0f", minutes, seconds)
}

Objective-C

NSTimeInterval time = _mapView.navigator.timeToNextDestination;
int minutes = floor(time/60);
int seconds = round(time - minutes * 60);
NSLog(@"%@", [NSString stringWithFormat:@"Time to next destination: %i:%i.", minutes, seconds]);

अगली मंज़िल की दूरी का पता लगाना

अगली मंज़िल की दूरी जानने के लिए, distanceToNextDestination() को कॉल करें. इससे CLLocationDistance वैल्यू मिलती है. इकाइयों को मीटर में बताया जाता है.

Swift

if let navigator = mapView.navigator {
  let distance = navigator.distanceToNextDestination
  let miles = distance * 0.00062137
  NSLog("Distance to next destination: %.2f miles.", miles)
}

Objective-C

CLLocationDistance distance = _mapView.navigator.distanceToNextDestination;
double miles = distance * 0.00062137;
NSLog(@"%@", [NSString stringWithFormat:@"Distance to next destination: %.2f.", miles]);

अगले डेस्टिनेशन के लिए ट्रैफ़िक की जानकारी पाना

अगले डेस्टिनेशन पर ट्रैफ़िक के फ़्लो की जानकारी देने वाली वैल्यू पाने के लिए, delayCategoryToNextDestination को कॉल करें. यह पैरामीटर GMSNavigationDelayCategory दिखाता है. यहां दिए गए उदाहरण में, नतीजे का आकलन करने और ट्रैफ़िक मैसेज को लॉग करने का तरीका बताया गया है:

Swift

if let navigator = mapView.navigator {
  // insert sample for evaluating traffic value
  let delay = navigator.delayCategoryToNextDestination
  let traffic = "unavailable"
  switch delay {
    case .noData:
      traffic = "unavailable"
    case .heavy:
      traffic = "heavy"
    case .medium:
      traffic = "moderate"
    case .light:
      traffic = "light"
    default:
      traffic = "unavailable"
  }
  print("Traffic is \(traffic).")
}

Objective-C

GMSNavigationDelayCategory delay = mapView.navigator.delayCategoryToNextDestination;
NSString *traffic = @"";

switch (delayCategory) {
    case GMSNavigationDelayCategoryNoData:
      traffic = @"No Data";
      break;
    case GMSNavigationDelayCategoryHeavy:
      traffic = @"Heavy";
      break;
    case GMSNavigationDelayCategoryMedium:
      traffic = @"Medium";
      break;
    case GMSNavigationDelayCategoryLight:
      traffic = @"Light";
      break;
    default:
      NSLog(@"Invalid delay category: %zd", delayCategory);
 }

NSLog(@"%@", [NSString stringWithFormat:@"Traffic is %@.", traffic]);

मौजूदा लेग के बारे में जानकारी पाना

रास्ते के मौजूदा हिस्से के बारे में जानकारी पाने के लिए, currentRouteLeg को कॉल करें. इससे GMSRouteLeg इंस्टेंस मिलता है, जिससे आपको ये चीज़ें मिल सकती हैं:

  • यात्रा के दौरान रुकने की जगह.
  • लेग का आखिरी निर्देशांक.
  • पाथ में ऐसे निर्देशांक होते हैं जिनसे रास्ते का लेग बनता है.

यहां दिए गए उदाहरण में, अगले रास्ते के हिस्से के लिए टाइटल और अक्षांश/देशांतर निर्देशांक को लॉग करने का तरीका बताया गया है:

Swift

if let navigator = mapView.navigator {
  let currentLeg = navigator.currentRouteLeg
  let nextDestination = currentLeg?.destinationWaypoint?.title
  let lat = currentLeg?.destinationCoordinate.latitude.description
  let lng = currentLeg?.destinationCoordinate.longitude.description
  NSLog(nextDestination! + ", " + lat! + "/" + lng!)
}

Objective-C

GMSRouteLeg *currentSegment = _mapView.navigator.currentRouteLeg;
NSString *nextDestination = currentSegment.destinationWaypoint.title;
CLLocationDegrees lat = currentSegment.destinationCoordinate.latitude;
CLLocationDegrees lng = currentSegment.destinationCoordinate.longitude;
NSLog(@"%@", [NSString stringWithFormat:@"%@, %f/%f", nextDestination, lat, lng]);

हाल ही में इस्तेमाल किया गया रास्ता देखना

हाल ही में यात्रा किए गए रास्ते की जानकारी पाने के लिए, traveledPath को कॉल करें. इससे एक ऐसा GMSPathइंस्टेंस मिलता है जिसे अतिरिक्त पॉइंट हटाने के लिए आसान बनाया गया है. उदाहरण के लिए, एक-दूसरे के साथ लाइन में मौजूद पॉइंट को एक लाइन सेगमेंट में बदलना. यह पाथ तब तक खाली रहता है, जब तक निर्देश शुरू नहीं किए जाते. यहां दिए गए उदाहरण में, सबसे हाल ही में इस्तेमाल किया गया पाथ दिखाया गया है:

Swift

if let navigator = mapView.navigator {
  let latestPath = navigator.traveledPath
  if latestPath.count() > 0 {
    let begin: CLLocationCoordinate2D = latestPath.coordinate(at: 0)
    let current: CLLocationCoordinate2D = latestPath.coordinate(at: latestPath.count() - 1)
    print("Path from (\(begin.latitude),\(begin.longitude)) to (\(current.latitude),\(current.longitude))")
  }
}

Objective-C

GMSPath *latestPath = mapView.navigator.traveledPath;
if (latestPath.count > 0) {
  CLLocationCoordinate2D begin = [latestPath coordinateAtIndex:0];
  CLLocationCoordinate2D current = [latestPath coordinateAtIndex:latestPath.count - 1];
  NSLog(@"Path from %f/%f to %f/%f",
        begin.latitude,
        begin.longitude,
        current.latitude,
        current.longitude);
}