如何设置gps位置

时间:2018-06-08 08:28:20

标签: android google-maps location android-gps

我从第三方来源获取GPS坐标。我想在我的Android手机上设置像我当前位置的坐标。在那之后,我想打开谷歌地图应用程序,看看我是从第三方来源收到的。

1 个答案:

答案 0 :(得分:0)

您无法更改设备的GPS坐标。您可以做的是,在指定位置显示地图,如下所示:

var Migrations = artifacts.require("./Migrations.sol");

module.exports = function(deployer) {
  deployer.deploy(Migrations);
};

您还可以添加查询参数Uri gmmIntentUri = Uri.parse("geo:<latitude>,<longitude>"); Intent mapIntent = new Intent(Intent.ACTION_VIEW, gmmIntentUri); mapIntent.setPackage("com.google.android.apps.maps"); if (mapIntent.resolveActivity(getPackageManager()) != null) { startActivity(mapIntent); } 以指示缩放级别:

z