MapView allows you to create your own Google map-viewing Activity

learn more… | top users | synonyms (1)

1
vote
1answer
11 views

Failed to find mapViewStyle using sherlock

in my application mapview was working fine but suddenly one day when i just wrote the xml file the error is not going even changing the the target sdk, cleaning rebuilding and also deleting the R.java ...
0
votes
0answers
14 views

accessing my own tileserver implemented using MapServer via osmdroid

I have a running Mapserver implemented in osgeo-6.05. I can access the map using a web browser. Since I am trying to connect that map to my Android application I am using OSMdroid. I saw in Many ...
0
votes
0answers
21 views

Updating Android App - Maps Problems Part 2

This a continuation of my previous question, Updating Android App - Maps Problems What's new, I received a release key from previous developer with appropriate passwords, problems remain. I need to ...
1
vote
3answers
67 views

Google map not show any thing in map

i am showing a map in activity ... but when i run app on device it does not show any thing , it show just white screen and zoom in zoom out options... MAP key is right .. thanks .. ...
0
votes
0answers
8 views

How to generate hashkey in windows seven for use in android ampView.!

I am tring to get "hashkey" for using a mapView in my android application,But in comind prompt when i typed command for hashkey it shows "A required privilege is not held by the client" ...
0
votes
1answer
27 views

Update annotation's subtitle

I'm struggling with setting the subtitle of an annotation in MapView, once it has been clicked. .m: MKCoordinateRegion England = { {0.0, 0.0} , {0.0, 0.0} }; England.center.latitude = 51.50063; ...
0
votes
0answers
23 views

Error when shows current and touch location android app

I try to create an android application for shows current location and when the user touch the screen i want display the Toast coordinates.I try the below code but give me LogCat cursor finalized ...
0
votes
1answer
31 views

Android publish app with Google map 1.0

I created a NEW android app with Google maps v1 and when I tried to publish it i see that Google map v1 is not sopported by Google . I there any way to publish my app with the v1? Thanks
0
votes
1answer
53 views

MapView not displaying google Map only grey tiles

I am extending an existing android application that is using google API V1 but when I run the application the map shows only grey grid and no map , the problem is that I read that google map API V1 is ...
1
vote
1answer
57 views

MapView stopped showing the map (signed application)

My application signed with MapView, was working perfectly, however this week the Google map stopped working (in debug mode everything runs fine), but whenever I generate a signed application the map ...
0
votes
0answers
16 views

get latitude longitude from mapview on touch c#

I need to get the latitude and longitude from MapView when users touch on it. I have looked at Google docs, and there is a method for that when you override the ontouch event. GeoPoint p = ...
1
vote
0answers
72 views

Change MapView in GoogleMaps v2 with a checkbox on Android

I can't change the map type on my Android Application, everything work fine but this feature is not. This is a part of the MapActivity class public void onCreate(Bundle savedInstanceState) { ...
1
vote
0answers
28 views

The GoogleMaps curse: BaseTileRequest failed

Though I've been reading the StackOverflow forums for years, it's the first time I post here. I know the problem I'm talking about has been asked before, but, as I've seen, it seems that there's no ...
0
votes
0answers
8 views

iPhone: Switching from a map screen to another view, map is reloaded

I have a map project where some location are plotting on a map. I have put lateral menu "facebook" style. My problem is to avoid to reload a map every time user come back to map. For example, in ...
0
votes
0answers
25 views

How can I additemizedoverlay in mapfragment?

How can I additemizedoverlay in mapfragment? This code is from androidhive google places and I am having trouble with mapview. It only displays gridlines maybe caused by deprecated googlemapv1. How ...
1
vote
1answer
29 views

How to keep map state on device rotation?

I have a nested fragment that i would like to maintain the state when the device orientation changed. It is something like this: http://i.stack.imgur.com/FPE7q.png I'm instantiate a mapView in the ...
0
votes
1answer
124 views

xcode - viewForAnnotation slow (over 3k Annotations) … normal?

Hy Guys! I have about 3-4k Annotations in my MySQL, receive them via assynchronous request... only showing the Annotations is ok, but i want that the user can select a highlighted Annotation to go to ...
2
votes
1answer
273 views

Restoring map state (position and markers) of Google Maps (V2) on rotate and on back (MapView in Fragment)

Background I have a larger application in which I had/have several problems with new Google Maps API. I tried to describe it in a different question ...
0
votes
2answers
46 views

Blank MapView on Android

I implemented an Android app a year ago using Google Maps v1, and now I need to fix a bug. The problem is, when I run the app from Eclipse on my hardware device the map is blank. In LogCat I get the ...
0
votes
1answer
58 views

Caused by: java.lang.NumberFormatException

In my application i am trying to display latitude and longitude of multiple points on google map from coordinates stored in my sqllite database. Here is my Map.Class where i display the point. public ...
0
votes
1answer
47 views

Adding infoWindow on top of marker Google Map

I want to add an info window on top of Each marker set when user tap on a marker. Here is my code. The marker is fine i need only the infowindow appears on top of it. how can i achieve this, here is ...
0
votes
1answer
75 views

Customising Android Map Balloon with multiple marker

In the CustomMap.java class below, i want to customised the code so that i can add arrays of geopoints, multiple itemisedOvelay as in CustomMap Part 2. public class CustomMap extends MapActivity { ...
3
votes
1answer
83 views

Error inflating class com.readystatesoftware.maps.TapControlledMapView

I am writing an app in which i am using Google Maps Android API v2 along with mapviewballoons library, so i have i am using two libraries in my android project: > android mapviewballoons > ...
0
votes
1answer
52 views

Multiple Markers with ItemisedOverlay Android

In my application i have multiple latitude and longitude from my web service. At this point in time, i am able to display only one coordinate on goole map using the code below. public class CustomMap ...
0
votes
1answer
165 views

Android, How to add Google map options from XML layout?

I have a fragment that holds a MapView. I have added this view in XML file like this: <?xml version="1.0" encoding="utf-8"?> <com.google.android.gms.maps.MapView ...
1
vote
0answers
58 views

How to display a image below the Google Map markers

I'm using the google map api2 in my android application, i have requirement to place a static map image "which show the floor plan" below the markers, I've attached how it look like in iphone app and ...
0
votes
1answer
43 views

Implementing search in GoogleMaps Android API, with zoom

I am trying to implement searching GoogleMaps in Android app, and found solution in: geoCoder.getFromLocationName("New York", 5); which returns a List<Address>. The problem I have is that ...
0
votes
0answers
9 views

iphone - avoid to reinit mapView

In my project, I have a FirstMapViewController where location are showed. I pass these locations as an array to a a tableView of location. When I select the row, using this code: - ...
1
vote
2answers
421 views

Google Maps Android v1 API deprecated, obtaining API key for publishing

I have developed an application which uses mapView. I have used Google maps for android v1. I finished my app and now ready to publish but unfortunately Google stopped providing API key from March ...
0
votes
2answers
218 views

MapFragment and Mapview API v2

I have a problem , I can use a MapView and I see the map correctly : <com.google.android.gms.maps.MapView xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/map" ...
0
votes
1answer
53 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
15 views

Multiple icon on Google Map android

I am using setter and getter method to store latitude and longitude from a web service. Example: public class Post { private String latitude,longitude; public String getLatitude(){ ...
0
votes
0answers
84 views

Draw/reDraw a looped set of images without redrawing other views in Android

I am requesting help solving a design issue and possible strategies to approach this problem. Goal- to display a looped set of gif images (Weather Radar loop) on a MapView that already has an ...
1
vote
1answer
336 views

Draw driving route between 2 GeoPoints on GoogleMap SupportMapFragment

This is a tricky question, been banging my head for a day, please help. I use Google Maps Apis to get the shortest driving distance and its routes, points, etc between 2 GeoPoints that I provide, see ...
0
votes
1answer
80 views

Using MapFragment with min sdk-8

I wish to use google maps in my app. For that, I am using MapFragment. MapFragment requires minimum sdk version 11. But I wish to have minimum sdk version as 8 so that my app works for Android 2.2 and ...
0
votes
1answer
62 views

I wish to have a mapView in my relative layout which has imageView and TextView

To get a MapView, I would have to extend my class with MapActivity. When I try to do this, I get an error "Create MapActivity Class". If I do not extend it with MapActivity and use Activity instead, ...
0
votes
0answers
42 views

Incorrect overlay position for rotated MapView on S3

I am trying to display an overlay image on a MapView that is rotated. The display position is decided by the user tapping the screen. It works perfectly on some devices that I have tested this on, and ...
0
votes
1answer
51 views

No mapview in Pallette Android Eclipse ADT?

I've not seen mapview in the Palette when working with a layout in my ADT. I've searched all the categories. Where is it? I've tried putting in the XML code directly into the layout file but I'm ...
0
votes
1answer
72 views

MapView inside viewpager

I have a viewPager with some pages: one of those is a WebView ('case 0' in the code below). The problem is that instead visualizing the map, a blank page is displayed. What's wrong in my ...
0
votes
0answers
102 views

Osmdroid - offline map not showing (grey tiles)

I am using OSMdroid library, which displays my offline tiles from ZIP file. Problem is, sometimes, when I launch my map, I see only grey tiles. I have tried to launch map 20 times, 3x only greyed ...
0
votes
0answers
48 views

android viewmap addview centered

im working with maps in android and i need to make a info square when one item is pushed. I can do that... making a new view and adding to the mapview using .addview(); The problem i get is that ...
1
vote
0answers
18 views

Lagging in zoom Map

I have problem with app lagging when I have big zoom. I have maps with markers and area, when I make zoom biger the map is lagging. I was looking for solution, but I don't find. Please help me with ...
0
votes
0answers
9 views

android map display

I am doing an android project...and i have tried a lot to display a map.Now its that the code, i have got have no errors but not displaying the map but instead a grid...I have searched a lot regarding ...
0
votes
0answers
71 views

list is not sorting in autocompletetextview (using google place api)

i have a problem. i am using map so i need place search in my application. to take input for place, i am using auto complete text view. when i type in autocompletetextview it should show me drop down ...
4
votes
3answers
234 views

How to keep MKMapView in iOS 6 North oriented always when switching mode from MKUserTrackingModeFollowWithHeading

I am switching between the three different map orientation modes using MKUserTrackingModeNone, MKUserTrackingModeFollow, MKUserTrackingModeFollowWithHeading and this works. However I have a problem ...
0
votes
1answer
86 views

Create mapView programmatically

I want to instantiate a MapView programmatically. I'm using Osmdroid. I wrote this, but map is not displayed (with or without setting the parameters)! What's wrong? LinearLayout contentLayout = ...
0
votes
1answer
46 views

android google mapview

The Google Map in android application shows blank grids??? I use Google Maps Api v2 and I get my Android Api key, put it in activity_main.xml as in tutorials, also get Internet permission in manifest ...
0
votes
1answer
76 views

Add a mapview in Tab based app

I have a tab based app and in on of the tabs you can navigate to the map screen like this: select a category > select a company > click on 'contact us' button. 'Contact us' is the screen where I want ...
0
votes
1answer
374 views

ActionBarSherlock with Google map and fragment

I am trying to compile this example I am using: android-support-v4-googlemaps ActionBarSherlock-Plugin-Maps v.4.0 I have returned this error: java.lang.RuntimeException: Unable to start ...
2
votes
0answers
68 views

Location show on map according to list?

I am trying to fit a Google Mapview and a ListView into one activity. The Mapview shall take 2/3 of the upper side, and the list 1/3 of the lower side (in portrait). in this way assume it as ...

1 2 3 4 5 36