Android Google Map可以通过使用Polyline来在当前位置和另一个固定位置之间画一条线。Polyline是Google Map API提供的一种图形对象,用于绘制直线或折线。
要在当前位置和另一个固定位置之间画一条线,可以按照以下步骤进行操作:
implementation 'com.google.android.gms:play-services-maps:17.0.0'
<com.google.android.gms.maps.MapView
android:id="@+id/mapView"
android:layout_width="match_parent"
android:layout_height="match_parent" />
private GoogleMap googleMap;
private MapView mapView;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
mapView = findViewById(R.id.mapView);
mapView.onCreate(savedInstanceState);
mapView.getMapAsync(new OnMapReadyCallback() {
@Override
public void onMapReady(GoogleMap map) {
googleMap = map;
// 设置地图属性和监听器
// ...
}
});
}
@Override
protected void onResume() {
super.onResume();
mapView.onResume();
}
@Override
protected void onPause() {
super.onPause();
mapView.onPause();
}
@Override
protected void onDestroy() {
super.onDestroy();
mapView.onDestroy();
}
PolylineOptions polylineOptions = new PolylineOptions()
.add(new LatLng(currentLatitude, currentLongitude)) // 当前位置的经纬度
.add(new LatLng(fixedLatitude, fixedLongitude)) // 固定位置的经纬度
.width(5) // 线宽
.color(Color.RED); // 线的颜色
Polyline polyline = googleMap.addPolyline(polylineOptions);
以上代码中的currentLatitude、currentLongitude表示当前位置的经纬度,fixedLatitude、fixedLongitude表示固定位置的经纬度。可以根据实际情况替换这些值。
通过以上步骤,就可以在Android Google Map上画一条连接当前位置和另一个固定位置的线了。
腾讯云相关产品和产品介绍链接地址:
领取专属 10元无门槛券
手把手带您无忧上云