Location:

Overview

NavInfo Map Android Service SDK is a mobile product development kit based on Android 2.3 version and above. Developers can call this SDK interface to easily access NavInfo map services and data, and quickly build rich and interactive functions. Strong map class application. The SDK provides basic functions such as tram travel, path planning, batch calculation, and road events to meet the needs of different users.

Feature introduction and experience

  • Suggest

                        POISuggest mPOISuggest=new POISuggest();
                        // Set the request parameters,
                        mPOISuggest.setQuery(POISuggest.Query.newQuery("Food", "Beijing"));
                        // Set the request to return the result listener interface
                        mPOISuggest.setListener(new POISuggest.Listener() {
                            @Override
                            public void onSuccess(POISuggestResult result) {
                                //Thread is an asynchronous thread, Android project needs to be in the UI thread, control control
                                //The result returns successfully
                            }
                            @Override
                            public void onFail(final APIStatus status) {
                                //Result failed
                            }
                        });
                        // Start search suggestions
                        mPOISuggest.search();
                    
  • Charging Station Search

  • Vehicle Range

  • Routing

  • RTIC Kanban

TOP