Use APKPure App
Get Dmap - Destination notes, direction and distance old version APK for Android
Indicates the direction of the searched destination. A map like a compass needle
This application is like an azimuth needle pointing to a destination. Destinations can be searched and marked and set.
It is a very convenient map application for those who have no sense of direction because they keep pointing the destination even if the terminal is rotated.
Let's examine everything including famous buildings, the direction of the summit of the climbing mountain.
By tapping the yellow mark on the destination you can easily find out the route.
By using the history mode well, you can use it as a map memo to pre-register destinations before going out.
[Technical matter]
I calculate it independently with a double type as the Earth radius 6371.01 km.
(Location.distanceBetween is not used.)
Magnetic deflection angle refers to WMM-2010 by the National Geospatial Information Agency of the United States
The magnetic deflection angle can be set manually from the setting screen.
[Information for developers]
This application is a map application that can receive intents.
Please pass the value as follows.
--Start Dmap
PackageManager pM = activity.getPackageManager();
Intent intent = pM.getLaunchIntentForPackage("net.honeybread.compassplace");
intent.putExtra("latitudeDouble",latitude);
intent.putExtra("longitudeDouble",longitude);
intent.putExtra("nameString",name); //Name of building or place
intent.putExtra("typeInt",type); // googlePlaceAPI's place.types (int)
intent.putExtra("addressString",address); //Address of building or place
activity.startActivity(intent);
--Processing when package is not installed
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setData(Uri.parse("market://details?id=net.honeybread.compassplace"));
activity.startActivity(intent);
Last updated on Apr 12, 2018
Minor bug fixes and improvements. Install or update to the newest version to check it out!
Requires Android
4.4 and up
Category
Report
Dmap - Destination notes, direction and distance
1.20a by HoneyBread
Apr 12, 2018