Questions tagged [itemizedoverlay]

204 questions
0
votes
1 answer

Cannot transfer address for My Location from custom Itemized Overlay class to another Activity

I have a small problem with android maps. I added an ItemizedOverlay class to display my custom marker. When i click on the marker i want to go on another activity on witch i will show the address of the marker witch marks my location. here is the…
0
votes
3 answers

Making ItemizedOverlay onTap action trigger without user input to make a balloon visible when changing to screen activity

I have a MapView in my project where I display a set of items with ItemizedOverlay. When a user taps one of the items a balloon is displayed over it with some info. Now, what I am trying to achieve is when changing to the map activity screen have a…
Joao Heleno
  • 370
  • 3
  • 20
0
votes
1 answer

ConcurrentModificationException in Android

First of all I would apologize for ask again this question, but I don't found a solution for my problem yet. I have a app where I can locate myself with a MyLocationOverlay, and I draw my friends' position with a itemizedOverlay. But the app crashes…
0
votes
1 answer

NullPointerException in using overlays on map

So Im following the exact instructions as given in http://developer.android.com/resources/tutorials/views/hello-mapview.html Problem, is when I click on the overlay, it force closes, and logcat shows 04-21 14:17:46.188: ERROR/AndroidRuntime(1632):…
Achint
  • 817
  • 3
  • 10
  • 24
0
votes
1 answer

Android map overlay issue

I have a set of points(5-10) that needs to be overlayed on the map. I am able to perform the overlay function correctly, the markers corresponding to the points are displayed on the map. But android skips adding the first two points for some…
i_raqz
  • 2,919
  • 10
  • 51
  • 87
0
votes
1 answer

Anyone implemented the BalloonItemizedOverlay (with multiple points) successfully?

i don't get it. i can plot one point successfully with the BalloonItemizedOverlay, however, when i plot multiple points, the background switches from a street view to a solid ocean blue color. the markers are plotted correctly on the overlay and i…
sexitrainer
  • 1,347
  • 2
  • 12
  • 18
0
votes
1 answer

unable to remove marker onTap

I'm developing an Android app where a user can add a marker tapping on the screen; it works, but i have a problem when I want to remove one of the markers by tapping it; here is my code (i followed the NooYawk example): private class PoiOverlay…
havanakoda
  • 203
  • 1
  • 2
  • 7
0
votes
2 answers

How to add another overlay item to a android mapview

I need to add another overlay item to a mapview. I have used the standard android developers guide to google maps. I currently have the mapview within a tab. I would really appreciate any ideas. Thanks. Below are my java classes: public class…
Roger
  • 1
  • 1
  • 1
0
votes
2 answers

ItemizedOverlay Rotate marker and crash

Bit of a strange post as this is something I posted before, thought it was solved but didn't! I have a situation where I need to use a custom Drawable for each marker, the effect I need is to rotate the marker by a set number of degrees and am…
Lee Armstrong
  • 11,420
  • 15
  • 74
  • 122
0
votes
1 answer

Need help regarding placement of map marker

I need your quick assistance for the problem stated below In my android application I show a marker on specific location. Here is my code double latitude = Double.parseDouble(this.latitude); double longitude =…
Prasham
  • 6,646
  • 8
  • 38
  • 55
0
votes
1 answer

Android Map Overlays not working properly

I had it working until i tried to combine it with xml that is parsed from my webpage. No markers get added, yet i get no errors. Below is the new code. Any help is greatly appreciated! LocationBasedServicesV2.java : private MapView myMap; private…
BlakeJ
  • 112
  • 9
0
votes
1 answer

String Overlay in Android

is there anyway of creating a String overlay? Because I'm working on a project which I show the spots in the map, but I wanna also show some String identifing the spot, like an id, for example att, Andre Mariano
Andre Mariano
  • 308
  • 1
  • 3
  • 14
0
votes
1 answer

Android: google maps deactivate overlays

I'm new to Android development and have some question regarding overlays in googlemaps API. What I'm trying to achieve is a class that adds one and only one marker at the position where you tap, I want this overlay to be active only when a button…
0
votes
1 answer

Problem drawing into an ItemizedOverlay MapView on Satellite mode

i subclass the ItemizedOverlay to draw a custom graphics for my items, the problem is that i have the MapView and my custom overlay with a List items... when i construct the items, populate and draw in the "map mode" (setSatellite(false)) works…
Franco
  • 7,385
  • 3
  • 27
  • 22
0
votes
1 answer

Zoom into group of points in the MapActivity (ItemizedOverlay) in Android

If I want all my POIs to be visible in the Map, then I need to adjust two parameters dynamically: Center-Focus of the Map Zoom step I am wondering if there is such a behavior already built into the MapActivity? If not, could you provide me sample…
OneWorld
  • 17,512
  • 21
  • 86
  • 136