Questions tagged [google-maps-android-api-3]

Version 3 of the Maps SDK for Android is a new implementation with the same API surface as the previous version (all classes and methods remain the same).

The main areas of change Maps SDK for Android v.3 are as follows:

From the documentation:

  • The Maps SDK for Android is now distributed via a standalone static library. Previously, the Maps SDK for Android was made available as part of Google Play services.
  • Android 4.0-4.0.4 ("Ice Cream Sandwich") is no longer supported.
  • Map rendering has been modernized and improved.
  • Text labels for POIs are now clickable, rather than just the icon.
  • Business POIs are now visible in indoor maps.
  • Added incident reports icons to the traffic layer, such as roadworks, crashes, and traffic jams. These show in Normal, Hybrid and Terrain mode.
  • Added support for 3D buildings with full models, e.g. Eiffel Tower.
  • Increased opacity of 3D buildings to match the Google Maps application.
  • Resolved an issue where markers were loading slowly (Issue 35822423).

Official documentation:

Maps SDK for Android v.3

Maps SDK for Android samples

21 questions
0
votes
0 answers

Generating Bitmaps for Google MapOverlays with Kotlin Coroutines

I'm having some issues building out a section of my code which edits server sent thumbnails and renders them as a Google GroundOverlay. The issue seems to stem from Kotlin Coroutines. First, the documentation from Google says that the ground…
0
votes
0 answers

What is the latest way to get the direction user is facing wrt earth's true north and rotate the heading arrow on google map in android?

I am new to android development and I am trying to build an app for learning purposes. I have used the Google maps sdk 3.0 inside a fragment and implemented fusedlocationclient api successfully. Now I downloaded DevCheck app and saw the orientation…
0
votes
0 answers

Google android map app crashes while getting latitude and longitude from the database

I need to show a bus location on the map, I have latitude and longitude saved in my database. To retrieve the Latitude and Longitude i am using AsynTask. But i think there is some problem with my code, app crashes if call AsyncTask in onMapReady. I…
0
votes
2 answers

NonHierarchicalViewBasedAlgorithm from android-maps-utils use pixel or dp on constructor params?

The class NonHierarchicalViewBasedAlgorithm from googlemaps/android-maps-utils have a constructor: public NonHierarchicalViewBasedAlgorithm(int screenWidth, int screenHeight) { mViewWidth = screenWidth; mViewHeight = screenHeight; …
Daniel Gomez Rico
  • 15,026
  • 20
  • 92
  • 162
-1
votes
1 answer

Google Mobile Native Dynamic Maps without MapID is totally free?

From what I understand from many Google Maps API documentations, if I use the Google Mobile Native Dynamic Maps for Android/iOS on XAMARIN without a Map ID (used for map styling), will I be charged if I exceed the 500,000 API requests?
cheikh17
  • 57
  • 8
-1
votes
1 answer

How to make google map API markers clickable and open new Activity?

I want to have my markers so that when clicked upon they will open a new activity that will display a list of locations from my SQLite database. If someone could show me the code to add to my markers to open activity for that particular marker it…
1
2