The overlayitem tag has no wiki summary.
1
vote
4answers
100 views
How to find the distance between geopoints?
Good afternoon. I have the following code
ParseQuery query = new ParseQuery("MyOb");
query.findInBackground(new FindCallback() {
public void done(List<ParseObject> myOb, ...
2
votes
1answer
39 views
OverlayItem Drawable moves after being clicked
I have an app which displays icons a user can place and add details to. Recently I noticed, when a User clicks one of the icons, it moves down slightly. Any suggestions welcome !
Before
After
0
votes
0answers
123 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 ...
0
votes
0answers
19 views
overlayitems disappear when perform zoom fast
When I press zoom button on mapview several times fast, overlayitems disappear. I made custom overlayitem extending overlayitem class. below is the class.
package com.example.mapview.test;
import ...
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 ...
0
votes
0answers
83 views
Android: navigator using google maps api
I want implement a navigator in Android using google maps api.
I followed this guide thread: Why retrieving Google Directions for Android using KML data is not working anymore?
This work fine but is ...
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
98 views
null pointer exception while touching in overlay item
Hey people i am new to android here am working with a map oriented project now i got a problem while i touch on the overlay item it shows null-pointer exception in log-cat i cannot understand what ...
0
votes
2answers
166 views
How to set geopoint of an overlay item and put onto map correctly?
What I want to is display the item just above the line. How do I set item's position for doing that? (as shown in an second image as below)
0
votes
1answer
55 views
Android: How to check visibility of OverlayItems on MapView
Is there a way to check the visibility of an OverlayItem? So all I want to know is, if a overlay Item is shown on the map or already outside of the projection.
I'm afraid using the bounding box ...
2
votes
1answer
177 views
How to draw only the markers that are visible on the map?
I want to learn drawing only the overlayitems that are visible on the map, because i'm showing a map with thousands of markers. I know that i must check if the overlayitem is visible with something ...
4
votes
6answers
129 views
Android application: showing overlay items in AsyncTask
I am building an android application that uses google maps to overlay items. The latitude and longitude for the items I get from a MySQL database. To do this I connect to a php script using HTTP in ...
0
votes
1answer
101 views
adding fields to OverlayItem
A simple questions about OverlayItem. I my map android application, tapping on a location, I would show some info like: name, infoq, info2, info3. So I extend the OverlayItems:
public class ...
0
votes
1answer
110 views
android, customized ItemizedOverlay
There is already an overlay, drawing something on a map view. I want to add another overlay and a customized item to the map view. Nothing shows. What's wrong with my code? Thanks heaps.
My sub-class ...
2
votes
3answers
377 views
MapView very slow with 1000 overlayitems on the map, even with only 2 visibles
I have a mapview showing 1000 overlayitems on the mapview. The map moves very slow even if only two overlayitems are visibles on the map (huge zoom applyed)
It is possible to optimice the mapview to ...
2
votes
0answers
63 views
Animate an OverlayItem when retrieving coordinates from a WebService
I'm using a webservice to follow a car position and i display the car position on a map with an Overlay item.
I'm able to refresh the position of the car by removing/adding the overlayItem, however i ...
0
votes
0answers
175 views
Android Map Overlay Item is Not Working
I have developed a Map Application in Android Reading Data from MySQL and also I Have Applied a Security Passoword to application.WHen I run the application all markers loads successfully but when i ...
1
vote
1answer
231 views
Android OverlayItem doesn't show a message
thats my code:
OverlayItem overlayItem = new OverlayItem(point, "Test", "Hello");
itemizedOverlay.addOverlay(overlayItem);
mapOverlays.add(itemizedOverlay);
When i run this app i can see the map ...
0
votes
2answers
278 views
Multiple drawables on my curent location
I have a MapActivity where i get the current location and i pin a drawable on it. The thing is that when my location is changed ( onchangedlocation method ) there appears another pinpoint on the map ...
0
votes
0answers
213 views
OnSingleTapUp is updating my direction path created by overlay class
Creating a Location alert kind of application. Used MapView in it. Used Gestures also. In Longpress, i have made to call overlay to put over path from source to destination. Used onSingleTapUp as ...
0
votes
2answers
517 views
Drawing a pin on google map through android application
I"m new with google maps, I'am doing an android application in which I want to make a button , which on click shows a map with a pin on a certain place that i previously declared (i already have the ...
0
votes
2answers
2k views
How to create its own Marker for OverlayItem in OsmDroid
I have the following code :
ArrayList<OverlayItem> items = new ArrayList<OverlayItem>();
GeoPoint geoPoint = new GeoPoint(data.getPosition().longitude, data.getPosition().latitude, ...
0
votes
1answer
301 views
Android create subclass for OverlayItem
i will like to pass other than title and snippet value to the OverlayItem, i go through some search i found out that creating subclass for OverlayItem could be the solution. But i have no idea how to ...
1
vote
0answers
536 views
How can I set a title/caption for an overlay item and create onclick/long pressed listener for that item to start an new activity?
My application will find the users around myself and shown it on the map.
I can add the overlayItem on the mapView but how can I add some caption for the image for example the user name.
After I ...
0
votes
2answers
725 views
Adding maps marker on point selected
I'm having a lot of trouble adding a marker to the user selected spot. Here is my code
public class ShowMapActivity extends MapActivity {
public static Context context;
private MapController ...
0
votes
3answers
321 views
How to extract OverlayItem from Overlay?
I need to check if the data of a newly created OverlayItem is already existing on the list of OverlayItems already displayed on the map. I made a code to check if the data of the OverlayItem is ...
2
votes
2answers
464 views
Android : Google Maps crashes when zooming (more than 1500 icons)
I'd like to display many icons with the Google API (more than 2,000 icons). I created a simple activity, based on this tuto .
It displays without any problem icons when accessing the map. However, ...
2
votes
1answer
883 views
Android MapView - Extending OverlayItem to store a URL for access in onTap
[Update: Thanks to Craigy's suggestion below, I cleaned up my code a little and added 'final' before the string in onTap, and everything works great!]
I'm trying to store a URL (along with a title ...
4
votes
1answer
542 views
Clickable List within OverlayItem (MapView for Android)
I have a map view with serveral pins plotted on different addresses. All works very well.
The issue arises when you have more than one item pointing to the same address.
For example,
Unit 1/ 45 ...
0
votes
1answer
184 views
Android Map Overlay Shifting after AlertDialog opened
I have a map based Android program, that is working nicely, I have it opening an alert dialog when an overlay is clicked...
I start the app, and see my overlays, and all is fine, until I select an ...
0
votes
0answers
163 views
Android OverlayItem on View class
I am searching for a solution that will place an OverlayItem on a simple class extends View. All tutorials about OverlayItems are showing only how to set them up on MapView. I know, there's that ...
2
votes
2answers
4k views
Android itemizedOverlay's onTap action overrided
I have a class :
class MapItemizedOverlay extends com.google.android.maps.ItemizedOverlay<OverlayItem> {
private Context context;
private ArrayList items = new ArrayList();
public ...
1
vote
1answer
6k views
GoogleMaps: custom ItemizedOverlay and OverlayItem, the correct way to show different marker
I've been searching long for clear informations about the right way of extending ItemizedOverlay and OverlayItem, but the result I get does not satisfy me yet.
In a few words, I need to show on a map ...
2
votes
3answers
1k views
“Hiding” an OverlayItem in Android , possible?
I am working on a MapView app, and would like to place a nice little easter egg in the program. What I am trying to do is have an overlayitem that is basically invisible, but when tapped will trigger ...
0
votes
1answer
2k views
Android multiple overlay dynamically on map
I would like some help regarding getting the lat and lon. What I mean is: I have lat and lon parsed from the web (using XMLPullParser). Now, my biggest problem is to get all the values (lat and lon) ...
1
vote
1answer
479 views
Android maps ItemizedOverlay<Item> Bound mismatch
I am trying to walk through official tutorial for android google maps:
http://developer.android.com/guide/tutorials/views/hello-mapview.html
I am implementing the class which is extending ...
3
votes
1answer
2k views
How to draw unique labels on overlayitem of mapview in android
Here is a screenshot of something which I'm trying to achieve
I would like to add unique label (like numbers) to each overlayitem of the map. I have done the basic part of adding the overlayitems ...
4
votes
1answer
902 views
Controlling OverlayItem size
I'm building a map with a few dozen OverlayItems in a single ItemizedOverlay. My map is made to be viewed very close up (about zoom level 18+), with the OverlayItems in very close proximity to one ...
0
votes
2answers
3k views
Problem with drawing location using a custom Drawable in an Android OverlayItem
This code is using
the Google APIs (level 8).
When I update the OverlayItem to use a custom drawable the Canvas
object seems to draw the pixels in the wrong location. In this
example I'm trying to ...
3
votes
3answers
20k views
Android: ItemizedOverlay onTouchEvent and onTap overlapping
I am trying to place a marker on a map overlay and then present a dialog when the user selects the drawable. The problem is the events seem to overlap. After I click the map and the marker is drawn, ...
0
votes
1answer
479 views
MapView overlay item needs to be a link to a webview
So I have a Map that displays markers for all my friends based their coordinates. Right now when you click a marker it pops up an overlay and gives their details. What I need to figure out is how to ...
0
votes
1answer
222 views
Increase Hit detection on ItemizedOverlay
I have an itemizedOverlay extended and I want to increase the hit detection on the OverLayItem's if this is possible?
0
votes
1answer
2k views
Callout MapView Android
Is it possible to have a callout attached to an ItemizedOverlay item like in the iPhone and Google maps?
3
votes
1answer
1k views
Get current OverlayItem being drawn
I want to be able to get some reference to the curent object being drawn
@Override
public void draw(Canvas canvas, MapView mapView,boolean shadow) {
//Log.i("DRAW","MARKER");
...
1
vote
1answer
3k views
Does anyone know how to create a message bubble with 2 buttons appears on top of an overlayitem for map application using android 2.1?
I currently have implemented an overlayitem that shows an icon for geopoint on a map application in Android. When the icon is clicked, it brings up an AlertDialog from the onTap method below. I have ...
4
votes
3answers
2k views
how to get the long & lat value of four corners in the mapview in android?
i working on map view. i want to put overlay item on the map view. that overlay items are all depends on currently showing map view and zoom level. how to get current map view's longitude and ...

