JSON 方向解析器是在两个 GPS 坐标之间绘制方向的唯一方法吗?
Is JSON direction parser the only way to draw directions between two GPS co-ordinates?
我正在构建一个应用程序,它必须获取 phone 的当前 GPS 位置,并且根据当前位置与其他 5 个位置之间的差异,该应用程序必须提供从呈现到最近的位置。
我是这个编程领域的菜鸟。所以我发现的只是使用 JSON 解析器代码。我通过浏览本网站和许多其他网站上的所有问答消除了所有错误,但我得到的只是一张世界地图。
我什至发现一个 class 可以做到这一点,但仍然没有成功。所以我要问的是,是否有一个简单的 class 可以做到这一点(即提供 2 个静态 GPS 位置之间的方向)?
如果有人需要,我会提出 classes(如果您正在响应此 Que,您会知道 DirectionJSON 解析器 class)。
找到了。
button = (Button) this.findViewById(R.id.button1);
button.setOnClickListener(new OnClickListener() {
public void onClick(View v) {
String uri = String.format(Locale.ENGLISH, "http://maps.google.com/maps?daddr=%f,%f (%s)", destinationLatitude, destinationLongitude, "Nearest Hospital");
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(uri));
intent.setClassName("com.google.android.apps.maps", "com.google.android.maps.MapsActivity");
startActivity(intent);
}
});
我正在构建一个应用程序,它必须获取 phone 的当前 GPS 位置,并且根据当前位置与其他 5 个位置之间的差异,该应用程序必须提供从呈现到最近的位置。
我是这个编程领域的菜鸟。所以我发现的只是使用 JSON 解析器代码。我通过浏览本网站和许多其他网站上的所有问答消除了所有错误,但我得到的只是一张世界地图。
我什至发现一个 class 可以做到这一点,但仍然没有成功。所以我要问的是,是否有一个简单的 class 可以做到这一点(即提供 2 个静态 GPS 位置之间的方向)?
如果有人需要,我会提出 classes(如果您正在响应此 Que,您会知道 DirectionJSON 解析器 class)。
找到了。
button = (Button) this.findViewById(R.id.button1);
button.setOnClickListener(new OnClickListener() {
public void onClick(View v) {
String uri = String.format(Locale.ENGLISH, "http://maps.google.com/maps?daddr=%f,%f (%s)", destinationLatitude, destinationLongitude, "Nearest Hospital");
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(uri));
intent.setClassName("com.google.android.apps.maps", "com.google.android.maps.MapsActivity");
startActivity(intent);
}
});