Location:

Overview

The NavInfo Map Java SDK is a set of application interfaces written in the Java language to support server-side map service development. Developers can call the SDK interface to easily access the services and data of NavInfo maps and quickly build feature-rich, interactive map-like application services. The SDK provides basic functions such as tram travel, path planning, batch calculation, and road events to meet the needs of different users.

The NavInfo Map Java SDK is compatible with JDK 1.7 and above.

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
                                //The result returns successfully
                            }
                            @Override
                            public void onFail(final APIStatus status) {
                                //Result failed
                            }
                        });
                        // Start search suggestions
                        mPOISuggest.search();
                    
  • Charging Station Search

  • Vehicle Range

  • Routing

  • Traffic Kanban

TOP