Tagged Questions
0
votes
1answer
13 views
TileOverlay issue
So, when I use my MapBox maps, the Tiles are overlaid OVER my polylines and polygons, so they cannot be seen.
Is there any way to modify this behavior?
This is the code I'm using:
public class ...
0
votes
2answers
20 views
Zoom Move Pinch listener in google maps v2 in android
i'm using the maps v2 in my Android APP
My map is automatically updated every few seconds to show some new points on the map.
For every time it refresh, automatically the following event: ...
0
votes
1answer
28 views
post to specific people in google+ and retrieve these posts from google plus in android
I am creating an android app, i would like to know how to post to specific people in google plus.
I would also like to know how to parse google + posts? Especially the ones that is shared only to ...
0
votes
0answers
22 views
Height of terrain Google Map Api v2
Like in tilte, is there any way to get height of the terrain from the google map?
I know that apps like Endomondo using the profile of the area in meters above sea.
Can i do it in my app using some ...
-1
votes
1answer
27 views
Goggle Direction code is not working on Android 4.03
I'm working on Google Maps application and use a code for finding path between two points, this works fine on Android 2.3.3. But Now, I'm testing it on Android 4.0.3 and it crashes. I thing it need to ...
0
votes
1answer
34 views
MapFragment - NullPointerException - Google Maps V2 - Android
I'm getting an NullPointerException with the following code:
private ProjectionProxy proxy = new ProjectionProxy();
private GoogleMap mMap = null;
private Context context = this;
@Override
...
4
votes
4answers
352 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 ...
0
votes
4answers
46 views
Android Dependencies Issue
I am writing a MAP APP using Android Google Maps V2
But i am facing dependency problem, please see below images:
as you can see in above screen shot i am getting RedAlert Sign over Project Name
...
0
votes
3answers
47 views
Error android.support.v4.app.Fragment$InstantiationException: Unable to instantiate fragment com.google.android.gms.maps.MapFragment
i am following tutorial for using google maps api v2 .i am facing an error
error logs are
05-15 00:08:18.415: E/AndroidRuntime(4547): FATAL EXCEPTION: main
05-15 00:08:18.415: ...
0
votes
1answer
30 views
Android: two activities with two maps; the second one doesn't load properly
I try to explain better:
My app has a tab bar (a TabHost) and two of the tabs are two activities with a map each.
When i click on the first tab I get the map and i can use it as i want. When I click ...
0
votes
4answers
99 views
Google Map V2 not working for me . Any sample?
I have used many samples of Google map V2, and i have followed all the things which are necessary for this. But still having problem, only map view is showing and my current location is not being ...
0
votes
1answer
80 views
Android Map goes black when slide menu activates
In my app I have set a few tabs using FragmentActivity and a button beside my tabs which activates a slide menu. At the moment I have two Fragments which are displayed for tab 1 and 2. The fragment ...
0
votes
2answers
80 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
1answer
120 views
Google maps api v2 get directions
I am using google maps api v2 in android . I have placed a marker. How can i get directions between current location and the marker.Any help would be great.
1
vote
1answer
56 views
Big clickable marker Google android maps api v2
I am using the Google android maps api v2, and have to put a tall marker on it (way taller than the default size). The issue is when I put a tall marker, only the bottom half of it is clickable and ...
0
votes
3answers
134 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
1answer
44 views
The import com.google.android.maps.OverlayController cannot be resolved
I need some help here. I am actually following the
http://www.anddev.org/google_driving_directions_-_mapview_overlayed-t826.html
tutorial for learning the Driving direction on google maps but the ...
0
votes
1answer
38 views
OnCameraChange not returning expected value
First let me state that this question concerns Map v2 API for my native Android application. Second, I've looked at a number of stackOverflow postings on how to detect panning changes on Map v2 API ...
0
votes
3answers
37 views
Android - Context - Google Maps V2 - Type mismatch: cannot convert from Object to WindowManager
I'm trying to get a WindowManager using the getSystemService() method. Here is the code I have:
private int calculateZoomLevel() {
int ht, screenWidth;
DisplayMetrics displayMetrics = new ...
0
votes
0answers
32 views
Calculate Tile Size - Android - GMaps V2
I'm trying to figure out how to calculate the tile pixel size to be able to calculate the pixel zoom level using the following code:
int getPixelZoomLevel() {
return calculateZoomLevel() + ...
0
votes
0answers
41 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
35 views
Add google map to android app
I need help in adding google map to my android app. I have followed the instructions on
https://developers.google.com/maps/documentation/android/start, but i still get a error on running the App.
...
0
votes
1answer
91 views
My Location is not shown on the screen on Google Map v2?
I'm making an android application which should be able to retrieve the user's correct location, and put it in a HashMap to show the route in a different layout.
Anyway my question is, why location ...
0
votes
0answers
29 views
Get traffic on route with android - maybe using API [closed]
I would like to create some code that using an api, can check the traffic on a specific route / Google maps api polyline and return the time it would take to travel between the start and end of the ...
1
vote
3answers
105 views
How to create release key for android v2 maps
I tried below code for a debug key and its working fine. When i make a apk then map is crashing. After searching in google i found debug key is work in release mode.
keytool -list -v -keystore ...
0
votes
1answer
78 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
38 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
73 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
2answers
26 views
Selectively using adroid maps v2 based on user phone features
I am using Android Google maps V2 in my application.
If the user doesnt have internet connection, i send them to an alternative activity without maps.
The problem is that my app is not supported on ...
17
votes
2answers
542 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 ...
0
votes
1answer
101 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
1answer
77 views
Set Location Center of Map - GMaps v2 - Android
How do I set the center of the map to a specific location using GMaps v2? This is how I did it using GMaps v1:
public void setCenter( LatLng point )
{
if( point.latitude*1000000 != 0 && ...
0
votes
0answers
28 views
Android google v2 marker
i have problem with google map v2 marker
so.. create marker on map works fine but... I after 12s change position and i want marken setPosition not to create new marker so my code
Timer timer = new ...
0
votes
1answer
82 views
SupportMapFragment's getMap() returns null
I'm trying to create a SupportMapFragment dynamically and to put it in a FrameLayout container.
My issue is that mMapFragment.getMap() returns null...
Anybody can help?
CenterMapFragment.java
...
0
votes
0answers
29 views
Remove or Relocate or get size of Google logo in Android maps v2
I want to place two images on map's bottom left corner. But at that place there is Google logo. I don't want image on that logo.
Can I remove Google logo.
If not than can I relocate it.
Can I get ...
0
votes
0answers
75 views
Android google api v2 issues on android 2.3.5
I have a strange problem with the android app I`m developing. I went through all the circles of hell while trying to make the api v2 come to life: I created the debug key, downloaded and imported the ...
4
votes
3answers
189 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 = ...
0
votes
1answer
100 views
Android Performance Issue- TabHost - Timer - SetCurrentTab() - Google Maps Api V2
As i said in title i 've got a performance issue on my Android application. I've got a public static tabhost and a timer and a Google Maps. Timer scheduled to work every 3 seconds. It 's updating ...
2
votes
1answer
121 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 ...
0
votes
2answers
62 views
Can I disable multi-touch zooming in GooglMap API2
Is it possible to disable/enable multi-touch zoom in GoogleMap API 2? I like to implement it programatically disable or enable when it is necessary.
Thanks
-2
votes
1answer
47 views
Does Android Geocoder work only with internet connection?
I'm trying to get the clicked address on a Google Map with the onMapLongClickListener(LatLng point), using the lat and the lng of the point and converting them in a address with a Geocoder.It works ...
1
vote
1answer
227 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
1answer
26 views
How to add basic grids to GoogleMap Api v2
I would like to add the basic grids to my GoogleMap that use to be on maps.
I read the docs but didnt found anything that could help, maybe the TileOverlay or GroundOverlay can do the trick, but i ...
0
votes
2answers
73 views
Google maps v2 on android devices with minSDK below 11
i have problem with this line when I create project which use Google maps API v2.
GoogleMap map = ((MapFragment) getFragmentManager().findFragmentById(R.id.map))
.getMap();
It's says that I ...
-4
votes
2answers
98 views
Android: can anyone give example how to load map using google map v2? [closed]
I want to load map in my app, but not able to interpret help from google developers documentation.
3
votes
0answers
85 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 ...
0
votes
2answers
349 views
Google Maps API V2: GPS icon doesn't appear
In my app I have recently upgraded Google Maps from V1 to V2.
Now, with an HTC One S (Android 4.1.1) when I switch on GPS and enter in the map activity, the app recognizes that GPS is on but its icon ...
0
votes
2answers
56 views
Google maps extenstion
i want to use this google maps extenstion :
https://code.google.com/p/android-maps-extensions/
however i didnt understand how do i combine it to my project?
i downloaded the zip in this website ...
2
votes
2answers
137 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 ...
6
votes
2answers
111 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 ...







