[android-developers] Re: Migrating existing app to Google Maps API v2

2012-12-06 Thread lbendlin
Is anyone here concerned about the need for OpenGL v2? Doesn't that exclude a lot of devices from being able to run the new maps? On Monday, December 3, 2012 10:13:08 PM UTC-5, JP wrote: I started migrating an Android project from the old Google Maps API to v2. Or an attempt at that, rather.

[android-developers] Re: Migrating existing app to Google Maps API v2

2012-12-06 Thread RichardC
90% support OpenGL ES 2.0 http://developer.android.com/about/dashboards/index.html (last item) On Thursday, December 6, 2012 8:10:54 PM UTC, lbendlin wrote: Is anyone here concerned about the need for OpenGL v2? Doesn't that exclude a lot of devices from being able to run the new maps? On

[android-developers] Re: Migrating existing app to Google Maps API v2

2012-12-05 Thread Zsolt Vasvari
When I said trivial, I was only referring to the Fragment vs. Activity aspect. On Wednesday, December 5, 2012 4:43:30 AM UTC+8, Spiral123 wrote: I don't think its as trivial as you suspect I'm afraid. The API is new, not just an upgrade of the old one. We now have markers, polylines and

[android-developers] Re: Migrating existing app to Google Maps API v2

2012-12-04 Thread JP
On Dec 3, 10:27 pm, Zsolt Vasvari zvasv...@gmail.com wrote: GeoPoint - LatLng presumably Overlay - GroundOverlay (?) Thanks Zsolt, it's going to be an interesting exercise for everybody... -- You received this message because you are subscribed to the Google Groups Android Developers

[android-developers] Re: Migrating existing app to Google Maps API v2

2012-12-04 Thread Spiral123
I don't think its as trivial as you suspect I'm afraid. The API is new, not just an upgrade of the old one. We now have markers, polylines and polygons and overlays have become TileOverlays. I'm sure there are going to be ways to minimize the migration effort from old to new but I don't

[android-developers] Re: Migrating existing app to Google Maps API v2

2012-12-03 Thread Zsolt Vasvari
3) You looking for the docs? It's installed locally: $SDK_PATH$/extras/google/google_play_services/docs/reference/com/google/android/gms/maps/package-summary.html On Tuesday, December 4, 2012 11:13:08 AM UTC+8, JP wrote: I started migrating an Android project from the old Google Maps API to

[android-developers] Re: Migrating existing app to Google Maps API v2

2012-12-03 Thread Zsolt Vasvari
I assume the replacement for MapActivity is MapFragment/SupportMapFragment. Just add one of those to your Activity/FragmentActivity. It's a trivial change. On Tuesday, December 4, 2012 11:13:08 AM UTC+8, JP wrote: I started migrating an Android project from the old Google Maps API to v2.

[android-developers] Re: Migrating existing app to Google Maps API v2

2012-12-03 Thread Zsolt Vasvari
GeoPoint - LatLng presumably Overlay - GroundOverlay (?) On Tuesday, December 4, 2012 11:13:08 AM UTC+8, JP wrote: I started migrating an Android project from the old Google Maps API to v2. Or an attempt at that, rather. A few issues with the brand new documentation aside*), there seems to