0

在 Android 中,我使用以下代码段加载 Google 地图:

Uri geoURI = Uri.parse("http://maps.google.com/maps?saddr=" + source +  &daddr=" + destination);
Intent mapIntent = new Intent(Intent.ACTION_VIEW, geoURI);
startActivity(mapIntent);

通过 Wifi 或 3G 网络,该功能可以正常工作,但通过我们的 APN,它会失败。链接是否重定向到其他地址或转到我还需要向我们的 APN 注册的某个域?

4

0 回答 0