Most voted "google-maps-android-api-2" questions
Google Maps API v2 Android Library created by Google where the main purpose would be to facilitate the manipulation of the map compared to the previous version.
Learn more…62 questions
Sort by count of
-
0
votes1
answer204
viewserror: incompatible types: Mapsfragment cannot be converted to Fragment
I am trying to add the Google Maps API fragment to the main project screen error: incompatible types: Mapsfragment cannot be converted to Fragment part of the code: fragmentManager =…
-
0
votes1
answer201
viewsGoogle Maps Api in android app does not work in Play Store
I developed an application for Android that shows google maps in one of the activitys, in the tests works well, except that the application published in the Play Store does not show the map. I…
-
0
votes0
answers20
viewsReceive information from Google Routes with React Native
I have an application in React Activate with React-Native-google-maps-Directions and I need it to receive information from google routes in real time. For example, "turn right", "turn left". It is…
react react-native google-maps google-maps-android-api-2 bluetoothasked 3 years, 9 months ago Carlos Henrique 1 -
0
votes1
answer286
viewsCreate a Marker at the current Maps position with Fragment
Hello, I need to put a Marketer in my current position and show on Google Maps, but as I am using Fragment the setMyLocationEnabled method does not work, I have already gone after the internet on…
android google-maps android-fragment google-maps-android-api-2asked 8 years, 1 month ago Carlos Vicente 23 -
0
votes1
answer39
viewsError when customizing Infowindowadapter on Google Map?
I have this XML file: ?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent"…
-
0
votes0
answers56
viewsCheck user inside Map Circle and activate a button
I am developing an application and I came across a logic that I am not able to solve, if someone can give a strength I would appreciate it very much. I have a destiny that has a range circle of it I…
-
0
votes1
answer709
viewsHow to add an image stored in firebase Torage to imageView inside an infowindow of a Marketer?
I need to download a firebase image and display it in a custom infowindow on a map. public class MapaFocosActivity extends AppCompatActivity implements…
-
0
votes1
answer847
viewsGoogle Maps API Map No Renderiza on Mobile, Only in Android Studio
I am learning Android alone, via the internet and am working this time with Google Maps API. I’ve done several things with it in Android Studio, displaying, using Marker, geolocation, among other…
-
0
votes0
answers165
viewsVery large delay when getting GPS coordinates
I’m having delay problems getting GPS coordinates. I pick them up the moment the user presses a textbox to validate the data. Motorola’s Vics are doing fine. Now testing on the Oneplus 3T (A3000)…
-
0
votes1
answer199
viewsWhy can’t I add a marker by clicking on the map?
I’m using this code: import android.os.Bundle; import android.support.v7.app.AppCompatActivity; import com.google.android.gms.maps.GoogleMap; import com.google.android.gms.maps.OnMapReadyCallback;…
-
0
votes1
answer328
viewsHow to use SVG icon in Google Maps addMarker (Markeroptions) API Android
I am using the following Example code from the Google Maps v2 API for Android: mMap.addMarker(new MarkerOptions() .icon(BitmapDescriptorFactory.fromResource(R.drawable.ic_bike)) .anchor(0.0f, 1.0f)…
-
0
votes0
answers95
viewsListener (Listener) for Google Maps v2 Android Camera Zoom changes?
I’m using the Cameraposition() to get Camera Zoom on Google Maps mMap.getCameraPosition().zoom It works perfectly when I call somewhere in the code, but I would like to create a Listener (Listener)…