How to implement Google maps in android without Google play service?

897 views Asked by At

I have implemented Google maps in my android application using Google play service and it is working fine.I have tried the same APK installed with Blackberry,so all the things working fine but maps not working.The problem is Google play service is not available in Blackberry. So if some device not support Google play service, I have to go for an alternative solution. I search lot but could not find proper solution.

if(isGooglePlayServiceAvilable){
 //implement maps with GooglePlayService(I did this part)
}else{
 //Please suggest me an alternative solution for this.( :( )
}
1

There are 1 answers

0
worawee.s On

For me, I will use - ImageView to display the google static map instead. - Add some on screen message to notify user about the cripple functionality of missing Play Services. - Add OnClick on the static map ImageView to open google mapĀ (web) with Intent

^^