Is anyone able to get streetview working?

i was able to start the streetview map but the map wont display and
gave an error that says 'invalid panorama'

The only documentation about street view i can found is
http://code.google.com/android/reference/available-intents.html

    private static final String STREET_VIEW_FORMAT =
"google.streetview:cbll={0},{1}&cbp=1,0,-20,1.0&mz=test";

            GeoPoint pt = listing.getGeopoint();
            Intent i = new Intent(Intent.ACTION_VIEW, Uri.parse(
                    MessageFormat.format(STREET_VIEW_FORMAT,
pt.getLatitudeE6()/1000000f, pt.getLongitudeE6()/1000000f)));
            startActivityForResult(i, RESULT_OK);
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to