0
votes
0answers
11 views

Custom Overlays - Google Maps V2 - Android - Trails

I'm trying to use some of my custom overlays from GMaps V1.1 and have a custom overlay that can be used in my GMaps V2 MapView. I've read some tutorials on using Markers to add custom overlays however ...
0
votes
2answers
86 views

getMap() returning null

My getMap() method is returning null. Why is this method returning null? I looked on the Android Developers documentation to make sure I'm using this method correctly. Here a the line of code that ...
0
votes
3answers
144 views

Authorization failed. Failed to load map. Could not contact Google servers. (Google Map for Android)

I have been in this problem for a day now. I have followed and even changed to exactly alike from the tutorials. I can't seem to understand what's the problem. Everytime I run it to my device the map ...
0
votes
0answers
42 views

android - GMaps V2 - Get the Tile Size in Pixels

I'm using Google Maps V2 for Android and am trying to create a method to get the size of a tile in pixels to calculate the pixel zoom level. Here is the code I have: private int calculateZoomLevel() ...
0
votes
1answer
86 views

Google Maps V2 - Android - invalidate() Equivalent

I'm trying to write a method that is equivalent to the following code: private MapView mGoogleMapView; public void clearAnimation() { if (mGoogleMapView != null) { ...
0
votes
0answers
39 views

Google Maps V2 - Android - postInvalidate() Equivalent

I'm trying to write a method that is equivalent to the following code: private MapView mGoogleMapView; public void postInvalidate() { if (mGoogleMapView != null) { ...
1
vote
3answers
85 views

Google Maps V2 - Android - Get the current zoom level

How do I get the current zoom level as an integer on a GoogleMap. I need to take this code from GMaps v1.1: MapView mGoogleMapView; int zoomLevel = mGoogleMapView.getZoomLevel(); I am aware of ...
0
votes
1answer
115 views

Android GMaps v2 - Get location of the center of the map & map height and width

I'm trying to get the latitude and longitude of the center of the map in the Google Maps V2 API & get the width and length of the map. Here is my old code(from GMaps v1 that I started to modify): ...
0
votes
0answers
50 views

How to draw continuous line in android map api v2?

I want to draw a line in Google map as user moves from one location to another location. Means as user move ,i have to draw a line when he start moving and stop when he reached that place. And i also ...
0
votes
1answer
44 views

Calculating points for bezier curve for map

I'm calculating the necessary oints for a bezier curve between to geo location points to draw the line at Google Maps V2. My problem is that it doesn't work correctly if the line has to be drawn 'over ...
0
votes
0answers
95 views

Save/Restore Google Map state

I'm working with Google Maps for Android v2 and adding the map fragment via FragmentTransaction. When I navigate away from the fragment containing the mapview it disappears. So, when I return to the ...
0
votes
1answer
88 views

Is there a Android Google Maps v2 Marker Manager out there?

I'm trying to find a way to manage the markers I have on a android map (v2) implementation in my app. I'd like to be able to draw markers that are inside the viewable boundary and at the same time ...
2
votes
1answer
119 views

google map V2 issue with jar file

i have developed google Map v2 tutorial in February help of this tutorial. Its working fine at that time my code is below: <?xml version="1.0" encoding="utf-8"?> <manifest ...
0
votes
2answers
347 views

MapView in android application

I am trying include google map in my android application. I gone through this procedure to get the Map API key. After getting the key i wrote the following code to display the map in my ...
0
votes
1answer
124 views

Google maps api v2 in multiple fragments android

I have a FragmentActivity and this is a tab bar. In first tab contain a fragment (Supportmapfragment). In second tab, also contain a fragment (Supportmapfragment). When i switch to second tab i can't ...
1
vote
4answers
878 views

Blank Screen Android 2.2 Google Maps v2

EDIT : I transferred my 20+ projects that tries to use Google Maps for Android v2. After changing keys and stuff, now, it works. I don't know what made this work, but thank you all. I got one ...
0
votes
0answers
158 views

Adding GroundOverlay takes a lot of time

I'm working with Google maps api v2. When I add a GroundOverlay it take some time before I can visualize it. It's why I need to refresh the map? Is there the method "invalidate" as in google maps api ...
0
votes
2answers
678 views

Android Maps v2 rotate mapView with compass

Im developing an app which needs to rotate the mapView with compass. i know how to rotate the camera but i need to rotate the mapView with compass. the center point should be the current location. i ...
2
votes
2answers
920 views

Android Google Maps API v2: Authorization failure at different laptops

I've followed the steps here and here to create a MapView in our teams project which we sync with svn. After following the steps, MapView was running smooth, but only on my laptop. My project members ...
1
vote
1answer
957 views

error with google maps v2 in tab (MapFragment in Fragment)

I have a fragmentActivity where I build a tabHost and in each tab there is a Fragment. Well, I haver four tabs 3 with info and 1 with a fragment where is included a google-map-v2 (is a fragmentMAp in ...
11
votes
4answers
2k views

Google Maps Android API v2 SupportMapFragment memory leak

Using 2 simple activities. First Activity which only holds a button to start the 2nd Activity which holds the map: Main Activity: public class MainActivity extends Activity { @Override protected ...
1
vote
2answers
335 views

Using SupportMapFrament in a two pane layout gives duplicate layout error

I'm using a ListView which drives a detail view. The List view and Detail view have their own activities. The detail view displays a map in a smaller layout. The code for map fragment is as follows: ...
5
votes
5answers
1k views

How to change the position of maps api's “Get my location” button

My problem is, that I've implemented AdMob banner ads in my app (located in the top) which uses a map from Google Maps Android Api v2, and it overlaps the "My Location" button. How would you change ...
2
votes
1answer
501 views

In Android Map v2 API how to get screen image to share?

It appears that new android map v2 api (which is really cool, third parties can access rotatable maps, etc. thanks google!) DOES NOT allow easy access to the screen image (we'd like to save the screen ...
0
votes
2answers
274 views

Google maps do not appear on the screen

After seeing several forums and tutorials for Google maps for Android, and I have this public class MapsActivity extends MapActivity { MapView mapView; MapController mc; GeoPoint p; class ...