首页 > 解决方案 > Adding markers from Google Maps in Asynctask

问题描述

I want to add a marker to Google Maps after I've done something in AsyncTask. However, when I attempt to add a marker onPostExecute after the operation, An error will occur:

 java.lang.NullPointerException: Attempt to invoke virtual method 'com.google.android.gms.maps.model.Marker com.google.android.gms.maps.GoogleMap.addMarker(com.google.android.gms.maps.model.MarkerOptions)' on a null object reference

I searched for this problem, but it didn't help. How do I add a marker inside OnPostExecute in Asyncask?

This is an arrangement of my code. It works normally until DoInBackground.

 public class MapsActivity extends FragmentActivity implements OnMapReadyCallback {
GoogleMap mMap;
Document doc = null;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_maps);
    SupportMapFragment mapFragment = (SupportMapFragment) getSupportFragmentManager()
            .findFragmentById(R.id.map);
    mapFragment.getMapAsync(this);
}
@Override
public void onMapReady(final GoogleMap googleMap) {
    GetXMLTask task = new GetXMLTask(getApplicationContext());
    task.execute("http://openapi.its.go.kr:8081/api/NCCTVInfo?key=1526041502162&ReqType=2&MinX=" + 126 + "&MaxX=" + 127 + "&MinY=" + 35 + "&MaxY=" + 38 + "&type=ex");
}

@SuppressLint("NewApi")
private class GetXMLTask extends AsyncTask<String, Void, Document> {

    public GetXMLTask(Context applicationContext) {
    }

    @Override
    protected Document doInBackground(String... urls) {
        URL url;

        try {
        } catch (Exception e) {
        }
        return doc;
    }

    @Override
    protected void onPostExecute(Document doc) {
        MarkerOptions makerOptions = new MarkerOptions();
        makerOptions
                .position(new LatLng(0, 0))
                .title("title");
       mMap.addMarker(makerOptions);  //<=====ERROR=====
        }
    }
}

标签: androidgoogle-mapsandroid-asynctask

解决方案


mMap object didn't set anything. So it will return null. You can set like that:

@Override
public void onMapReady(final GoogleMap googleMap) {
    mMap = googleMap;
    GetXMLTask task = new GetXMLTask(getApplicationContext());
    task.execute("http://openapi.its.go.kr:8081/api/NCCTVInfo?key=1526041502162&ReqType=2&MinX=" + 126 + "&MaxX=" + 127 + "&MinY=" + 35 + "&MaxY=" + 38 + "&type=ex");
}

推荐阅读