1
vote
1answer
25 views

Drop marker slowly from top of screen to location on android map V2

I am using android maps v2works fine I can add and remove markers onLong Touch on locations. Problem: I would like to drop the marker slowly into the touched location i.e. I want the user to see the ...
0
votes
0answers
28 views

Android google v2 marker

i have problem with google map v2 marker so.. create marker on map works fine but... I after 12s change position and i want marken setPosition not to create new marker so my code Timer timer = new ...
1
vote
1answer
188 views

Avoid Marker (Google Maps for Android API V2) to center itself on map on click

I have geolocated events in my Map that I'm adding with Markers, and when I click on them, I just want them to change without being centered. Is there any way to override the markers being centered ...
0
votes
1answer
151 views

How to set a Google Maps Marker Icon based on current map filters and a combination of HashMap strings the marker has

It would be very helpful if anyone has any suggestions on the most efficient approach for implementing code to set a map marker icon based on: Filters defined by the user dictating what markers to ...
0
votes
1answer
88 views

Set text over android google maps merkers

Any tips on how i can set Text Over android google maps (v2) default marker? for example i want to set the char 'A' inside(over) the marker (not snippest and not title).
0
votes
1answer
301 views

How to save map markers in sql lite database with notes?

I have so far figured out how to get a marker on the screen by tapping, and it shows the longitude and latitude numbers, I wish to be able to save markers in a the SQL lite database with a note on the ...
0
votes
2answers
434 views

In Android Maps V2, is there a way to control the positioning of the map when a marker is tapped on?

Currently, by default, when tapping a marker, the map centers on the marker. Is there a way to control that, introduce some offset values. I have a popup info window that is a little taller at times ...
1
vote
1answer
287 views

How can I customize the width of a marker popup info window in Android Maps V2

I am using Android Maps V2 and have a set of markers that display custom content in the popup info windows, on tap. I used a custom implementation of the InfoWindowAdapter to feed the popup dynamic ...
0
votes
0answers
123 views

Show markers depending on zoom level?

I have an app where I show a lot of markers My question is: can I choose a group of markers shows in diferent zoom level? That is, more zoom in, more marks. Because Showing all markers in map with ...
2
votes
1answer
101 views

Intercept a click on the built-in myLocation-Button of a GoogleMap

Is there any way that I can intercept/catch a click on the myLocation-Button on a GoogleMap (API v2)? The reason I need this is this: I calculate distances to my map markers. The default reference ...