我有一个Google Maps Activity ,我想获取用户的位置,
但我想使用的功能:getMyLocation()已过时。

这是我的代码:

@Override
public void onMapReady(GoogleMap googleMap) {
    mMap = googleMap;
    // This function is deprecated
    // What is the new function?
    mMap.getMyLocation();

    // Add a marker in Sydney and move the camera
    LatLng sydney = new LatLng(-34, 151);
    mMap.addMarker(new MarkerOptions().position(sydney).title("Marker in Sydney"));
    mMap.moveCamera(CameraUpdateFactory.newLatLng(sydney));
}

最佳答案

引用the documentation:



IOW,没有替换方法。而是使用其他API查找用户的位置。

关于android - 什么是新的getMyLocation函数而不是已弃用的函数? (Android Java),我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/38286818/

10-09 04:03