Adithya
Adithya

Reputation: 1

Android Simple Map Application

Hi i have a developed a simple map application based on the tutorial from android developers site and have generated the API key and run in the google emulator still i'm not getting my map displayed in the emulator only grids are shown......... can anyone help me on this

thank you......

Upvotes: 0

Views: 524

Answers (1)

Miral Dhokiya
Miral Dhokiya

Reputation: 1710

Make Sure that you have Implement Following things.

  1. Make Sure that you have selected google Api

  2. Add following permissions in manifest file

    uses-permission android:name="android.permission.INTERNET" 
    uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" 
    uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"    
    
    uses-library android:name="com.google.android.maps"
    
  3. extend MapActivity in your java class

  4. API key but as you said you have already generated a key .

Try the above given.. and hope now you will get the solution.

Upvotes: 1

Related Questions