Location:

Overview

NavInfo Map Navigation Client Application Development SDK [Navinfo Navigation SDK for iOS] is a set based on iOS Map navigation client application product development kit for version 8.0 and above. Users can easily construct a variety of interactive applications based on map navigation. The four-dimensional map navigation client application product development SDK provides basic functions such as 3D map display and operation, location information search, navigation calculation, navigation process management, etc., to meet the various application needs of different users.

Feature introduction and experience

  • Map Display

                        (For complete code, see the MBMapController.m file of the SDKDemo project)
                        #import <iNaviCore/MBMapView.h>
                        @interface MBMapController ()
                        // map view
                        @property (nonatomic ,strong) MBMapView *mapView;
                        }
                        
                        - (void)viewDidLoad {
                            [super viewDidLoad];
                            [self initMapView];
                        }
                        
                        - (void)initMapView {
                            if (baseMapView == nil) {
                                baseMapView = [[MBMapView alloc]initWithFrame:self.view.bounds];
                                [self.view addSubview:baseMapView];
                            }
                            [baseMapView setZoomLevel:8.0 animated:YES];
                            baseMapView.delegate = self;
                        }
                    
  • Overlay

  • POI Search

  • Offline Data

TOP