为默认打开 google 地图的所有移动设备创建 link
Create a link for all mobile devices that opens google maps by default
为所有打开 google 带有营业地点地图的移动设备创建一个 link?
<a href="geo:37.6894694,-121.000303">Google MAP</a>
- 此 link 转到该位置并重定向到移动 google 应用程序,但没有标记公司地址。
<a href="http://maps.apple.com/maps?q=Business Address">Google MAP</a>
- 此 link 转到该位置,但不会重定向到 google 应用程序,而是移动设备希望您选择要使用的内容。
我需要一个 link 重定向到 google 应用程序并标记 google 公司地址。
<a href="geo:37.6894694,-121.000303?q=37.6894694,-121.000303(The Name You Want To Show)">Google MAP</a>
将 q 参数与 () 一起用于显示标记名称
它适用于 android 台设备,但我不确定它是否适用于 iOS 台设备。
阅读更多:
https://developers.google.com/maps/documentation/android-api/intents#overview
https://developer.android.com/guide/components/intents-common.html
2017 年 5 月 Google 推出了 Google 地图网址。 API 允许创建可以在网络上使用的通用跨平台 URL,Android 或 iOS。
例如,您可以在 Android 上打开原生地图应用,将以下 URL 传递到 intents
https://www.google.com/maps/search/?api=1&query=centurylink+field
https://www.google.com/maps/search/?api=1&query=47.5951518,-122.3316393&query_place_id=ChIJKxjxuaNqkFQR3CK6O1HNNqY
详情请参考文档:
为所有打开 google 带有营业地点地图的移动设备创建一个 link?
<a href="geo:37.6894694,-121.000303">Google MAP</a>
- 此 link 转到该位置并重定向到移动 google 应用程序,但没有标记公司地址。
<a href="http://maps.apple.com/maps?q=Business Address">Google MAP</a>
- 此 link 转到该位置,但不会重定向到 google 应用程序,而是移动设备希望您选择要使用的内容。
我需要一个 link 重定向到 google 应用程序并标记 google 公司地址。
<a href="geo:37.6894694,-121.000303?q=37.6894694,-121.000303(The Name You Want To Show)">Google MAP</a>
将 q 参数与 () 一起用于显示标记名称
它适用于 android 台设备,但我不确定它是否适用于 iOS 台设备。
阅读更多:
https://developers.google.com/maps/documentation/android-api/intents#overview
https://developer.android.com/guide/components/intents-common.html
2017 年 5 月 Google 推出了 Google 地图网址。 API 允许创建可以在网络上使用的通用跨平台 URL,Android 或 iOS。
例如,您可以在 Android 上打开原生地图应用,将以下 URL 传递到 intents
https://www.google.com/maps/search/?api=1&query=centurylink+field
https://www.google.com/maps/search/?api=1&query=47.5951518,-122.3316393&query_place_id=ChIJKxjxuaNqkFQR3CK6O1HNNqY
详情请参考文档: