要解决Android Google Map标记物没有正确重新定位的问题,可以尝试以下解决方法:
implementation 'com.google.android.gms:play-services-maps:17.0.0'
map.clear()
方法清除地图上的所有标记物,然后再重新添加。map.clear();
MarkerOptions markerOptions = new MarkerOptions().position(newLatLng).title("标记物标题");
map.addMarker(markerOptions);
OnMyLocationChangeListener
监听器来监听定位变化,并在定位成功后更新标记物位置。map.setOnMyLocationChangeListener(new GoogleMap.OnMyLocationChangeListener() {
@Override
public void onMyLocationChange(Location location) {
LatLng newLatLng = new LatLng(location.getLatitude(), location.getLongitude());
MarkerOptions markerOptions = new MarkerOptions().position(newLatLng).title("标记物标题");
map.addMarker(markerOptions);
}
});
// 在获取到新的位置信息后
LatLng newLatLng = new LatLng(latitude, longitude);
MarkerOptions markerOptions = new MarkerOptions().position(newLatLng).title("标记物标题");
map.addMarker(markerOptions);
请注意替换代码示例中的newLatLng
、latitude
和longitude
等变量为实际的位置信息。
通过以上解决方法,您应该能够正确重新定位Android Google Map标记物。