1
vote
1answer
214 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 ...
1
vote
1answer
58 views

Map not works in map v2

I want to get map location by name. But map is not showing lcoation. My code is given below: SupportMapFragment fm = (SupportMapFragment) getFragmentManager().findFragmentById(R.id.map); ...
1
vote
1answer
97 views

How to open navigation instead of mapview in android?

I have plotted location and if it has been clicked, it goes to maps and from maps, if it has been clicked direction, it opens google navigation.Is it possible to directly link with navigation? I have ...
10
votes
2answers
608 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 ...
0
votes
1answer
160 views

MapFragment blocked or stunned when application is killed or state saved

I'm getting problems using MapFragment + ListFragment in an Activity, when I use show() and hide() method, everything works ok, but when I have my application in background and I return, I get the ...
4
votes
2answers
586 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 ...
-1
votes
1answer
121 views

Is it possible to draw a route on android api v2? [closed]

I am trying to draw a route on android maps v2, but it draws only a straight line.
0
votes
0answers
148 views

OnInfoWindowClickListener() for OSMDroid Bonus Pack?

I was wondering if there is some kind of implementation in OSMDroid that is similar to Android Google Map API v2's method OnInfoWindowClickListener()? For my Android Google Map AVI v2: ...
2
votes
2answers
568 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 ...
0
votes
2answers
185 views

Google map Activity

I want to use map activity in my application, I don't know how to deal with Google Map API v2. How to generate an API key and All? Right now my application is not working with normal intent code. ...
1
vote
2answers
527 views

Android Maps v2 - animate markers

I'm creating a cluster feature for maps (v2). I group location into clusters and then display the clusters as custom markers: This works great, but I would like to create an animation when clusters ...
0
votes
3answers
996 views

Google Map Android API v2 : GoogleMap is null

I'm trying to explore using the MapView class for GoogleMap display, with no luck, as most codes examples are using MapFragment which I do not want. I am using Google Maps Android API v2. At first, ...
4
votes
1answer
998 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?
2
votes
0answers
164 views

Reuse Google Map v2 across several fragments in single Activity

One of my activities switches the fragments that contains google map. At first I tried to use fragment's child fragment mananger (ChildFragmentManager) to add SupportMapFragment. It works ok, but map ...
1
vote
2answers
1k views

Google Maps v2 Error on use of setMyLocationEnabled

I am not sure were I went wrong, getting a nullPointerException on using googlemap.setMyLocationEnabled(true) in Google Map v2 example. MainActivity.java File: package ...