无法在Fragment中解决getMapAsync

时间:2017-02-16 06:13:27

标签: android google-maps fragment

我想获取用户在地图中的当前位置我不能将'this'作为mapAsync函数中的参数传递 我在getMapAsync(this)收到错误。它告诉不兼容的类型。

必需com.google.android.gms.map.GoogleMap

发现void how can I solve this issue ?

我也试过getActivity.getApplicationContext()但它也没用! 我在这里提供代码请检查

 public class MapsActivity extends Fragment implements
    OnMapReadyCallback,
    View.OnClickListener ,
    GoogleApiClient.ConnectionCallbacks,
    GoogleApiClient.OnConnectionFailedListener,
    LocationListener {

private GoogleMap map;
private MapView mapView;
private boolean mapsSupported = true;
private GoogleApiClient mGoogleApiClient;
MapFragment mapFragment;
@Override
public void onActivityCreated(@Nullable Bundle savedInstanceState) {
    super.onActivityCreated(savedInstanceState);
    MapsInitializer.initialize(getActivity());

    if (mapView != null) {
        mapView.onCreate(savedInstanceState);
    }
    initializeMap();
}
private void initializeMap() {
    SupportMapFragment mapFragment = (SupportMapFragment) getActivity().getSupportFragmentManager()
            .findFragmentById(R.id.map);
    //mapFragment = (SupportMapFragment)getChildFragmentManager().findFragmentById(R.id.map);
    if (map == null) {
        **map = mapFragment.getMapAsync(this);**
    }
    // Enable Zoom
    map.getUiSettings().setZoomGesturesEnabled(true);
    //set Map TYPE
    map.setMapType(GoogleMap.MAP_TYPE_NORMAL);
    //enable Current location Button
    map.setMyLocationEnabled(true);
    LocationManager locationManager = (LocationManager)getActivity().getSystemService(getActivity().LOCATION_SERVICE);
    Criteria criteria = new Criteria();
    String bestProvider = locationManager.getBestProvider(criteria, true);
    if (ActivityCompat.checkSelfPermission(getContext(), Manifest.permission.ACCESS_FINE_LOCATION) != PackageManager.PERMISSION_GRANTED && ActivityCompat.checkSelfPermission(getActivity(), Manifest.permission.ACCESS_COARSE_LOCATION) != PackageManager.PERMISSION_GRANTED) {
        return;
    }
    Location location = locationManager.getLastKnownLocation(bestProvider);
    if (location != null) {
        onLocationChanged(location);
    }
    locationManager.requestLocationUpdates(bestProvider, 2000, 0, this);
}

Maps.xml

<fragment xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/map"
tools:context=".MapsActivity"
android:name="com.google.android.gms.maps.SupportMapFragment"
tools:layout="@layout/abc_action_menu_layout"/>

<Button

    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Nearby Resturants"
    android:id="@+id/btn_rest"
    android:layout_gravity="bottom" />


   </RelativeLayout>

3 个答案:

答案 0 :(得分:3)

Fragment onCreateView()

中调用您的代码
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {

    View viewOBJ= inflater.inflate(R.layout.xxx, null, false);

     SupportMapFragment mapFragment = (SupportMapFragment) getActivity().getSupportFragmentManager().findFragmentById(R.id.map);
     mapFragment.getMapAsync(this);
     return viewOBJ;
}

有关详情,请参阅 getMapAsync() in Fragment

答案 1 :(得分:1)

试试此代码

try {
        if (map == null) {
            ((MapView) getView().findViewById(R.id.map)).getMapAsync(this);

        }
    }catch (NullPointerException e){
        e.printStackTrace();
    }

希望这有帮助!

答案 2 :(得分:1)

您缺少的是getMapAsync是异步函数。这意味着它不会立即返回地图对象。所以你不能只写map = mapFragment.getMapAsync();

相反,你必须这样做:

private void initializeMap() {
  SupportMapFragment mapFragment = (SupportMapFragment) getActivity().getSupportFragmentManager()
        .findFragmentById(R.id.map);
  if (map == null) {
    mapFragment.getMapAsync(this);
  }
}

@Override
public void onMapReady(GoogleMap googleMap) {
    map = googleMap;

    // Enable Zoom
    map.getUiSettings().setZoomGesturesEnabled(true);
    //set Map TYPE
    map.setMapType(GoogleMap.MAP_TYPE_NORMAL);
    //enable Current location Button
    map.setMyLocationEnabled(true);

    //... rest of your map related code.
}

这里,当地图对象可用时调用onMapReady,因此其余的初始化代码将会到达那里。您还必须实施OnMapReadyCallback,但我们已经看到您已经这样做了。