Closed GoogleCodeExporter closed 8 years ago
I never got this behaviour on the demo app.
Is it using the demo app, or following exactly the tutorial, or using your
specific code?
In last case, can you provide code?
What are version of the Android SDK and AVD?
Original comment by mathieu....@gmail.com
on 14 Jan 2013 at 11:25
Have you got an "shape path too large exception" ?
Try disabling hardware acceleration :
mMapView.setLayerType(View.LAYER_TYPE_SOFTWARE, null);
Original comment by jerome.m...@gmail.com
on 24 Jan 2013 at 9:29
Thanx, jerome!
Your workaround solved the large pathes' problems for me. Unfortunately, the UX
became a bit worse and this method only works on android 3+ :-(
Original comment by riwnoden...@gmail.com
on 26 Feb 2013 at 2:40
Does it possible to work with RoadOverlay without disabling hardware
acceleration ? In my app, routes disappear sometimes and cause crash at higher
level zoom. With hardware acceleration disabling, everything is ok, but the map
isn't smooth. Any fix/hack possible ?
Thanks in advance.
Original comment by vinc...@djmweb.be
on 13 Mar 2014 at 4:11
Same issue than Issue 68.
2 workarounds:
- Either target SDK < 3 (meaning no HW acceleration)
- Or if SDK >= 3 is needed, explicitely disable HW acceleration. The best way
to do that is: mMapView.setLayerType(View.LAYER_TYPE_SOFTWARE, null);
(as it only disable HW acceleration for the mapview, and for nothing else)
Original comment by mathieu....@gmail.com
on 25 Jul 2014 at 4:22
Original issue reported on code.google.com by
fbo%huma...@gtempaccount.com
on 10 Jan 2013 at 4:29Attachments: