The new Google Maps Android API v2 allows you to offer interactive, feature-rich maps to users of your Android application.

learn more… | top users | synonyms

24
votes
6answers
3k views

Moving MapFragment (SurfaceView) causes black background flickering

I'm trying to implement new Android Google Maps API (v2). However it doesn't seem to go well with SlidingMenu. As you may know, MapFragment implementation is based on SurfaceView. The problem is that ...
17
votes
2answers
656 views

Android Google Map API V2 : Open Custom Info Window on Right Side of Marker

I have Integrated Google MAP API V2 for Android. I want to have a Custom Info Window at Onclick of My Marker. Up to that it is fine. i have integrate it. What I want : I want to Show my Custom Info ...
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 ...
10
votes
2answers
666 views

What is recommended way to use Google Map v2 inside fragment?

I want to add map inside fragment with custom layout. I can do it using ChildFragmentManager that will add SupportMapFragment. This approach im currently using. However it has disadvantage because ...
10
votes
3answers
480 views

Offseting the center of the MapFragment for an animation moving both the target lat/lng and the zoom level

I've got a UI that has a MapFragment with a transparent View overlaid on top of it. The map takes up the entire screen, whereas the View is just the left third of the screen. As a result, the ...
7
votes
3answers
7k views

“Error inflating class fragment” with google map

I tried to make a sample project using Google Map, but I couldn't. Help me please! Test Device : Android 4.0.4 Error Message : 12-29 23:45:32.605: E/AndroidRuntime(9437): FATAL EXCEPTION: main ...
7
votes
2answers
1k views

Error opening SupportMapFragment for second time

When opening my SupportMapFragment (Android maps v2) for a second time (calling setContentView) I get the following error: 01-28 16:27:21.374: E/AndroidRuntime(32743): FATAL EXCEPTION: main 01-28 ...
6
votes
6answers
4k views

Google Maps Android API v2: Failed to Load Map. Could not contact Google Servers

I'm trying to use Google Maps Android API v2, and I have already created the SHA1 key from my release cert. I've read the comments from here and have made everything right, including the permissions ...
6
votes
2answers
119 views

Check if marker is inside circle radius

I'm trying to know if a given marker is inside a circle radius. In javascript, i can do something like: google.maps.geometry.spherical.computeDistanceBetween(latLngCircleCenter, latLngPoint); But ...
6
votes
1answer
2k views

Google Play services out of date. Requires 3025100 but found 2012110

I'm using the Google maps v2 in my app and am debugging it in the emulator. Since the update on the 26th Feb I now get this error message Google Play services out of date. Requires 3025100 but found ...
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 ...
5
votes
1answer
531 views

Android Map V2 - Why MAPS_RECEIVE permission

Consider this as a wiki question. While I setup my project to support Map V2, There has been a step to add MAPS_RECEIVE permission. <permission ...
5
votes
2answers
455 views

How to offset the balloon view in a marker in Google Map V2?

When I click a marker, appears a balloon. But there are too space between the marker and the balloon, so how I can reduce this distance?. It's like using the setBalloonBottomOffset method in the V1 ...
5
votes
2answers
421 views

Android MapFragment Runtime Error - Could not find class 'maps.j.k'

I'm using a SupportMapFragment with complete success. I'm not having any problems at all. However I'm getting an error during my app's runtime. I'm running on a Gingerbread Phone and it has the ...
5
votes
1answer
257 views

MapFragment gets a dark overlay when used in DialogActivity

I'm trying to show a MapFragment of the Android Maps v2 API in an Activity with the @android:style/Theme.DeviceDefault.Light.Dialog.NoActionBar theme. This works fine. However, the map gets a dark ...
4
votes
1answer
1k views

Don't snap to marker after click in android map v2

Currently Android Map v2 snaps to marker location after click. I want to disable this behavior but see no options to do it. Does anybody know how to fix that?
4
votes
2answers
650 views

clustering markers on android maps v2

Recently I worked on an android project in which I managed to add markers to a MapView and cluster those markers if they were too close to each other. Now I have to do the same using the new ...
4
votes
3answers
203 views

Google Maps v2 lag after popping their fragment back from stack

I have an Activity with a MapFragment that I add to the Activity programmatically using a FragmentTransaction: private static final String MAP_FRAGMENT_TAG = "map"; private MapFragment mapFragment = ...
4
votes
2answers
289 views

Android - how to get map co ordinates from map view

In my application i am displaying places using markers on google maps. But i am marking all the available places at once which i dont want to do. I wanted to display the places which only fits into ...
4
votes
6answers
601 views

In Version 2 Map view does not show map

Map Activity doesn't showing map, it's appear as just white screen with zoom control buttons. Manifest File like this : <?xml version="1.0" encoding="utf-8"?> <manifest ...
4
votes
4answers
1k views

Google map android API V2 crashed

I want to load the google map API on my android. I try everything I search but it still crash. this is my MainActivity.java package com.example.androidmapsv2; import android.os.Bundle; import ...
4
votes
0answers
354 views

New gms.maps.MapView rendering lags a bit when in a ListView?

I'm trying to put an instance of the new MapView in a ListView. New mapview being: com.google.android.gms.maps.MapView I'm turning all interactions off, and setting a fixed height for the view: ...
3
votes
2answers
672 views

TileProvider using local tiles

I would like to use the new TileProvider functionality of the latest Android Maps API (v2) to overlay some custom tiles on the GoogleMap. However as my users will not have internet a lot of the time, ...
3
votes
2answers
2k views

custom info window adapter with custom data in map v2

I want to make custom info window adapter in map v2 in android as like below. I have seen below link but doesn't get more. 1,2,3, below is my content layout file. <?xml version="1.0" ...
3
votes
1answer
126 views

Maps API throws NullPointerException on animateTo() method

I'm getting a fatal exception when trying to animate the map to a certain GeoPoint - here is the Exception: 12-20 17:53:20.400: E/Crittercism(3523): java.lang.NullPointerException 12-20 17:53:20.400: ...
3
votes
2answers
46 views

Getting latitude & longitude from address in android

i am try to get latitude & longitude from address , problem is that .. when i give only city name than it give me correct latitude & longitude and when i give complete address (like state , ...
3
votes
1answer
220 views

Swap between Android maps v2 fragment and listfragment

I want to be able to switch between a list fragment and the map fragment by a user pushing an actionbar button. Currently I can swap between them just fine but I'm running into a null pointer when ...
3
votes
1answer
466 views

setContentView() slow with map fragment

I am working on an app that shows a google map (api v2) as a fragment. When the app loads it shows a blank white screen for a couple of seconds before showing the map. I have used log statements see ...
3
votes
0answers
88 views

SecurityException when calling getLastKnownLocation

We've been getting reports of crashes on some devices when a user opens an Activity that calls the location manager's getLastKnownLocation method. We've requested all the required permissions in our ...
3
votes
1answer
170 views

Disable on click highlight of InfoWindows?

Is there any way to disable the highlight effect that comes when user clicks on a InfoWindow in the new Mapsv2 Api for Android? This is an issue with both the getIfoContent() and the getInfoWindow() ...
3
votes
0answers
309 views

Generate heat map layer using google map api v2 for android

I want to plot heat map on android phone based on the signal strength in a area. i am able to get google map using android map api v2 . but i am not getting any idea how to plot heatmap on it . I ...
2
votes
2answers
2k views

get latitude and longitude with geocoder and android Google Maps API v2

I'm using the Google Maps API v2 for android and works properly. However, I am trying to use geocoder to get the longitude and latitude of an address, but without success. It has changed the way to ...
2
votes
2answers
608 views

Android MapView With Sliding Menu Obscures Menu

I have a map view for android maps api v2 in an activity that uses this sliding menu https://github.com/iPaulPro/SlidingMenu. The sliding menu works great except for on the map page. There is a ...
2
votes
1answer
413 views

Is there a way to implement rounded corners to a Mapfragment?

I want to give the map a nice looking rounded corners as the two boxes below it have. I can't do it with the map fragment it self because there is not a background property to a fragment. setting the ...
2
votes
2answers
941 views

Change marker size in new Maps v2 API

I'm trying to port my app to the brand new Google Maps API V2, but can't find how to change the size of the marker (some of my markers are smaller than default). In v1 I used a Drawable which I ...
2
votes
2answers
927 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 ...
2
votes
1answer
505 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 ...
2
votes
1answer
101 views

Intercept a click on the built-in myLocation-Button of a GoogleMap

Is there any way that I can intercept/catch a click on the myLocation-Button on a GoogleMap (API v2)? The reason I need this is this: I calculate distances to my map markers. The default reference ...
2
votes
1answer
829 views

Android Google Maps V2 Load into Fragment

I have list_detail layout using fragments, showing list of saved places on the map, when the application first started, the first place is selected, the map gets initialized and camera position ...
2
votes
1answer
132 views

How to access location change in background for Google Maps android API v2?

In my app I am using Google Maps android API v2 and I have to get the current location coordinates on the change in location even when my app is in the background and do certain task. How can I do ...
2
votes
1answer
276 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 ...
2
votes
2answers
159 views

Android GoogleMap 2 update information dynamically in InfoWindow with ImageView via Universal Image loader

I am working on new Google Map v2 API. I have used ImageLoader to display images dynamically on Marker. But the problem is when I have got onLoadingComplete() of Universal Image Loader, the ...
2
votes
1answer
180 views

Using Custom Typeface in Maps V2

Am trying to customize the view of Snippet & Title in MapView using CommonsWare's Example However am not able to Customize the Typeface of the snippet. Any luck?
2
votes
2answers
1k views

Google Map Android API v2: Authorization Failure

I am trying to get my Google Maps to display on my app, but it is not working and this error appears: 01-25 11:38:54.763: E/Google Maps Android API(30514): Authorization failure. I am currently ...
2
votes
2answers
643 views

How to get Bitmap of MapView from Android Google Maps API V2

I'm updating my app to the new Android Maps API V2 and ran into a problem when trying to get a bitmap image of the currently shown map. In API V1 I did this like so: Bitmap mBitmap; MapViwe mMapView; ...
2
votes
1answer
121 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 ...
2
votes
1answer
426 views

Android Google Maps Version 2 Not Displaying

I know there have been a ton of posts on this topic, but I am puzzled. I have (2) different phones that I am testing my App on. The Google Map (Support Map Fragment) displays fine on each device, ...
2
votes
0answers
26 views

Maps API v2 - no longer possible to draw into canvas? [duplicate]

With Maps API v1 it were possible to draw MapView into canvas. I've used this feature in my library to speed up animations. With Maps API v2 it's seems no longer possible - after drawing canvas ...
2
votes
2answers
408 views

How do i disable installed version of Google Play services on my android device?

My application uses Google maps feature which needs Google Play services to be installed and enabled on the device.I wanted to test a case in which if Google play service has been disabled by user ...
2
votes
0answers
99 views

Android Maps api v2 strange phenomenon

I've integrated a map fragment (Android Maps Api V2) in my app, and this works fine as shown in this pic : but when soft keybord is shown, map is slided to top and becomes blank as shown in the ...

1 2 3 4 5