15
11

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

スマホでGoogleMapアプリの経路を開くリンク

Last updated at Posted at 2018-02-16

動作サンプルはこちらです。

iOSとAndroidの場合でリンクの貼り方が違いました。

iOSの場合

URLスキームで指定します

comgooglemaps://?saddr=[出発地]&daddr=[到着地]&directionsmode=[手段]

  • saddr(出発地) ... [経度,緯度]の形式、またはキーワード

  • daddr(到着地) ... [経度,緯度]の形式、またはキーワード

  • directionsmode(手段) ... driving, transit, bicycling, walking のいずれか

リンクを開く際に、GoogleMapアプリで開くかどうかの確認ダイアログが出てきます。

Androidの場合

Googleのurlで指定します。

https://www.google.co.jp/maps/dir/[出発地]/[目的地]

  • 出発地 ... [経度,緯度]の形式、またはキーワード

  • 目的地 ... [経度,緯度]の形式、またはキーワード

iOSの場合とは異なり、確認ダイアログは開かれずにGoogleMapアプリが開きます。

参考

https://developers.google.com/maps/documentation/ios-sdk/urlscheme?hl=ja

http://apoc.jp/googlemap-route-link/

15
11
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
15
11

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?