The android-maps tag has no wiki summary.
30
votes
5answers
6k views
MapView in a Fragment (Honeycomb)
now that the final SDK is out with google apis - what is the best way to create a Fragment with a MapView? MapView needs a MapActivity to work right.
Having the Activity managing the Fragments ...
10
votes
2answers
4k views
Android: Setting Zoom Level in Google Maps to include all Marker points
I am trying to set zoom level for Maps in android such that it includes all the points in my list. I am using following code.
int minLatitude = Integer.MAX_VALUE;
int maxLatitude = ...
7
votes
4answers
4k views
Using Google Places API
I want to develop an application in which i want to display information about places nearby (within 1km )the user by getting its current location..
Say for example i want to display information ...
6
votes
1answer
239 views
MyLocationOverlay dispatchTap() doesn't propagate
I have a MapView with some overlays and a subclass of MyLocationOverlay on top of them because I want the user current location to show above the other markers.
I'm handling the onTap event for the ...
6
votes
1answer
6k views
How to show a balloon above a marker in a MapActivity? Isn't there a widget?
I dont get the point, why I have to code so much for it. Like, I dont want to care about...
the position of the balloon (I just want to assign a geopoint)
the layout of a basic balloon (Later on I ...
6
votes
3answers
2k views
Google Maps & apps with mapview have different current positions
I have a mapview where I want to track the user's current location. GPS as well as 'use wireless networks' is activated in my phone settings.
Nevertheless, since I'm indoor I don't get a GPS fix, ...
4
votes
2answers
1k views
android maps : array index out of bound exception
I have a task to show 458 markers to show in Android maps. And to avoid performance related issues I update the data on map using an AsyncTask instance.
Here is a short scenario of what I do.
I ...
3
votes
2answers
48 views
How to launch map intent with a marker/overlay item at given latitude and longitude?
I have a latitude and longitude and I want to open google maps centred at that point. So i use the following code for it:
Intent intent = new Intent(android.content.Intent.ACTION_VIEW,
...
3
votes
1answer
194 views
refreshing map ItemizedOverlay gives ArrayIndexOutOfBoundsException
Using the com.google.android.maps API, I've got a MapActivity which uses ItemizedOverlay to place several (up to about 1000) icons on a MapView. I want to refresh (or perhaps just add to the list of) ...
3
votes
2answers
192 views
What is the best way to load a lot of Overlays to a MapView in Android?
I want to load a lot of Overlays into one MapView.
Say i want to load about 10.000 or more Overlays to the Globe.
What is the best way to do that? I understand that with a MapView loading 10k of ...
3
votes
4answers
5k views
Creating Custom Overlay on the map
I am trying to replicate this feature of Maps in Android:
You can see that on the map, there's a Circle depicting the range that the user has selected.
In my application, I'll also want a dragger ...
3
votes
4answers
1k views
Android: Getting an invalid KML file from google maps
I'm trying to get and display a live .kml file from maps.google.com using
...
3
votes
2answers
684 views
Does android maps support ground overlay?
I have a weather image I would like to use as an overlay in the google maps android api. I would like to achieve the same result that I get from using GroundOverlay in KML files, such as
...
2
votes
0answers
50 views
Rotated OpenStreetMap view - how to Swipe map in direction of finger move after rotation in Android?
I am using the OSM for a mapping application where I
rotate the map in direction of travel as explained here Android Rotating MapView . This works well.
However, I haven't yet managed to adjust the ...
2
votes
1answer
211 views
Best way to implement tabs with lists, fragments and maps?
I'm trying to "port" an iOS app to Android.
The original iOS app workflow is:
Tab 1
List1 -> Detail -> DetailMap
Tab 2
List2 -> Detail -> DetailMap
Tab 3
Map -> Detail
Where ...
2
votes
3answers
58 views
Geocoder works in 1.6 but not in 2.2 emulator
getFromLocationName() alsways throws a NullPointerException in the Android 2.2 emulator but it's working fine in the Android 1.6 emulator.
This is my code snippet:
Geocoder geo = new ...
2
votes
1answer
53 views
android Map view Issue
I have made an application containing facility of viewing current location on map. I have used default Map Intent to show map. It Works fine in Emulator but when I am testing in my Android device ...
2
votes
1answer
87 views
Load a fake map on Google map in android
In my application I need to overlay an map like image on a Mapview. Which will hide the real map from the user. When User zoom the map, overlay image should also get zoomed. I tried with Mapoverlay ...
2
votes
2answers
287 views
Vehicle tracking system in Android
in my college sir has given topic to do for final year project.
So thing is that, can it be possible in Android?
Tracking any vehicle which having android device, so we can able to
find ...
2
votes
1answer
556 views
Get Latitude and Longitude from SQLite database for use in Android MapOverlay
If I store the Latitude and Longitude of a bunch of locations in a SQLite Database, how would I retrieve these values and place them each in an OverlayItem class for use in Google's Map code?
...
2
votes
1answer
50 views
Reducing duplication of code when using Activity and MapActivity
I can create an intermediate activity class like MyAppActivity, to contain common code used across my activities, but this obviously doesn't work if the app also needs to subclass MapActivity.
What's ...
2
votes
1answer
73 views
Android Map View Issue
I am having an app which tracks the Geopoints of the user. I simply fetch these points and use them to draw the path on Map View.
My issue is, when I see the path tracked by user, the path seems ...
2
votes
0answers
411 views
How to animate a marker(Overlay) image in mapview
Im developing a android application which uses google maps, im displaying a overlay image with some co-ordinates in the MapView, I need to animate the image. Please help. My code is as follows
...
2
votes
2answers
280 views
How to search for shops in Android Google map application?
I am developing a navigation application which uses google maps.
I am trying to implement "shops search" with the application. I tried the following piece of code which is capable of searching for ...
2
votes
1answer
404 views
How to implement a little static map preview as list icon?
I built a ListActivity and now I want to add Map Previews as the List Icons. I dont want to extend MapView because: 1st I just need a little static preview and 2nd I already extended to ListView.
I ...
2
votes
1answer
996 views
How to display route with Google Maps API in Android application?
I don't get it and I can't find it by myself. How to display (and update) a route between two locations (for example, current device location and destination) in Android application using Google Maps ...
2
votes
2answers
1k views
Why are my overlays on a mapview not shown?
I followed the instructions from the google hellomapview tutorial. I get a working mapview etc. But the two items that are added to the map are not shown. It seems they are there somewhere because ...
1
vote
1answer
36 views
GeoPoint Creation in android
GeoPoint point = new GeoPoint(
(int) (userlocation.getLatitude() * 1E6),
(int) (userlocation.getLongitude() * 1E6));
I am creating geo point like above
but it's not at exact location ...
1
vote
2answers
177 views
Android - Maps Cannot show
i wanna show google maps on my android application. show i do some basic step like this :
AndroidManifest.xml
<uses-permission android:name="android.permission.INTERNET" />
maps.xml
...
1
vote
2answers
86 views
Having list of lat/long value from sqlite database, how to show on Google map in Android?
I have stored list of Latitude and Longitude value retrieved from sqlite database,How to draw line between these co-ordinates and show it in map view.
Can anyone help me with some good examples.
1
vote
0answers
104 views
Android 2.2 Click and Drag Image Centered Under Touch
I am trying to drag and drop a crosshair onto a MapView. I have an ImageView button on the screen. When I touch it, the button disappears and a new ImageView appears. The new ImageView is supposed ...
1
vote
0answers
99 views
Plotting points on a MapView after Panning and Zooming
The problem is, the onPanChanged() method gets called twice causing the points to flash before they are plotted every time a user moves or pans around the map. What can I do to make the ...
1
vote
1answer
47 views
Set images as marker doesn't load in mapview
I have mapview that shows the current location and a marker. When I used marker from drawable folder (example: R.drawable.marker), the marker load perfectly but, in my case, I want to put my certain ...
1
vote
1answer
47 views
Android Map displaying points selected from other activity
Im working in a school project. I want the user to select categories to be display in map. Im using toggle buttons and the user can select more than one. After the selection is done the user clicks a ...
1
vote
1answer
39 views
Telling my MapActivity that my ItemizedOverlay has fired an event of interest. Design pattern?
so I'm facing an issue here that I'm sure many a developer before me has faced as well. I have my MapActivity class which creates an ItemizedOverlay class. The ItemizedOverlay has a OnTap even. ...
1
vote
1answer
81 views
Android Maps Caching Lines Drawn
I'm developing an application that's tracing lines of highways on the Google Maps SDK Add-On.
There are a lot of points painted, which inadvertently make the Maps very sluggish to navigate. It seems ...
1
vote
1answer
373 views
Canvas to draw polygon over mapview in Android
I need to draw a Polygon from several points (I have their latitude, longitude).
I am basing my implementation from these two answers:
Drawing an empty polygon given a set of points on a Map ...
1
vote
1answer
156 views
google map places api not giving proper results in android
In my app I'm trying to get location of beauty salons near my current location. For this purpose I'm using google places API. As mentioned in the link I'm trying to get all information about beauty ...
1
vote
1answer
90 views
Embed google Navigation into a Layout
I want to show google navigation in my application as a view in my layout. (Like mapview)
Is it possible?
Thanks!
1
vote
6answers
913 views
Exception when using MapView - java.lang.RuntimeException: stub
Does the following exception make sense to you? I'm struggling to identify the cause. It occurs when I open a an activity (ActivityMap) subclassed from MapActivity, even if the MapActivity's layout ...
1
vote
1answer
129 views
Android: Map drawing performance, 1K drawings !
So I have an application that draws line, polyline, circles, etc over an Open Streen Map.
I keep a list of drawings, when the map is invalidated I iterate though the list redrawing each item within ...
1
vote
0answers
56 views
Street starting and ending point - lan/lat
I searched for this one for quite some time:
I want to when having a lan/lat of the "start" of the street, get the lan/lat of the "end" of the street, is that possible using the Android location API? ...
1
vote
2answers
491 views
MapView inside a ScrollView?
I would like to have a MapView inside a ScrollView, however when I try to scroll the map, the ScrollView takes priority! Is there a way to give the MapView priority when scrolling inside the map, and ...
1
vote
0answers
50 views
How to update currentlocation and path between two points continuously?
How to update currentlocation ping and path between 2 points continuosly as the location changes.
1
vote
1answer
470 views
how to draw line on map in android
in my app i need to draw lines on map while i am walking,running or driving. for get location i use OnLocationChanged method of LocattionListener class. in OnLocationChanged method i call line drawing ...
1
vote
1answer
474 views
route drawing on map in android
in my app i am drawing route path on map where ever i am moving and pin the source and destination. so i use LocationManager class for get location update as ...
1
vote
1answer
360 views
Constraints and restrictions in using Google Maps API
I have developed an android mobile application
I am using Google Maps API for
Displaying Current Location (Drawaing different types of shapes on my current location)
Displaying Nearby Areas. ...
1
vote
1answer
1k views
ConcurrentModificationException using mylocation overlay and timer
this problem has been doing my head in and I hope you can help! I've found the answers to a number of issues here before and hoping you people can work your magic again :)
Ok so part of my app uses ...
1
vote
1answer
487 views
how to create dynamic google map in android
i check my logcat file error is the location manage is null
public class MapsActivity extends MapActivity {
MapView mapView;
MapController mc;
GeoPoint p;
double latPoint, lngPoint;
...
1
vote
2answers
717 views
Put locations on map around user with a certain radius - android
I am working on a GPS application and was toying with the idea of putting markers around the user like in Zombie Run and SpecTrek but am completely confused about how to find out the locations around ...