Hello I am using Google Maps API v2 for displaying the maps in android. Now I want to display Place labels in the satellite view. like SATUN , PERLIS etc... Though In the normal map view it is showing. Anybody know how to achieve that in satellite…
This is my code to get the Places suggestions from Google Places API. But it is showing some error like "Cannot connect to Google Places API". I have given the proper error which I am getting at the bottom of this code.
I just need an…
If I draw a shape with polygon on Google Maps v2, is there a way to find out if my current location is inside the shape?
please write me a clear code thanks
I posted about it an issue https://code.google.com/p/gmaps-api-issues/issues/detail?id=8387&thanks=8387&ts=1437921771
But still I want to know if anybody faced this and know the solution for this...
First I'm using nearBySearch http web service to…
I updated an application that had almost the same code, in the previously version I didn't have problems in proguard. When I launch the app since AndroidStudio I don't have problems, but When I launch a signed app in some parts of the app can show…
This is how I'm currently using my google map;
mapFragment = ((SupportMapFragment) getChildFragmentManager()
.findFragmentById(R.id.map)).getMap();
mapFragment.setMyLocationEnabled(true);
…
I received a null pointer exception when getting android google maps in a fragment. The error is at the line findFragmentById.I tried using
if (mMap != null) and it indicates that the map is still null. What can I do to resolve this?
In…
Can someone help me with this idea ?
I need to refresh array of locations (markers on map) and polyline represent a route between exact markers. I am doing it now with clear and draw new items, but it flickering markers and polyline.
Polyline…
I have two markers, namely startLocation and the other is stopLocation. startLocation will detect the user's current location, and then the user will walk, and when they stop they'll press stop and stopLocation will be captured as their new current…
AI have made a simple app that displays a marker at user's current location and I have used all permissions in the manifest. Here is the code:
public class LocationActivity extends FragmentActivity implements LocationListener {
SupportMapFragment…
I am trying to implement Google Maps in android, but whenever I run the app on the emulator it gives me the following Error:
06-25 02:21:52.890: E/AndroidRuntime(931): FATAL EXCEPTION: main
06-25 02:21:52.890: E/AndroidRuntime(931):…
I need to show an Infowindow of a Google map marker without the small triangle at the bottom. Please check the image which I have attached.
I tried by setting by changing setInfoWindowAnchor but it didn't work. Can anyone help me on…
I am developing a GoogleMap Map with a custom InfoView. In my InfoView, I want a hyperlink opening the native GoogleMap application with my longitude and latitude on Click.
I've tried by using the Common Intents API Guide and creating a hyperlink…
I'm in Android Studio and I have a map fragment (com.google.android.gms.maps.SupportMapFragment) that has two markers. One is static and called Target. The other tracks my movements and is called Hunter. It works but the problem is that the Hunter…
I am trying to use MapView with singleton approach.
Here I create MapView once and does its mapViewSingletonInstance.onCreate(savedInstance) only one time. After this I try to use it doing anotherMapViewObject.addView(mapViewSingletonInstance)
But…