@Treking: well, that should be the best solution. where may I find
info on how to make that?

@Frank: in fact is 1 overlay with 400 items. Code is like this:



       while(cursor.moveToNext()){
                        p = new GeoPoint(
                        (int) (Double.parseDouble(cursor.getString(3))
* 1E6),
                        (int) (Double.parseDouble(cursor.getString(4))
* 1E6));
                        overlayitem3 = new OverlayItem(p, cursor.getString(1),
cursor.getString(2));
                itemizedOverlay.addOverlay(overlayitem3);
        }

        mapOverlays.add(itemizedOverlay);

On 27 oct, 20:59, Frank Weiss <[email protected]> wrote:
> Are you using 400 overlays with one item each instead of 1 overlay with 400
> items?

-- 
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