0

Here's my code , Why GoogleMap class is not importing from library?

import android.app.Activity;
import android.os.Bundle;
public class FirstMap extends Activity {

    private GoogleMap map;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_firstmap);

        map = ((SupportMapFragment)getFragmentManager().findFragmentById(R.id.map)).getMap();
        map.setMapType(GoogleMap.MAP_TYPE_SATELLITE);
    }
}
Janki Gadhiya
  • 4,492
  • 2
  • 29
  • 59
Giri
  • 9
  • 4

0 Answers0