I'm guessing that you are trying to open the native Android Google Maps app with a web url and hoping that the native app is going to fetch down your custom map and display it locally.
There is no intent that I am aware of that does that PREMIUM or not. I think you need to create an intent that will target a web browser on the device with your URL, or load it into a webview within your app. On Friday, November 30, 2012 4:47:57 PM UTC-5, JHandal wrote: > > Sign Up for the Google Maps API > > The API keys generated by this page are no longer available > > I am using this tool to create my own map > > > http://gmaps-samples.googlecode.com/svn/trunk/spreadsheetsmapwizard/makecustommap.htm > > I need to access this map from my Android App > > The Maps API requires a free API key that's associated with your Google > Account <http://www.google.com/accounts/> and the URL of your web site. > You can sign up for one here<http://code.google.com/apis/maps/signup.html>, > and substitute it as the value of the "&key=" parameter in the script tag > below. > > String MyOwnMap = " > https://maps.google.com/maps/ms?msid=214217748623619348483.0004c4c2e5e1da43c0f90&msa=0 > "; > > > intent.setComponent(ComponentName.unflattenFromString("com.google.android.apps.maps/com.google.android.maps.MapsActivity")); > > Maybe some PREMIUM App from GOOGLE ? > > > > -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

