0

Googleマップv2を実装しようとしましたが、エラーしかありません。私は次のチュートリアルに従いました : http://www.vogella.com/articles/AndroidGoogleMaps/article.htmlhttp://blog-emildesign.rhcloud.com/?p=435チュートリアル (Google API 8 を使用しているため、FragmentManager の代わりに SupportFragmentManager など、何かを変更する必要がある場合がありました) 私のアクティビティ (Lars Vogel の例を変更):

import android.os.Bundle;
import android.support.v4.app.FragmentActivity;

import com.google.android.gms.common.GooglePlayServicesNotAvailableException;
import com.google.android.gms.maps.CameraUpdateFactory;
import com.google.android.gms.maps.GoogleMap;
import com.google.android.gms.maps.MapsInitializer;
import com.google.android.gms.maps.SupportMapFragment;
import com.google.android.gms.maps.model.BitmapDescriptorFactory;
import com.google.android.gms.maps.model.LatLng;
import com.google.android.gms.maps.model.Marker;
import com.google.android.gms.maps.model.MarkerOptions;



public class MapActivity extends FragmentActivity {

      static final LatLng HAMBURG = new LatLng(53.558, 9.927);
  static final LatLng KIEL = new LatLng(53.551, 9.993);
  private SupportMapFragment map;
  private GoogleMap mMap;

  @Override
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_map);
    try {
        MapsInitializer.initialize(this);
    } catch (GooglePlayServicesNotAvailableException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    }
    map = ((SupportMapFragment) getSupportFragmentManager().findFragmentById(R.id.map));
    mMap = map.getMap();
    Marker hamburg = mMap.addMarker(new MarkerOptions().position(HAMBURG)
        .title("Hamburg"));
    Marker kiel = mMap.addMarker(new MarkerOptions()
        .position(KIEL)
        .title("Kiel")
        .snippet("Kiel is cool")
        .icon(BitmapDescriptorFactory
            .fromResource(R.drawable.ic_launcher)));


    // Move the camera instantly to hamburg with a zoom of 15.
    mMap.moveCamera(CameraUpdateFactory.newLatLngZoom(HAMBURG, 15));

    // Zoom in, animating the camera.
    mMap.animateCamera(CameraUpdateFactory.zoomTo(10), 2000, null);
  }

}

私のレイアウト:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:map="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MapActivity" >

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

</RelativeLayout> 

Marker hamburgでNPEを受けました。この行をコメントアウトすると、Marker kiel で次のエラーが発生します - ibitmapdescriptorfactory が初期化されていません。したがって、Marker の .icon メソッドの問題だと思います。ハンブルグの場合は null/default で、2 番目の場合は初期化されていません。これを解決する方法がわかりません。

4

4 に答える 4

2

これで確認する必要があります:

GoogleMap map;    

map = ((SupportMapFragment) getSupportFragmentManager().findFragmentById(R.id.map))
    .getMap();

if (map !=null){
  Marker hamburg = map.addMarker(new MarkerOptions().position(HAMBURG)
      .title("Hamburg"));
  Marker kiel = map.addMarker(new MarkerOptions()
      .position(KIEL)
      .title("Kiel")
      .snippet("Kiel is cool")
      .icon(BitmapDescriptorFactory
          .fromResource(R.drawable.ic_launcher)));
}
于 2013-09-13T13:26:44.913 に答える
1

試す......

mMap = ((SupportMapFragment) getFragmentManager().findFragmentById(R.id.map)).getExtendedMap();
于 2013-09-13T13:22:15.220 に答える
1

必要なのは、マップの初期化のための一連の null チェック、このようなものだけだと思います。

GoogleMap mMap = null;

@Override
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_map);
//map part 
        if(mMap == null) {
            mMap = ((SupportMapFragment) getSupportFragmentManager().findFragmentById(R.id.map)).getMap();
            if(gMap != null) {
                gMap.setMapType(GoogleMap.MAP_TYPE_NORMAL);
                    Marker hamburg = mMap.addMarker(new MarkerOptions().position(HAMBURG)
    .title("Hamburg"));
                }
        }
}
于 2013-09-13T13:37:32.207 に答える