我正在尝试将Google Maps添加到我的Android应用中,并具有多个位置指针。我的问题是如何显示方向并获取位置到特定纬度位置之间的距离。
这是我的XML片段
<fragment xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:map="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/map"
android:name="com.google.android.gms.maps.SupportMapFragment"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".ContactDetail" />
这是我显示地图的活动代码
public class ContactDetail extends FragmentActivity implements OnMapReadyCallback {
private GoogleMap mMap;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
this.setContentView(R.layout.view_contact_hd);
//-----------Google Maps-------------------
SupportMapFragment mapFragment = (SupportMapFragment) getSupportFragmentManager()
.findFragmentById(R.id.map);
mapFragment.getMapAsync(this);
//-----------------------------------------------
} //ENd of savedInstanceState
@Override
public void onMapReady(GoogleMap googleMap) {
mMap = googleMap;
LatLng pp = new LatLng(23.72553, 90.41577);
mMap.getUiSettings().setZoomControlsEnabled(true);
mMap.addMarker(new MarkerOptions().position(pp).title("Sreebordi Branch"));
mMap.moveCamera(CameraUpdateFactory.newLatLngZoom(pp, 14));
}
}