gpt4 book ai didi

android - 在当前位置 Google map 上显示蓝点图标

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:19:58 25 4
gpt4 key购买 nike

当我的蓝点图标消失时,我感到很困惑。过去是我可以显示蓝点图标。但现在它只是将相机缩放到我当前的位置,而没有蓝点图标。

这是我的代码:

private void handleNewLocation(Location location) {
Log.d(TAG, location.toString());
double currentLatitude = location.getLatitude();
double currentLongitude = location.getLongitude();
LatLng latLng = new LatLng(currentLatitude, currentLongitude);
mMap.moveCamera(CameraUpdateFactory.newLatLng(latLng));
mMap.animateCamera(CameraUpdateFactory.newLatLngZoom(latLng, 21));
}

enter image description here

最佳答案

您需要做如下操作:

GoogleMap myMap;
myMap.setMyLocationEnabled(true);

你可以在我的github上获得所有示例项目代码here并尝试自己:)

关于android - 在当前位置 Google map 上显示蓝点图标,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30440777/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com