菜鸟教程小白 发表于 2022-12-13 15:54:11

android - 打开带有坐标方向的谷歌地图应用程序


                                            <p><p>我正在编写一个应用程序(iOS 和 Android),它应该能够在设备上打开 Googlemap 应用程序并为目标提供方向。目标以纬度/经度坐标的形式提供。我已阅读官方指南如何执行此操作(<a href="https://developers.google.com/maps/documentation/urls/guide" rel="noreferrer noopener nofollow">https://developers.google.com/maps/documentation/urls/guide</a>),但它仍然不起作用。 </p>

<p>以下是我从应用程序发送的 URL 示例。如果我将相同的网址粘贴到计算机上的浏览器中,它可以正常工作,但如果我尝试在我的设备上打开它,我会收到一条错误消息,上面写着“不支持的链接,谷歌地图无法打开此链接”。</p>

<p> <a href="https://www.google.com/maps/dir/?api=1&amp;destination=50.693907573202%2C10.970328366756" rel="noreferrer noopener nofollow">https://www.google.com/maps/dir/?api=1&amp;destination=50.693907573202%2C10.970328366756</a> </p>

<p>我做错了什么?</p>

<p><strong>编辑:</strong>我注意到它在我第二次发送 url 时有效,但第一次却没有。换句话说:在我的应用程序中,我触摸“路线”按钮,Googlemap 就会显示错误消息。然后我返回我的应用程序并再次按下“方向”按钮,它就可以工作了。为什么它第一次不起作用?谷歌地图是否需要在后台运行才能正常工作?文档中<strong>没有</strong>提到这一点...</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>您必须使用它在移动平台上开始导航。</p>

<pre><code>Uri gmmIntentUri = Uri.parse(&#34;google.navigation:q=28.5675,77.3260&#34;);
Intent mapIntent = new Intent(Intent.ACTION_VIEW, gmmIntentUri);
mapIntent.setPackage(&#34;com.google.android.apps.maps&#34;);
startActivity(mapIntent);
</code></pre>

<p>供进一步阅读
<a href="https://developers.google.com/maps/documentation/urls/android-intents" rel="noreferrer noopener nofollow">https://developers.google.com/maps/documentation/urls/android-intents</a> </p></p>
                                   
                                                <p style="font-size: 20px;">关于android - 打开带有坐标方向的谷歌地图应用程序,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/48224834/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/48224834/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: android - 打开带有坐标方向的谷歌地图应用程序