फ़िलहाल, नेविगेशन SDK टूल सिर्फ़ चुनिंदा ग्राहकों के लिए उपलब्ध है. ज़्यादा जानने के लिए, सेल्स टीम से संपर्क करें.
मैप की नई स्टाइल, जल्द ही Google Maps Platform पर उपलब्ध होगी. मैप की स्टाइल में हुए इस अपडेट में, नया डिफ़ॉल्ट कलर पटल जोड़ा गया है. साथ ही, मैप के अनुभवों और उसे इस्तेमाल करने के तरीके में सुधार भी किए गए हैं. मार्च 2025 में, सभी मैप स्टाइल अपने-आप अपडेट हो जाएंगी. उपलब्धता और जल्दी ऑप्ट इन करने के तरीके के बारे में ज़्यादा जानकारी के लिए, Google Maps Platform के लिए नई मैप स्टाइल देखें.
संग्रह की मदद से व्यवस्थित रहें
अपनी प्राथमिकताओं के आधार पर, कॉन्टेंट को सेव करें और कैटगरी में बांटें.
इस गाइड का इस्तेमाल करके, अपने ऐप्लिकेशन को कई तरह के इवेंट सुनने और उनका जवाब देने की सुविधा दें
जो उपयोगकर्ता के रूट में नेविगेट करने पर बदल जाते हैं. इस गाइड में यह जानकारी शामिल नहीं है
रूट तय करते हुए, सिर्फ़ रूट पर होने वाले इवेंट के हिसाब से जवाब देते हैं.
खास जानकारी
iOS के लिए नेविगेशन SDK से आपको लिसनर मुहैया कराने में मदद मिलती है
उपयोगकर्ता की जगह की जानकारी और रास्ते की शर्तों से जुड़ा होता है और
समय और दूरी का ज़रूरी डेटा मिल सकता है. मैप के व्यू कंट्रोलर पर, आपका ऐप्लिकेशन
इन लिसनर के लिए, प्रोटोकॉल को अपनाना ज़रूरी है:
GMSRoadSnappedLocationProviderListener
और
GMSNavigatorListener.
इस सूची में नेविगेशन इवेंट के लिए, लिसनर के उपलब्ध तरीके दिखाए गए हैं:
GMSNavigatorListener.didChangeSuggestedLightingMode,
यह तब ट्रिगर होता है, जब रोशनी की अनुमानित स्थिति अपडेट हो जाती है. उदाहरण के लिए
जब रात किसी उपयोगकर्ता की मौजूदा जगह पर आती है, तब लाइटिंग बदल जाती है.
/*
* Copyright 2020 Google Inc. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import GoogleNavigation
import UIKit
class ViewController: UIViewController,
GMSNavigatorListener,
GMSRoadSnappedLocationProviderListener
{
var mapView: GMSMapView!
var locationManager: CLLocationManager!
override func loadView() {
locationManager = CLLocationManager()
let camera = GMSCameraPosition.camera(withLatitude: 47.67, longitude: -122.20, zoom: 14)
mapView = GMSMapView.map(withFrame: CGRect.zero, camera: camera)
// Add listeners for GMSNavigator and GMSRoadSnappedLocationProvider.
mapView.navigator?.add(self)
mapView.roadSnappedLocationProvider?.add(self)
// Set the time update threshold (seconds) and distance update threshold (meters).
mapView.navigator?.timeUpdateThreshold = 10
mapView.navigator?.distanceUpdateThreshold = 100
// Show the terms and conditions.
let companyName = "Ride Sharing Co."
GMSNavigationServices.showTermsAndConditionsDialogIfNeeded(
withCompanyName: companyName
) { termsAccepted in
if termsAccepted {
// Enable navigation if the user accepts the terms.
self.mapView.isNavigationEnabled = true
// Request authorization to use location services.
self.locationManager.requestAlwaysAuthorization()
// Request authorization for alert notifications which deliver guidance instructions
// in the background.
UNUserNotificationCenter.current().requestAuthorization(options: [.alert]) {
granted, error in
// Handle denied authorization to display notifications.
if !granted || error != nil {
print("Authorization to deliver notifications was rejected.")
}
}
} else {
// Handle the case when the user rejects the terms and conditions.
}
}
view = mapView
makeButton()
}
// Create a route and start guidance.
@objc func startNav() {
var destinations = [GMSNavigationWaypoint]()
destinations.append(
GMSNavigationWaypoint.init(
placeID: "ChIJnUYTpNASkFQR_gSty5kyoUk",
title: "PCC Natural Market")!)
destinations.append(
GMSNavigationWaypoint.init(
placeID: "ChIJJ326ROcSkFQRBfUzOL2DSbo",
title: "Marina Park")!)
mapView.navigator?.setDestinations(destinations) { routeStatus in
guard routeStatus == .OK else {
print("Handle route statuses that are not OK.")
return
}
self.mapView.navigator?.isGuidanceActive = true
self.mapView.cameraMode = .following
self.mapView.locationSimulator?.simulateLocationsAlongExistingRoute()
}
mapView.roadSnappedLocationProvider?.startUpdatingLocation()
}
// Listener to handle continuous location updates.
func locationProvider(
_ locationProvider: GMSRoadSnappedLocationProvider,
didUpdate location: CLLocation
) {
print("Location: \(location.description)")
}
// Listener to handle speeding events.
func navigator(
_ navigator: GMSNavigator, didUpdateSpeedingPercentage percentageAboveLimit: CGFloat
) {
print("Speed is \(percentageAboveLimit) above the limit.")
}
// Listener to handle arrival events.
func navigator(_ navigator: GMSNavigator, didArriveAt waypoint: GMSNavigationWaypoint) {
print("You have arrived at: \(waypoint.title)")
mapView.navigator?.continueToNextDestination()
mapView.navigator?.isGuidanceActive = true
}
// Listener for route change events.
func navigatorDidChangeRoute(_ navigator: GMSNavigator) {
print("The route has changed.")
}
// Listener for time to next destination.
func navigator(_ navigator: GMSNavigator, didUpdateRemainingTime time: TimeInterval) {
print("Time to next destination: \(time)")
}
// Delegate for distance to next destination.
func navigator(
_ navigator: GMSNavigator,
didUpdateRemainingDistance distance: CLLocationDistance
) {
let miles = distance * 0.00062137
print("Distance to next destination: \(miles) miles.")
}
// Delegate for traffic updates to next destination
func navigator(
_ navigator: GMSNavigator,
didUpdate delayCategory: GMSNavigationDelayCategory
) {
print("Delay category to next destination: \(String(describing: delayCategory)).")
}
// Delegate for suggested lighting mode changes.
func navigator(
_ navigator: GMSNavigator,
didChangeSuggestedLightingMode lightingMode: GMSNavigationLightingMode
) {
print("Suggested lighting mode has changed: \(String(describing: lightingMode))")
// Change to the suggested lighting mode.
mapView.lightingMode = lightingMode
}
// Add a button to the view.
func makeButton() {
// Start navigation.
let navButton = UIButton(frame: CGRect(x: 5, y: 150, width: 200, height: 35))
navButton.backgroundColor = .blue
navButton.alpha = 0.5
navButton.setTitle("Start navigation", for: .normal)
navButton.addTarget(self, action: #selector(startNav), for: .touchUpInside)
self.mapView.addSubview(navButton)
}
}
इवेंट लिसनर का Objective-C कोड दिखाएं/छिपाएं.
/*
* Copyright 2020 Google Inc. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#import "ViewController.h"
@import GoogleNavigation;
@interface ViewController () <GMSNavigatorListener, GMSRoadSnappedLocationProviderListener>
@end
@implementation ViewController {
GMSMapView *_mapView;
CLLocationManager *_locationManager;
}
- (void)loadView {
_locationManager = [[CLLocationManager alloc] init];
GMSCameraPosition *camera = [GMSCameraPosition cameraWithLatitude:47.67
longitude:-122.20
zoom:14];
_mapView = [GMSMapView mapWithFrame:CGRectZero camera:camera];
// Add listeners for GMSNavigator and GMSRoadSnappedLocationProvider.
[_mapView.navigator addListener:self];
[_mapView.roadSnappedLocationProvider addListener:self];
// Set the time update threshold (seconds) and distance update threshold (meters).
_mapView.navigator.timeUpdateThreshold = 10;
_mapView.navigator.distanceUpdateThreshold = 100;
// Show the terms and conditions.
NSString *companyName = @"Ride Sharing Co.";
[GMSNavigationServices
showTermsAndConditionsDialogIfNeededWithCompanyName:companyName
callback:^(BOOL termsAccepted) {
if (termsAccepted) {
// Enable navigation if the user accepts the terms.
_mapView.navigationEnabled = YES;
// Request authorization to use location services.
[_locationManager requestAlwaysAuthorization];
} else {
// Handle the case when the user rejects the terms and conditions.
}
}];
self.view = _mapView;
[self makeButton];
}
// Create a route and initiate navigation.
- (void)startNav {
NSArray<GMSNavigationWaypoint *> *destinations =
@[[[GMSNavigationWaypoint alloc] initWithPlaceID:@"ChIJnUYTpNASkFQR_gSty5kyoUk"
title:@"PCC Natural Market"],
[[GMSNavigationWaypoint alloc] initWithPlaceID:@"ChIJJ326ROcSkFQRBfUzOL2DSbo"
title:@"Marina Park"]];
[_mapView.navigator setDestinations:destinations
callback:^(GMSRouteStatus routeStatus){
_mapView.navigator.guidanceActive = YES;
_mapView.navigator.sendsBackgroundNotifications = YES;
_mapView.cameraMode = GMSNavigationCameraModeFollowing;
[_mapView.locationSimulator simulateLocationsAlongExistingRoute];
}];
[_mapView.roadSnappedLocationProvider startUpdatingLocation];
}
#pragma mark - GMSNavigatorListener
// Listener for continuous location updates.
- (void)locationProvider:(GMSRoadSnappedLocationProvider *)locationProvider
didUpdateLocation:(CLLocation *)location {
NSLog(@"Location: %@", location.description);
}
// Listener to handle speeding events.
- (void)navigator:(GMSNavigator *)navigator
didUpdateSpeedingPercentage:(CGFloat)percentageAboveLimit {
NSLog(@"Speed is %f percent above the limit.", percentageAboveLimit);
}
// Listener to handle arrival events.
- (void)navigator:(GMSNavigator *)navigator didArriveAtWaypoint:(GMSNavigationWaypoint *)waypoint {
NSLog(@"You have arrived at: %@", waypoint.title);
[_mapView.navigator continueToNextDestination];
_mapView.navigator.guidanceActive = YES;
}
// Listener for route change events.
- (void)navigatorDidChangeRoute:(GMSNavigator *)navigator {
NSLog(@"The route has changed.");
}
// Listener for time to next destination.
- (void)navigator:(GMSNavigator *)navigator didUpdateRemainingTime:(NSTimeInterval)time {
NSLog(@"Time to next destination: %f", time);
}
// Listener for distance to next destination.
- (void)navigator:(GMSNavigator *)navigator
didUpdateRemainingDistance:(CLLocationDistance)distance {
double miles = distance * 0.00062137;
NSLog(@"%@", [NSString stringWithFormat:@"Distance to next destination: %.2f.", miles]);
}
// Listener for traffic updates for next destination
- (void)navigator:(GMSNavigator *)navigator
didUpdateDelayCategory:(GMSNavigationDelayCategory)delayCategory {
NSLog(@"Delay category to next destination: %ld.", delayCategory);
}
// Listener for suggested lighting mode changes.
-(void)navigator:(GMSNavigator *)navigator
didChangeSuggestedLightingMode:(GMSNavigationLightingMode)lightingMode {
NSLog(@"Suggested lighting mode has changed: %ld", (long)lightingMode);
// Change to the suggested lighting mode.
_mapView.lightingMode = lightingMode;
}
#pragma mark - Programmatic UI elements
// Add a button to the view.
- (void)makeButton {
// Start navigation.
UIButton *navButton = [UIButton buttonWithType:UIButtonTypeCustom];
[navButton addTarget:self
action:@selector(startNav)
forControlEvents:UIControlEventTouchUpInside];
[navButton setTitle:@"Navigate" forState:UIControlStateNormal];
[navButton setBackgroundColor:[UIColor blueColor]];
[navButton setAlpha:0.5];
navButton.frame = CGRectMake(5.0, 150.0, 100.0, 35.0);
[_mapView addSubview:navButton];
}
@end
ज़रूरी प्रोटोकॉल के पालन का एलान करना
नेविगेशन के तरीके लागू करने से पहले, व्यू कंट्रोलर को
प्रोटोकॉल:
Swift
class ViewController: UIViewController, GMSNavigatorListener,
GMSRoadSnappedLocationProviderListener {
मैप पर उपयोगकर्ता की प्रोग्रेस दिखाने के लिए, जगह की जानकारी को अपडेट करना ज़रूरी है.
location इंस्टेंस में ये प्रॉपर्टी दिखती हैं:
लोकेशन प्रॉपर्टी
ब्यौरा
ऊंचाई
मौजूदा ऊंचाई.
coordinate.latitude
सड़क का मौजूदा अक्षांश निर्देशांक.
coordinate.longitude
सड़क से शेयर किया गया मौजूदा देशांतर निर्देशांक.
कोर्स
मौजूदा बियरिंग: डिग्री में.
गति
मौजूदा स्पीड.
timestamp
मौजूदा रीडिंग की तारीख/समय.
लगातार जगह की जानकारी के अपडेट पाने के लिए, कॉल करें
mapView.roadSnappedLocationProvider.startUpdatingLocation और
didUpdateLocation को हैंडल करने के लिए GMSRoadSnappedLocationProviderListener
इवेंट.
नीचे दिए गए उदाहरण में, startUpdatingLocation को कॉल करने का तरीका बताया गया है:
आपका ऐप्लिकेशन, didArriveAtWaypoint इवेंट का इस्तेमाल करके यह पता लगाता है कि डेस्टिनेशन में कब है
पहुंच गए हैं. दिशा-निर्देश फिर से शुरू करें और इस तारीख तक अगले वेपॉइंट पर जाएं
continueToNextDestination() को कॉल करें. इसके बाद, दिशा-निर्देश को फिर से चालू करें. आपका ऐप्लिकेशन
continueToNextDestination() को कॉल करने के बाद, दिशा-निर्देश को फिर से चालू करना होगा.
ऐप्लिकेशन के continueToNextDestination को कॉल करने के बाद, नेविगेटर के पास
पिछले डेस्टिनेशन का डेटा. अगर आपको किसी
रूट लेग, कॉल करने से पहले आपको इसे नेविगेटर से पुनर्प्राप्त करना होगा
continueToNextDestination().
उदाहरण के तौर पर दिया गया यह कोड, didArriveAtWaypoint को मैनेज करने का तरीका दिखाता है
इवेंट:
रास्ता बदलने पर सूचना पाने के लिए, एक तरीका बनाएं
navigatorDidChangeRoute इवेंट मैनेज करें. आप यहां से नए रास्ते को ऐक्सेस कर सकते हैं
GMSNavigator की routeLegs और currentRouteLeg प्रॉपर्टी का इस्तेमाल करके.
Swift
func navigatorDidChangeRoute(_ navigator: GMSNavigator) { print("The route has
changed.") }
Objective-C
- (void)navigatorDidChangeRoute:(GMSNavigator *)navigator { NSLog(@"The route
has changed."); }
गंतव्य अपडेट तक पहुंचने में समय लग रहा है
डेस्टिनेशन के अपडेट के लिए लगातार समय पाने के लिए, एक तरीका बनाएं
didUpdateRemainingTime इवेंट. time पैरामीटर अनुमानित
समय, सेकंड में, अगली मंज़िल पर पहुंचने तक.
Swift
func navigator(_ navigator: GMSNavigator, didUpdateRemainingTime time:
TimeInterval) { print("Time to next destination: \(time)") }
Objective-C
- (void)navigator:(GMSNavigator *)navigator
didUpdateRemainingTime:(NSTimeInterval)time { NSLog(@"Time to next
destination: %f", time); }
अनुमानित समय में कम से कम बदलाव को अगली मंज़िल पर सेट करने के लिए,
GMSNavigator पर timeUpdateThreshold प्रॉपर्टी. मान इसमें बताया गया है
सेकंड. अगर यह प्रॉपर्टी सेट नहीं की गई है, तो सेवाएं एक की डिफ़ॉल्ट वैल्यू का इस्तेमाल करती हैं
सेकंड.
Swift
navigator?.timeUpdateThreshold = 10
Objective-C
navigator.timeUpdateThreshold = 10;
गंतव्य अपडेट की दूरी मिल रही है
डेस्टिनेशन के अपडेट से लगातार दूरी बनाए रखने के लिए, एक तरीका बनाएं
didUpdateRemainingDistance इवेंट. distance पैरामीटर सें
अगली मंज़िल तक पहुंचने के लिए, मीटर में अनुमानित दूरी.
Swift
func navigator(_ navigator: GMSNavigator, didUpdateRemainingDistance distance:
CLLocationDistance) { let miles = distance * 0.00062137 print("Distance to next
destination: \(miles) miles.") }
Objective-C
- (void)navigator:(GMSNavigator *)navigator
didUpdateRemainingDistance:(CLLocationDistance)distance { double miles =
distance * 0.00062137; NSLog(@"%@", [NSString stringWithFormat:@"Distance to
next destination: %.2f.", miles]); }
अगली मंज़िल की अनुमानित दूरी में कम से कम बदलाव सेट करने के लिए,
GMSNavigator पर distanceUpdateThreshold प्रॉपर्टी (मान इसमें बताया गया है
मीटर). अगर यह प्रॉपर्टी सेट नहीं की गई है, तो सेवाएं एक की डिफ़ॉल्ट वैल्यू का इस्तेमाल करती हैं
मीटर.
Swift
navigator?.distanceUpdateThreshold = 100
Objective-C
navigator.distanceUpdateThreshold = 100;
ट्रैफ़िक के अपडेट पाना
बाकी रास्ते के ट्रैफ़िक फ़्लो के लगातार अपडेट पाने के लिए,
didUpdateDelayCategory इवेंट को मैनेज करने के लिए कोई तरीका बनाएं. इन्हें कॉल किया गया
delayCategoryToNextDestination, GMSNavigationDelayCategory दिखाता है, जो
0 से 3 की वैल्यू देता है. कैटगरी में होने वाले अपडेट, मौजूदा समय के हिसाब से हैं
उपयोगकर्ता की स्थिति. ट्रैफ़िक डेटा उपलब्ध न होने पर,
GMSNavigationDelayCategory, 0 दिखाता है. 1-3 की संख्या से पता चलता है कि
हल्के से भारी में बदलना होगा.
Swift
func navigator(_ navigator: GMSNavigator, didUpdate delayCategory:
GMSNavigationDelayCategory) { print("Traffic flow to next destination:
\(delayCategory)") }
Objective-C
- (void)navigator:(GMSNavigator *)navigator
didUpdateDelayCategory:(GMSNavigationDelayCategory)delayCategory {
NSLog(@"Traffic flow to next destination: %ld", (long)delayCategory); }
GMSNavigationDelayCategory प्रॉपर्टी में देरी के ये लेवल दिखते हैं:
देरी की कैटगरी
ब्यौरा
GMSNavigationDelayCategoryNoData
0 - अनुपलब्ध, ट्रैफ़िक के लिए कोई डेटा नहीं या :
बताया जा सकता है.
GMSNavigationDelayCategoryHeavy
1 - बहुत ज़्यादा.
GMSNavigationDelayCategoryMedium
2 - मीडियम.
GMSNavigationDelayCategoryLight
3 - कम.
तेज़ी से अपडेट मिल रहे हैं
ड्राइवर की रफ़्तार तय सीमा से ज़्यादा होने पर अपडेट पाने के लिए, एक तरीका बनाएं
didUpdateSpeedingPercentage इवेंट को मैनेज करने के लिए.
Swift
// Listener to handle speeding events. func navigator( _ navigator:
GMSNavigator, didUpdateSpeedingPercentage percentageAboveLimit: CGFloat ) {
print("Speed is \(percentageAboveLimit) above the limit.") }
Objective-C
// Listener to handle speeding events. - (void)navigator:(GMSNavigator
*)navigator didUpdateSpeedingPercentage:(CGFloat)percentageAboveLimit {
NSLog(@"Speed is %f percent above the limit.", percentageAboveLimit); }
सुझाई गई लाइटिंग मोड को बदलना
लाइटिंग में होने वाले अनुमानित बदलावों के बारे में अपडेट पाने के लिए, एक तरीका बनाएं
didChangeSuggestedLightingMode इवेंट.
Swift
// Define a listener for suggested changes to lighting mode. func navigator(_
navigator: GMSNavigator, didChangeSuggestedLightingMode lightingMode:
GMSNavigationLightingMode) { print("Suggested lighting mode has changed:
\(String(describing: lightingMode))")
// Make the suggested change. mapView.lightingMode = lightingMode }
Objective-C
// Define a listener for suggested changes to lighting mode.
-(void)navigator:(GMSNavigator *)navigator didChangeSuggestedLightingMode:
(GMSNavigationLightingMode)lightingMode { NSLog(@"Suggested lighting mode has
changed: %ld", (long)lightingMode);
// Make the suggested change. _mapView.lightingMode = lightingMode; }
[[["समझने में आसान है","easyToUnderstand","thumb-up"],["मेरी समस्या हल हो गई","solvedMyProblem","thumb-up"],["अन्य","otherUp","thumb-up"]],[["वह जानकारी मौजूद नहीं है जो मुझे चाहिए","missingTheInformationINeed","thumb-down"],["बहुत मुश्किल है / बहुत सारे चरण हैं","tooComplicatedTooManySteps","thumb-down"],["पुराना","outOfDate","thumb-down"],["अनुवाद से जुड़ी समस्या","translationIssue","thumb-down"],["सैंपल / कोड से जुड़ी समस्या","samplesCodeIssue","thumb-down"],["अन्य","otherDown","thumb-down"]],["आखिरी बार 2024-08-03 (UTC) को अपडेट किया गया."],[],[]]