APKPure Appを使用する
目的地のメモ、方角と距離 D-mapの旧いバージョンをダウンロードすることが可能
現在地から、検索した目的地の方角を示します。地図は方位磁針のように自動で回転。検索履歴など様々な機能も搭載
このアプリは方位磁針のように目的地を指し示すアプリです。目的地は検索や、マークをして設定することができます。
端末を回転させても目的地を指し示し続けますから方向音痴の人には大変便利な地図アプリです。
有名な建物、登る山の山頂の方向などあらゆるものを調べてみましょう。
目的地の黄色いマークをタップすれば経路も簡単に調べることができます。
履歴モードをうまく使うことで、お出かけ前に目的地を事前に登録する地図メモとしてもご利用いただけます。
[技術事項]
地球半径6371.01kmとしてdouble型で独自に計算をしています。
(Location.distanceBetweenは用いていません。)
磁気偏角はアメリカ国家地球空間情報局によるWMM-2010を参照しています
設定画面から磁気偏角を手動設定可能です。
[開発者向け情報]
この地図アプリはインテントを受け取ることがきます。
--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);
--Dmapがインストールされていない場合の処理例
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setData(Uri.parse("market://details?id=net.honeybread.compassplace"));
activity.startActivity(intent);
Last updated on 2018年04月12日
Minor bug fixes and improvements. Install or update to the newest version to check it out!
目的地のメモ、方角と距離 D-map
1.20a by HoneyBread
2018年04月12日