通过意图传递 Latitude/longitude

Pass Latitude/longitude via intent

我收集了不同经纬度的地点。 我想知道我是否可以将它们设置为数组字符串,例如(String lat = {“9385853.0094”,“23123123.234”)然后通过意图传递它们,以便我可以使用 google 地图显示位置 lat/long 在新 activity 中。

例如,您有两个 类,名为 Maps.java 和 Routes.java。

使用以下代码传递 LatLng

LatLng fromPosition = new LatLng(9385853.0094, 23123123.234 );
LatLng toPosition = new LatLng(11.145315551, 99.333455333);

Bundle args = new Bundle();
args.putParcelable("from_position", fromPosition);
args.putParcelable("to_position", toPosition);

i.putExtra("bundle", args);

Intent i= new Intent(Maps.this, Routes.class);
        startActivity(i);

并在接收端使用如下代码

Bundle bundle = getIntent().getParcelableExtra("bundle");
LatLng fromPosition = bundle.getParcelable("from_position");
LatLng toPosition = bundle.getParcelable("to_position");

希望对您有所帮助!