[android-developers] MapView Overlay problem

2011-06-30 Thread Felix Garcia Lainez
Hello, The case is that i want to show a route on a MapView. Something simple at first sight, simply i created a class that extends overlay and implement draw method. On this method i iterate over an array of GeoPoints and using a canvas y connect all points. It works fine more or less, but i am

Re: [android-developers] MapView Overlay problem

2011-06-30 Thread TreKing
On Thu, Jun 30, 2011 at 4:46 PM, Felix Garcia Lainez fgarcialai...@gmail.com wrote: On this method i iterate over an array of GeoPoints and using a canvas y connect all points. What's your actual code? It works fine more or less, but i am having issues when drawing long routes with many

[android-developers] MapView Overlay problem

2010-01-05 Thread Stefan
hello, i have an activity with a MapView ad overlays. If i start a new activity and go back to my Activity with the map, i only see the map without my overlays. How can i save my overlays?? The mapView.onSaveInstanceState() does not save the overlays, does it? Or have i implement something wrong