1. ホーム
  2. android

[解決済み] フラグメントの getMapAsync()

2022-02-14 21:31:24

質問

FragmentでGoogle Mapを実装するのに苦労しています。

これは、私のフラグメントクラスの部分です。

public class FragmentStoreFinderMap extends Fragment implements OnMapReadyCallback {

// Google Map
private GoogleMap googleMap;
private int i;
@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);

        googleMap = ((SupportMapFragment)getActivity().getSupportFragmentManager().findFragmentById(
              R.id.map)).getMapAsync(this);

getMapAsync(this)でエラーが発生します。Incompatible type(互換性のない型)と言っています。

と書かれています。

required: com.google.android.gms.map.GoogleMap

found: void

ちなみに私のxmlはこちらです。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<fragment class="com.google.android.gms.maps.SupportMapFragment"
    android:id="@+id/map"
    android:name="com.google.android.gms.maps.SupportMapFragment"
    android:layout_width="match_parent"
    android:layout_height="match_parent"/>

</LinearLayout>

解決方法は?

XMLレイアウトでは、次のようにします。

<FrameLayout 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">

<com.google.android.gms.maps.MapView
    android:id="@+id/map"
    android:layout_width="match_parent"
    android:layout_height="match_parent"/>

</FrameLayout>

フラグメントの内部で次のように実装します。

private MapView mapView;
private GoogleMap googleMap;

オーバーライド onCreateView がない場合は onCreateView 以下のコードと同じです。

@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
                         Bundle savedInstanceState) {
    // Inflate the layout for this fragment
    return inflater.inflate(R.layout.your_layout, container, false);
}

オーバーライド onViewCreated() その内部 onViewCreated() これを置く

mapView = (MapView) view.findViewById(R.id.map);
mapView.onCreate(savedInstanceState);
mapView.onResume();
mapView.getMapAsync(this);//when you already implement OnMapReadyCallback in your fragment

をすでに実装している場合 OnMapReadyCallback を、以下のように記述してください。

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

をご覧ください。