androidgoogle-mapsgoogle-maps-android-api-2

google maps not rendering while driving android


I am facing an issue of google maps rendering maps while driving it's not updating the map fast

I have tried several ways to counter this but no result

Thank you in advance

Screenshot while driving


Solution

  • This issue was resolved in google maps latest version 18 or above

    implementation 'com.google.android.gms:play-services-maps:18.1.0'
    
    try {
        MapsInitializer.initialize(getApplicationContext(), MapsInitializer.Renderer.LATEST, this);
    } catch (Exception e) {
        Log.e(TAG, "onCreate: " + e.getMessage(), e);
    }