Location:

Overview

NavInfo Map Navigation Application Development SDK [Navinfo Navigation SDK for Android] is a map navigation client application product development kit based on Android 2.3 version and above. Users can easily construct a variety of interactive applications based on map navigation. The NavInfo map navigation application product development SDK provides basic functions such as 3D map display and operation, location information search, navigation calculation, navigation process management, etc. It can be combined with MPS (GPS, base station, WIFI hybrid positioning) interface to achieve map positioning and other functions, to meet Different application needs of different users.

Feature introduction and experience

  • Simulation Navigation

                        // simulated navigation
                        mNaviSession.setSimulationSpeed(1.0f);  // Set the speed of the simulated navigation
                        mNaviSession.enableSound(true);         // Open real-time voice announcement
                        mNaviSession.startSimulation();         // Start simulation
                        
                        // Simulated navigation end and start navigation must be paired
                        // Simulated navigation ends
                        if (mRouteBase != null) {
                            if (mNaviSession.isInSimulation()) {
                                mNaviSession.endSimulation();
                                mDemoMapView.setTouchZoom(false);
                                // End the simulated navigation back to the starting point
                                mDemoMapView.setCarPosition(mStartPoint);
                            }
                        }
                    
  • HUD Navigation Mode

  • Routing

TOP