The itemizedoverlay tag has no wiki summary.
1
vote
1answer
108 views
How to effectively use Google Maps API V2(with MapFragment, Google Map, Marker etc) to an older app that uses API V1(with MapView, GeoPoint etc),
I was working on a Google Map based project for over 6 months. I was using Google Maps API V1 and its developer API keys. While I was trying to release the app I understood that Google API V1 got ...
0
votes
1answer
30 views
Want to solve deprecation issues in the Google map API v2
I have a project which is currently using the Google map API v1. Now i need to change it into version two. for that one of my customized itemized-overlay class should replace with Marker class with ...
0
votes
0answers
46 views
Google Maps popup infobox when method onTap is called with events
Hello dear programmers,
At the moment I have this simple AlertDialog when the user clicks in an overlay on the map:
@Override
protected boolean onTap(int index) {
OverlayItem item = ...
0
votes
0answers
21 views
How to plot location on mapsforge?
I have an application which requires plotting location on mapsforge ? One of these location will be my current location and second location is store location which I have obtained.Now my problem is ...
0
votes
1answer
49 views
Problems updating user overlay drawable when GPS location has changed
I'm using Mapsforge to show a offline map and i want to display in realtime the user GPS location. I have a Overlay class that represents the user location on the map showing a drawable.
When the ...
0
votes
0answers
45 views
ItemizedOverlayWithBubble OnSingleTapUp for Bubble only not Marker
I am using OSM droid with the bonus pack to place map markers which when clicked cause an ItemizedOverlayWithBubble to appear with title description and icon in it. This bit works well.
I have sub ...
0
votes
0answers
35 views
how to intent and toast from myItemizedOverlay
i have mapview with custom itemizedoverlay. i put two button at info window. my question is my code at neural button right? i put intent and toast but it didnt show. here is my code. thnx.
public ...
0
votes
0answers
119 views
Markers superposition in osmdroid ItemizedIconOverlay
In the time i'm working on Android project with map engine osmdroid-android-3.0.8
Faced with some mistery distortion of markers placed on ItemizedIconOverlay (slightly extended).
I need to show ...
0
votes
2answers
100 views
.add() method in List is not applicable for argument
I'm trying to use mapsforge to do a display maps on my phone.
Currently I'm having slight problems with regards to adding an overlay to display pins. This is the code that gives an error:
...
0
votes
1answer
59 views
Google map API crashing
I am using the version 1 of the google maps API on my apps with a custom overlap on top. The problem is that on numerous occasion i experience crash and force shutdown on app and I am pretty sure that ...
-2
votes
1answer
37 views
Android - displaying another activity when clicked on text displayed after on tap(index) method
I am new to android and I need a small help. I am developing an application much like google maps. I am able to create a map interface and display markers along with on tap(int index) method to show ...
0
votes
1answer
51 views
Null Pointer when Using Itemized Overlay in Android
Hello I am trying to plot a array of lattitude and longitude on Maps using itemized overlay. I am getting the following error .what could be the problem..????
>
03-18 23:52:06.834: ...
0
votes
0answers
67 views
Android multiple markers on mapview
This is my program; I am trying to do the following:
1) Detect touch.
2) Create a marker
3) Show all markers
I have the following error:
Would you please, help me?
Thank you.
03-17 ...
0
votes
1answer
28 views
How to clear the BitMaps associated with my MapViewOverLays
I have multiple overlays(in hundreads) being displayed in MapView. These overlays are BitmapDrawables which are being changed at runtime , i am adding text to the drawable with the help of canvas and ...
1
vote
0answers
29 views
Overlay drawing on the wrong spot
I've asked a similar question before, I know. But this is a bit different.
Here's this image:
Now, you see the custom marker is being drawn slightly to the right of the original geopoint. I tried ...
0
votes
0answers
41 views
Android: ItemizedOverlay — super.ontap always return false
I saw this problem several times here, but solutions never worked for me...
Even if I'm sure the solution is obvious, I can't find it.
Here is the code of my MapActivity class. I call the overlay ...
0
votes
0answers
54 views
Open a ppt pressing a OverlayItem
I tried that when you click on an icon painted by me on the map there will be a ppt file found on the SD card external memory.
First you put the classe order to paint icons, namely the method OnTap ...
0
votes
1answer
102 views
Adding multiple overlays on mapview dynamically
I've a mapView on which I managed to get an overlay onLongPress with the help of GestureListener. What I actually want is, I want to add markers (with same icon) one by one. Like I want to mark ...
2
votes
2answers
77 views
BalloonItemizedOverlay items not getting displayed
Here is my CustomOverlay
class CustomOverlay extends BalloonItemizedOverlay<OverlayItem>
{
private ArrayList<OverlayItem> mOverlays = new ArrayList<OverlayItem>();
Context ...
-1
votes
1answer
47 views
make a phone call from a MapView
i'm trying to make a phone call when i click on alertDialog button,this alertdialog attached to a mapview at every geopoint. I think i'm doing something wrong here
this is my logcat:
02-04 ...
1
vote
1answer
36 views
Show the Marker at the center of the circumcircles
I am trying to draw few circles within circle and show them on the Google maps. And current location should be at the center of all the circles. Means in the middle of the circle.
Everything is ...
0
votes
0answers
52 views
android mapview ArrayIndexOutOfBoundsException:
I wrote an App. The function is to be conveyed my latitude and longitude to webserver then to the mysql access the marker to map.
I used the timer so that every few seconds he once access. But do ...
1
vote
2answers
306 views
in ItemizedOverlay how to handle onTouchEvent and onTap overlapping?
I am trying to place a marker on a map overlay and then present a pop up when the user selects the drawable. The problem is the events seem to overlap.when i tap(ontouch MotionEvent.ACTION_UP call) ...
0
votes
0answers
124 views
Setting a custom icon with OverlayItem.setMarker() - Android
I am trying to set my own custom marker for points on a map but they keep coming out as the marker "defaultIcon"
In my main:
itemizedOverlay = new OurItemizedOverlay(defaultIcon, this);
Add ...
1
vote
2answers
89 views
Loading a custom ItemizedOverlay at run time NullPointerException - Android
I am making a map application for android which allows the user to place their own points of interest. I wanted to set custom pushpin icons for each type of point placed. When I try to get my custom ...
0
votes
0answers
82 views
Overlay is added below the tap point because mapView is not fullscreen
Simply adding one overlay on map. From other questions i have come to know that problem is due to layout i.e not showing mapView in full screen, but no solution is general and so not working in my ...
0
votes
0answers
22 views
How to disable user on tap posibility(not show balloon) in balloonItemizedOverlay?
I have balloonItemizedOverlay. During the process I need to enable and diasable user posibility to tap on balloon(not show balloon). How to realize that? Thanks in advance)
4
votes
2answers
343 views
Searching location in android map via edittext
I am on the way of developing a map service in android and I want to search a particular place like 'Berlin' in my map. For that I placed an EDITTEXT in my map and whenever I am entering the name I ...
4
votes
4answers
192 views
Current Loation is not picking in android
I am now moving with a project related to Google Map service. I would like to point out my current location in my map. For that, I have got an idea of using itemizedoverlay. I retrieve the current ...
0
votes
2answers
292 views
dynamically Change Itemized overlay draw circle using seek bar progress
i m maikng an app using Maps. I m drawing circle on a specific point using itemized overlay
and it works pretty fine. But i want to change the radius of that circle with the seekbar progress value. ...
0
votes
0answers
97 views
Android consume click on ItemizedOverlay onTap()
I have some OverlayItems on my map View.
I want a balloon to appear once I click on one and want it to disappear once I click somewhere else.
So far I overwrote the onTap()
@Override
protected ...
1
vote
1answer
21 views
overriden method of ItemizedOverlay class get get called multiple times
I am facing some issues as the createItem(int i) method of ItemizedOverlay class get called multiple times for each overlayItem that i added in itemizedOverlay object.
You will get better idea by ...
0
votes
1answer
37 views
How to change GeoPoint of Overlay in ItemizedOverlay for mapView?
I created an MapView with ItemizedOverlays. I need to move some Overlay on the mapView. How to realize this?
0
votes
0answers
104 views
Can't seem to display my marker Img on itemizedOverlay
I am having a weird problem for the past 5 hours can't see my overlay marker image on an emulator. Tried on different api emulators same issue don't know what I am doing wrong ..
Below is my ...
0
votes
1answer
112 views
How to use another class in onTap method in Overlay class?
I asked a question 1-2 days ago, it was answered. My codes are there. This is text link of my question
I added overlays on the map and when I click any overlay, I can get the id of it but there is a ...
0
votes
1answer
181 views
Unable to create OverlayItem on the geoPoint its Keep crushing the application
In my app I am asking user to enter a place in autocomplete textbox I am able to get the location successfully from JSON Object and I successfully extracted the longitude and latitude and created a ...
0
votes
0answers
174 views
Change specific overlay item's marker onTap
I have have anywhere from 1 - 2000 markers on the map at any one time, they can have one of 4 different drawables depending their listing type each drawable is just a png image. I have a big issue ...
3
votes
2answers
71 views
How do you control the order of OverlayItems on an ItemizedOverlay?
First of all I inherited a lot of code here, although I have combed through it a few times looking for a reason for this behavior and I am stumped.
I want the last tapped OverlayItem to be on top of ...
4
votes
2answers
233 views
Inaccurate positioning of overlays in Android's MapView
I'm trying to create an Activity with MapView and ListView inside it. I use C# and MonoDroid.
Layout looks like this
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout ...
1
vote
2answers
122 views
Remove a specific ItemizedOverlay from Android GoogleMaps
I did as you told me.I would lie to ask inside the oncreate() should a put something except from
mapOverlays = mapView.getOverlays(); ??
Also, at the start of my mainactivity class, where i declare ...
1
vote
1answer
54 views
Extended OverlayItem causes program to crash with NullPointerException
I have a class which extends OverlayItem to include more fields. I have changed all the OverlayItem occurrences in my program with a PointOfInterest class.
When I try to run the same program which ...
0
votes
0answers
47 views
Android polygon overlays with ItemizedOverlay
I am using a MapView in my application and want to display some overlays containg a pin icon and possibly a polygon zone (in that case the pin is in the middle of the zone). How can I achieve it with ...
0
votes
0answers
58 views
Removing Overlay Points on the MAP
I was facing problem with the removal of Overlay PINS from the MAP.
Here I have filters like: "Active" , Coal, Stone and so on... When i tap on the "Active" button it call the ...
0
votes
1answer
43 views
Error in adding pins on Google maps
Initially I am able to add the pin on the map.I delete the pin using
mapView.getOverlays().clear();
mapView.invalidate();
Now when I click on addPin button the same code of adding the pin on map ...
0
votes
1answer
146 views
How to move overlay item above mapview in android?
I have to get current location continuously and move overlayitem over mapview in android?
I have used following code to get current location for which i have to used different class for getting ...
0
votes
0answers
41 views
ItemizedOverlay floating/drifting away when zooming out
I want to display many ItemizedOverlays on my Map. When I use the marker.png as a drawable and I zoom out, the marker sticks right to it's place (addMarkerOverlay(...)). But when I use my ...
0
votes
2answers
115 views
confusion between overlay, overlayitem and itemizedoverley
I wanting to create an app which displays a map and on top of this map, the roads and points of interests will be painted as lines and ovals. These lines and ovals will have listeners attached to them ...
0
votes
1answer
19 views
how to ask an overlay item one the map
I have created an overlayitem list for my activity. But I want add item to the list(for example, I create a button for trigger the event) after I run the application and show the item on the map. How ...
0
votes
1answer
46 views
Display text with no rectangle
I am developing a Android Cell phone application using MonoDevelop for Android and the MapsAndLocationDemo. I am wanting to display some text under each overlay item. I have overridden the Draw method ...
0
votes
0answers
68 views
Extending Itemized Overlay
I am using MonoDevelop for Android with the MapsAndLocationDemo. I am wanting to get the offset of each Overlay item so that I can draw text under each item.
I have converted the following code from ...






