one, Introduction MapBox is an open source vector map SDK. The promise of this framework is to provide quality rendering speed and smoothness in developing video games. If you are interested in integrating mapping capabilities into your application, then MapBox is one of the options worth considering. 2. Permission Settings First of all, you can download the source code provided in this article from GitHub at https://github.com/sitepoint-editors/MapBox-App. To use Mapbox in your application, you need an API access token. To do this, you need to create a Mapbox account first, which you can find at https://www.mapbox.com/studio/account/tokens. Then, add the token to your Android app's strings.xml file:
Next, add the following Internet and location permissions to the AndroidManifest.xml configuration file:
Please note: The above permissions are required at runtime on Android Marshmallow (API 23) and higher. 3. Install MapBox Next, open the build.gradle configuration file (the one under the Module: app folder) and add a dependency on MapBox. Please refer to the configuration code as shown below:
The first configuration in the code above describes Mapbox. The following configuration corresponds to the Directions library description, which is used to provide driving, walking, and biking functions to the application and support drawing their whereabouts on the map. 4. MapBox Layout Next, open the layout file content_main.xml and replace the original content with the following:
Next, initialize the variables you will need to use in the MainActivity file:
Next, in the MainActivity.java file, delete the code that creates the toolbar and floating button in the onCreate() method and add the following code to initialize the map:
Mapbox requires the implementation of the Activity's lifecycle methods to avoid runtime errors; therefore, you need to add the following override function:
OK. Now that Mapbox is configured, it's time to build the application. 5. Add markers to the map Now, add the following code to the top of the onCreate method of MainActivity:
The CameraPosition in this code is a very useful Mapbox class that can be used to set the position, angle, zoom, tilt, and other information of the user's view. So far, our map looks like this: 6. Get device location In order for Mapbox to access your location information, your location services must be enabled and your app should have permissions to use them. As mentioned above, these permissions are required at runtime on Android Marshmallow (API 23) and later. Now, let's create a new function and add the code to get the current position:
Then, add the following function call after the map initialization code:
In this case, we set the tracking mode to TRACKING_FOLLOW, which means that the user's location will be continuously monitored and the map will be continuously updated as changes occur. 7. Draw a route on the map Now that we have created our markers and locations, it's time to draw our routes on the map. This uses the second library (Directions library) imported earlier in the dependency settings, which is also developed by the Mapbox team. Here's how it works: 1. Create two waypoint locations, one for the departure point and one for the destination. 2. Create a MapboxDirections generator object to make a network request to the Mapbox API with the waypoint location information corresponding to the starting and destination points, as well as configuration information about the directions (driving, walking, biking, etc.). 3. Asynchronously execute direction requests. The MapboxDirections class provides a built-in asynchronous request using the Retrofit API. Specifically, the enqueue() function is used to execute the request. 4. The OnResponse() method returns the Retrofit response result, which is a standard JSON API response. 5. The response body contains the location coordinates, which will be plotted on the map later. 6. Use the Mapbox Polyline function to draw the coordinates on the map. A polyline is a geometric feature that forms an open polyline by connecting multiple line segments end to end. To use the Direction library, we need to get the device's location as the origin waypoint, and the location information of the destination waypoint specified by the user through a long press. 8. Add waypoint locations and add markers at the destination Now, add the following code to the top of the onCreate method:
9. Create a MapboxDirections network request and run it asynchronously Next, create a method as shown below to obtain *** routing information:
10. Draw a polyline using coordinate points on the map Add the following method to implement route drawing:
OK, now run your project. Select two points on the map and you will see something similar to the following: 11. Summary In this article, we introduced the basics of using the MapBox SDK and its Directory library. In fact, MapBox has much more and richer content that can be applied to your program, such as different map styles, customized vector map drawing, and so on. As a supplement to this article, I also recommend another library Geocoding (https://github.com/mapbox/mapbox-geocoder-android). This library can convert coordinate information into a map, or vice versa. Of course, to learn more about MapBox, it is recommended to study its mobile application examples (https://www.mapbox.com/mobile/). You will find more libraries available at this URL. |
<<: Tencent architect Xiong Pujiang: WeChat's success is not accidental
>>: Mobile game startup review: Why did the company fail 3 and a half years after its establishment?
Jinchang Seckill Mini Program investment promotio...
Have you collected all the “Five Blessings”? The ...
The marketing system is responsible for increasin...
The conversion rate of online education is the mo...
Operators often say "content connects users&...
When it comes to marketing, IKEA has a lot to be ...
Exploring the Secrets of the Twelve Constellation...
The Chinese proverb "It is easy to go from f...
There are four Activity startup modes: standard, ...
The Android camp's progress in the high-end m...
Apple pushed the iOS 18.4 Beta 2 version yesterda...
I have a knowledge planet where I receive many qu...
A live broadcast room can generate sales of over ...
Recently, with the convening of the National Peop...
APP is a word that has only appeared in our lives...