菊池
確認お願いします
This commit is contained in:
parent
97fb84e3a6
commit
1f1f96bf56
|
@ -33,11 +33,15 @@ public class Maps extends FragmentActivity implements View.OnClickListener {
|
||||||
webSettings.setJavaScriptEnabled(true);
|
webSettings.setJavaScriptEnabled(true);
|
||||||
webView.setWebViewClient(new WebViewClient());
|
webView.setWebViewClient(new WebViewClient());
|
||||||
|
|
||||||
|
// ここにデータを入れておいてください、処理は[/]で区切っています
|
||||||
loadMapInWebView("35.09050879999539,136.87845379325216/35.09284820618655,136.88165119390393/35.09364708442631,136.88171563326418");
|
loadMapInWebView("35.09050879999539,136.87845379325216/35.09284820618655,136.88165119390393/35.09364708442631,136.88171563326418");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// WebViewの処理です(Mapの中の処理をやっています)
|
||||||
private void loadMapInWebView(String locations) {
|
private void loadMapInWebView(String locations) {
|
||||||
|
// 区切ることで、追加の地点を入れて、最終地点にピンを打ってある状態です
|
||||||
String[] locArray = locations.split("/");
|
String[] locArray = locations.split("/");
|
||||||
|
// ↓URLで経路案内(車)での表示をしています
|
||||||
StringBuilder urlBuilder = new StringBuilder("https://www.google.com/maps/dir/?api=1&travelmode=driving");
|
StringBuilder urlBuilder = new StringBuilder("https://www.google.com/maps/dir/?api=1&travelmode=driving");
|
||||||
|
|
||||||
if (locArray.length > 0) {
|
if (locArray.length > 0) {
|
||||||
|
|
BIN
app/src/main/res/drawable/all_ok.png
Normal file
BIN
app/src/main/res/drawable/all_ok.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 48 KiB |
|
@ -10,7 +10,7 @@
|
||||||
<Space
|
<Space
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_weight="2"/>
|
android:layout_weight="3"/>
|
||||||
|
|
||||||
|
|
||||||
<!-- ID作成のレイアウト-->
|
<!-- ID作成のレイアウト-->
|
||||||
|
@ -43,6 +43,7 @@
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<!-- セットアップのレイアウト-->
|
<!-- セットアップのレイアウト-->
|
||||||
<LinearLayout
|
<LinearLayout
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
|
@ -72,6 +73,13 @@
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
|
|
||||||
|
|
||||||
|
<Space
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_weight="3"/>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<!-- ルート表示のレイアウト-->
|
<!-- ルート表示のレイアウト-->
|
||||||
<LinearLayout
|
<LinearLayout
|
||||||
|
@ -102,12 +110,6 @@
|
||||||
android:layout_gravity="center"/>
|
android:layout_gravity="center"/>
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
|
|
||||||
<Space
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:layout_weight="3"/>
|
|
||||||
|
|
||||||
|
|
||||||
<!-- 提出状況のレイアウト-->
|
<!-- 提出状況のレイアウト-->
|
||||||
<LinearLayout
|
<LinearLayout
|
||||||
android:layout_width="350dp"
|
android:layout_width="350dp"
|
||||||
|
|
Loading…
Reference in New Issue
Block a user