Tagged Questions
on Android OS, MapView allows you to create your own map-viewing Activity
23
votes
5answers
24k views
Drawing a line/path on Google Maps
I've been busy for a long time finding out how to draw a line between two (GPS) points on the map in HelloMapView but with no luck.
Could anyone please tell me how to do so.
Suppose I use the ...
22
votes
8answers
17k views
customize callout bubble for annotationview?
I'm currently working with the mapkit and am stuck.
I have a custom annotation view I am using, and I want to use the image property to display the point on the map with my own icon. I have this ...
18
votes
3answers
24k views
How to draw a path on a map using kml file?
Can I parse kml file in order to display paths or points in Android? Please could you help me with that?
This is kml sample code which I would like to display in android google map:
<?xml ...
16
votes
6answers
4k views
Android: automatically choose debug/release Maps api key?
Is it possible to automatically detect, which certificate was used for signing APK? I'd like to have both debug and release Maps certificates in application and pass valid one to MapView constructor.
...
13
votes
2answers
2k views
Android MapView -setting zoom automatically until all ItemizedOverlay's are visible
hard-coding the setZoom() within onCreate() feels very antiquated and I'd like to enhance the user experience by initially having the MapView set the zoom until all GeoPoints / OverlayItems are ...
11
votes
3answers
9k views
How to remove all annotations from mkmapview without remove the blue dot IPHONE
I would like to remove all annotations from my mapview without the blue dot of my position, when I call:
[mapView removeAnnotations:mapView.annotations];
all annotations are removed....
in which ...
10
votes
1answer
438 views
Weird MapView problem; PixelConverter Error
I have an application based on the MapActivity. The application drops
ItemizedOverlay items on the map as you start to move about. It has
been running with no problems until I dropped it into a ...
10
votes
6answers
945 views
Weird Overlay draw behaviour when zooming in the MapView
I've extended Overlay and implemented draw() in order to draw some stuff onto the map.
When zooming is done through mapController.zoomIn() (called when doubleTapping the map),
the overlay is drawn ...
9
votes
3answers
3k views
NullPointerException in ItemizedOverlay.getIndexToDraw
I have a relatively simple MapActivity that I'm trying to make display
a list of "camps" within a given map region. I've created a custom
subclass of OverlayItem called CampOverlayItem, a custom
...
9
votes
6answers
2k views
How can I detect if an Android MapView has been panned or zoomed?
I'm creating an Android app that searches for items based on the visible area of the MapView. Is there a way to set up a listener on my MapView to detect when a map has been panned or zoomed?
9
votes
5answers
9k views
Shared library missing in android? How?
02-18 00:02:08.432: ERROR/PackageManager(57): Package com.example.brown requires unavailable shared library com.google.android.maps; failing!
I got this exception in logcat.
Any idea???
9
votes
3answers
8k views
Android - Get Altitude By Longitude and Latitude?
Do you know some quick and sufficient way to get altitude (elevation) by longitude and latitude, that would be easy to use on Android platform?
While this is a self-learning question, my approach is ...
9
votes
3answers
4k views
Rotate MapView in Android
I am writing an Android app where one of the features is that the map will rotate according to the compass (i.e. if the phone is pointing east, the map will be oriented so that the east side of the ...
9
votes
4answers
9k views
How do you draw text with a border on a MapView in Android?
I'm trying to draw some text onto an MapView on Android. The drawing of the text goes fine, but it's very hard to read the text because it's white with no black border (like the rest of the text that ...
9
votes
5answers
10k views
android maps: How to Long Click a Map?
How do I long click on a mapview so that a place marker appears at that point on the map?
I tried a couple ways without success:
1) Using setOnLongClickListener on the MapvView which never ...
8
votes
7answers
619 views
MapView rendering with tiles missing with an “x” in the center
This is very, very strange. I've never seen anything like it. At the time I am took this screenshot, I'm not loading any overlays. First, I thought it was my internet connection where it couldn't ...
8
votes
2answers
1k views
How to reposition built-in zoom controls in MapView?
I need to place built-in zoom controls of MapView into position different from the default position.
While it's easy to do using getZoomControls() method, this method is deprecated in recent API ...
8
votes
10answers
14k views
Android “Hello, MapView” Tutorial - Map Tiles Do Not Load
I am new to Android software development and new to this site. I am hoping someone might have some experience with the problem I am having.
I've been following the Hello, MapView tutorial in order ...
7
votes
1answer
867 views
Android Maps Point Clustering
Is there any code for Point Clustering in android? How can i load thousand pinpoint without having performance issues?
7
votes
3answers
416 views
How to change the marker for the overlay on tap for android?
i have made an application in which i need to change the drawable of an overlayitem when a user clicks on it. i am using the following code to achieve this effect:
protected boolean onTap(int ...
7
votes
2answers
379 views
MapView - Have Annotations Appear One at a Time
I'm currently adding annotations to my map through a loop... but the annotations are only appearing on my map in groups. Also, on load, only about 4 annotations are actually displayed on the map... ...
7
votes
2answers
791 views
Zoom events that work in an android Mapview
I need to redraw the overlay after the user zooms.
What is the best way to do this?
I've tried everything I can think of (saving a getZoomLevel() state, overriding onUserInteraction()), nothing ...
7
votes
2answers
5k views
Always show zoom controls on a MapView
Is there a way to always show the zoom controls on a MapView? I have added the zoom controls using
map=(MapView)findViewById(R.id.map);
map.setBuiltInZoomControls(true);
but the zoom controls fade ...
6
votes
1answer
1k views
How to determine if an annotation is inside of MKPolygonView (iOS)
I'm trying to calculate if a specific annotation(like the blue circle of the user location) or a MKPinAnnotation is inside an MKPolygon layer on the mapview.
Some ideas?
THanks in advance
6
votes
4answers
3k views
Moving icons on a Android MapView
I'm working on an application that displays the location of moving items on a Google MapView. I need a way to update the position of the icons that represent the items (as well as change the facing of ...
6
votes
7answers
24k views
Placing Zoom Controls in a MapView
I'm trying to get the zoom controls to show up in a mapview, the following code almost works, but the zoom controls appear in the top left of the mapview, not the bottom center like I'm specifiying ...
5
votes
1answer
581 views
iOS 5 MapKit Crashes with Overlays when zoom/pan
I have build an app which is intended to display some overlays. The overlays are in form of polygons with up to 10000 points in the outer ring. But the high number of points seems not to be the ...
5
votes
2answers
312 views
Android Mapview not loading tiles on HTC Desire?
I have an app on the android market, which uses the mapview to display some locations. This works fine on all the devices i have tested it on. After having it on the market for a while, i see several ...
5
votes
1answer
337 views
Android Issue Drawing Long Routes on MapView using XML Parsing
I have problem occuring in my application..
Using XML file i am getting geopoints to draw the path between two locations..but it only shows me the route if the distance is less than 300 kilometers ..
...
5
votes
2answers
560 views
Add an image to Android MapView
If I have an image in a Mercator map projection with a particular upper left latitude/longitude and lower right latitude longitude, how would I add this to the Android MapView?
Do I have to extend ...
5
votes
4answers
6k views
Android GeoPoint with lat/long values
I am trying to get a GeoPoint for -23.4456 by 45.44334
What values do I pass into the constructor of the GeoPoint as it take Ints only.
5
votes
4answers
12k views
Android - Failed to find provider info for com.google.settings in MapView Example
im trying to implement MapView example which is defined on Android Hello Views example but now im facing Failed to find provider info for com.google.settings error...
Any idea why this is ...
5
votes
7answers
7k views
MKMapView refresh after pin moves
A custom AnnotationView is updated with new coordinates. But the problem is that it visually updates only after some manipulations with MKMapView, e.g. zooming or moving.
What should I do to manually ...
4
votes
1answer
112 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 ...
4
votes
1answer
169 views
MapView throwing IllegalArgumentException - Wrong Image Size: 192 192
I'm getting excessive crash reports from users on a Samsung Vibrant Galaxy S. After searching around for solutions to this issue, the only thing I came across was an open issue over at Google Code: ...
4
votes
5answers
376 views
Android Mapview: Merging overlapping markers into a new marker
So I have a MapView with a lot of markers, most of which are concentrated in mile wide clusters. When zoomed the markets overlap and appear to only be one. What I want to achieve is at a certain ...
4
votes
2answers
289 views
Relocate Google logo in MapView
I have two buttons at each bottom corners of the MapView, partly obscuring the google logo in the bottom-left corner.
In order to comply with the terms and conditions of the API, I need to relocate ...
4
votes
2answers
717 views
How to Create Dynamically numbered Pin Pointers on MapView?
I want to display some locations on my MapView. These locations will show pins which will have numbers 1,2,3.. so on(Similar to Google maps result but it is A,B,C..). I think it is not feasible to ...
4
votes
3answers
177 views
android how to get temprature of location on mapview
all
android is new for me , so i just want to know that
is it possible to get temperature of particular location on mapview ?
In my application i want to show temperature of location when user tap ...
4
votes
5answers
669 views
android MapView always causes an OutOfMemoryError in nested elements
I am trying to create a MapView (currently without any overlays) inside some nested elements.
It is basically something like ScrollView -> RelativeLayout -> RelativeLayout -> MapView
...
4
votes
2answers
553 views
MapKit exception: Cannot remove an observer for the key path “title”
I'm getting quite a lot of crashes like this.
In my code, I'm not doing any KVO on my MKAnnotation objects that could explain this exception. So to me, it looks like an iOS bug.
Did anybody else ...
4
votes
2answers
1k views
How to rotate MapView?
I am a new developer for Android. Tried to rotate MapView in circular motion.
But I don't know how to begin.
Do you have a simple code to rotate the MapView?
4
votes
1answer
452 views
Close balloon showed on MapView
I have a MapView with an ItemizedOverlay and a bunch of OverlayItem:s. When an OverlayItem is tapped on custom layout balloon is displayed on MapView. I can add a close button that hides the balloon ...
4
votes
1answer
3k views
How can I draw an Arrow showing the driving direction in MapView?
I use that Google Maps component MapView in an Android application. I can use the GPS location to show my location with a dot. But I would like to show an arrow instead, that points out the driving ...
4
votes
1answer
1k views
How can I use a wrap a TabHost containing a MapView that also displays an AdMob view below it?
I'm very new to Android (like 2 days), but I'm experienced with other layout toolkits. I'm trying to put an AdView below a TabHost, and it seems that I can either get the TabWidget or the AdView to ...
4
votes
3answers
6k views
MapView adding pushpins on touch
I managed to get the map shown on the screen. Now the user will move around the map and press on it. After pressing on a point I need to add a push pin on screen on the pressed location. If the user ...
4
votes
1answer
1k views
Custom MapView throwing NoSuchMethodException, but it's there!
I'm trying to implement a custom MapView. Inside my MapActivity (named mainmap) I have an inner class which extends MapView:
private class Lmapview extends MapView{
public Lmapview(Context ...
4
votes
3answers
2k views
Android Map Zoom to Show all Pins
I have 5 pins added to a map. How can I tell the MapView to zoom as much as possible and keep all pins in view?
---I found it:
...
4
votes
3answers
872 views
Android 1.6 Mapview doesn't show traffic until user interacts with the map
I have a MapActivity. If it's set to an appropriate location and zoom level to see traffic none is shown after it's first created until you interact with the map (click on it, drag, etc) at which ...
4
votes
5answers
2k views
draw is being constantly called in my android map overlay
I'm trying to draw a route onto my MapView.
I've extended Overlay and implemented the draw() method.
The route is displayed properly, although while debugging,
I added a breakpoint on draw(), and ...