Re: [android-developers] Adding markers with different drawables on google map in android

2012-06-02 Thread mehedi hasan khan
? Can you give an example of what points you are plotting to? On Jun 1, 2012 3:37 PM, mehedi hasan khan mehedi.mail...@gmail.com wrote: I've zoomed it manually and searched for the pins.still can't see any other pin than the source and the last added one.Zoomed the map as far as the zoom

Re: [android-developers] Adding markers with different drawables on google map in android

2012-06-02 Thread mehedi hasan khan
and longitude are not transposed? (I had an issue when creating a KML output file: I thought that because my label said latitude it was correct, and the bug only threw itself into light when the point appeared over the sea!) On 2 June 2012 07:33, mehedi hasan khan mehedi.mail...@gmail.com wrote: Here

Re: [android-developers] Adding markers with different drawables on google map in android

2012-06-01 Thread mehedi hasan khan
will u plz explain? I've used mapView.getController().zoomToSpan(sourcemarker.getLatSpanE6(), sourcemarker.getLonSpanE6()); won't that do the zooming? On Fri, Jun 1, 2012 at 12:55 PM, TreKing treking...@gmail.com wrote: On Fri, Jun 1, 2012 at 12:55 AM, Mehedi mehedi.mail...@gmail.com wrote

[android-developers] Adding markers with different drawables on google map in android

2012-05-31 Thread Mehedi
Hi, I am trying to plot some markers on a google map.There are 2 different marker drawables, the orange one is for the user's location and green ones are for all other points.I have followed this source code from

Re: [android-developers] Adding markers with different drawables on google map in android

2012-05-31 Thread mehedi hasan khan
yes all of them are on different locations.I've checked that twice. On Fri, Jun 1, 2012 at 11:14 AM, TreKing treking...@gmail.com wrote: On Fri, Jun 1, 2012 at 12:01 AM, Mehedi mehedi.mail...@gmail.com wrote: But when I run the app on an emulator I am only seeing 2 markers,the 1st

Re: [android-developers] Adding markers with different drawables on google map in android

2012-05-31 Thread Mehedi
@TreKing Yes I've checked, all the locations are different. -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to

Re: [android-developers] Adding markers with different drawables on google map in android

2012-05-31 Thread Mehedi
The items collection is correctI am populating the items arraylist in the constructor of the DoItemizedOverlay class and the Log after that shows that it has 20 items in it. On Friday, June 1, 2012 11:32:45 AM UTC+6, TreKing wrote: When size() and createItem() get called, the items

[android-developers] Getting 'java.lang.IllegalArgumentException: Can't use FLAG_RECEIVER_BOOT_UPGRADE here' in device running android 2.3.3

2012-04-22 Thread Mehedi
I have an activity which lets user to schedule an event by choosing the date and time.I have done it using the AlarmManager PendingIntent p=PendingIntent.getBroadcast(context, id, i, PendingIntent.FLAG_CANCEL_CURRENT); AlarmManager alarms = (AlarmManager) getSystemService(Context.ALARM_SERVICE);