Add bounds to map to avoid swiping outside a certain region

AndroidGoogle Maps-Android-Api-2

Android Problem Overview


My app shows a map and i want that users can't swipe over a certain region. So i'm trying to add bounds but it makes the app to crash. Here is the working code:

public class MapViewer extends Activity implements OnInfoWindowClickListener {
	private LatLng defaultLatLng = new LatLng(42.564241, 12.22759);
	private GoogleMap map;
	private int zoomLevel = 5;
	private Database db = new Database(this);
	  
	protected void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		setContentView(R.layout.mapviewer);
	 
		try {
			map = ((MapFragment) getFragmentManager().findFragmentById(R.id.map)).getMap();
			if (map != null) {
				map.setMyLocationEnabled(true);
				map.setMapType(GoogleMap.MAP_TYPE_NORMAL);
				map.getUiSettings().setRotateGesturesEnabled(false);
	 
				map.moveCamera(CameraUpdateFactory.newLatLngZoom(defaultLatLng, zoomLevel));
				 
				this.addMerchantMarkers(new MarkerOptions());
				
				map.setOnInfoWindowClickListener(this);
			}
		} catch (NullPointerException e) {
			e.printStackTrace();
		}
	}
	 
	@Override
	public void onPause() {
		if (map != null) {
			map.setMyLocationEnabled(false);
			map.setTrafficEnabled(false);
		}
		super.onPause();
	}

	public void addMerchantMarkers(MarkerOptions mo) {
		SQLiteDatabase dbRead = db.getReadableDatabase();
		String[] columns = {"title", "addr", "lat", "lon"};
		Cursor result = dbRead.query("merchants", columns, null, null, null, null, null);
	
		while(result.moveToNext()) {
			String merchant = result.getString(0);
			String address = result.getString(1);
			float lat = result.getFloat(2);
			float lon = result.getFloat(3);
		
			LatLng pos = new LatLng(lat, lon);
		
			map.addMarker(mo.position(pos)
					.title(merchant)
					.snippet(address)
					.icon(BitmapDescriptorFactory.fromResource(R.drawable.marker_50)));;
		}
	}
}

And this is the code i add in onCreate method that cause the crash:

	LatLngBounds.Builder builder = new LatLngBounds.Builder();
	builder.include(new LatLng(47.09194444, 18.52166666));
	builder.include(new LatLng(36.448311, 6.62555555));
	LatLngBounds bounds = builder.build();
	
	CameraUpdate cu = CameraUpdateFactory.newLatLngBounds(bounds, 30);

	map.animateCamera(cu);

Here is the LogCat:

08-10 20:59:41.689: E/AndroidRuntime(6304): FATAL EXCEPTION: main
08-10 20:59:41.689: E/AndroidRuntime(6304): Process: com.example.myapp, PID: 6304
08-10 20:59:41.689: E/AndroidRuntime(6304): java.lang.RuntimeException: Unable to start activity ComponentInfo{com.example.myapp/com.example.myapp.MapViewer}: java.lang.IllegalStateException: Error using newLatLngBounds(LatLngBounds, int): Map size can't be 0. Most likely, layout has not yet occured for the map view.  Either wait until layout has occurred or use newLatLngBounds(LatLngBounds, int, int, int) which allows you to specify the map's dimensions.
08-10 20:59:41.689: E/AndroidRuntime(6304): 	at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2215)
08-10 20:59:41.689: E/AndroidRuntime(6304): 	at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2264)
08-10 20:59:41.689: E/AndroidRuntime(6304): 	at android.app.ActivityThread.access$800(ActivityThread.java:144)
08-10 20:59:41.689: E/AndroidRuntime(6304): 	at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1205)
08-10 20:59:41.689: E/AndroidRuntime(6304): 	at android.os.Handler.dispatchMessage(Handler.java:102)
08-10 20:59:41.689: E/AndroidRuntime(6304): 	at android.os.Looper.loop(Looper.java:136)
08-10 20:59:41.689: E/AndroidRuntime(6304): 	at android.app.ActivityThread.main(ActivityThread.java:5139)
08-10 20:59:41.689: E/AndroidRuntime(6304): 	at java.lang.reflect.Method.invokeNative(Native Method)
08-10 20:59:41.689: E/AndroidRuntime(6304): 	at java.lang.reflect.Method.invoke(Method.java:515)
08-10 20:59:41.689: E/AndroidRuntime(6304): 	at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:796)
08-10 20:59:41.689: E/AndroidRuntime(6304): 	at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:612)
08-10 20:59:41.689: E/AndroidRuntime(6304): 	at dalvik.system.NativeStart.main(Native Method)
08-10 20:59:41.689: E/AndroidRuntime(6304): Caused by: java.lang.IllegalStateException: Error using newLatLngBounds(LatLngBounds, int): Map size can't be 0. Most likely, layout has not yet occured for the map view.  Either wait until layout has occurred or use newLatLngBounds(LatLngBounds, int, int, int) which allows you to specify the map's dimensions.
08-10 20:59:41.689: E/AndroidRuntime(6304): 	at mut.b(Unknown Source)
08-10 20:59:41.689: E/AndroidRuntime(6304): 	at oxp.a(Unknown Source)
08-10 20:59:41.689: E/AndroidRuntime(6304): 	at oxi.a(Unknown Source)
08-10 20:59:41.689: E/AndroidRuntime(6304): 	at oyf.b(Unknown Source)
08-10 20:59:41.689: E/AndroidRuntime(6304): 	at grl.onTransact(SourceFile:92)
08-10 20:59:41.689: E/AndroidRuntime(6304): 	at android.os.Binder.transact(Binder.java:361)
08-10 20:59:41.689: E/AndroidRuntime(6304): 	at com.google.android.gms.maps.internal.IGoogleMapDelegate$a$a.animateCamera(Unknown Source)
08-10 20:59:41.689: E/AndroidRuntime(6304): 	at com.google.android.gms.maps.GoogleMap.animateCamera(Unknown Source)
08-10 20:59:41.689: E/AndroidRuntime(6304): 	at com.example.myapp.MapViewer.onCreate(MapViewer.java:59)
08-10 20:59:41.689: E/AndroidRuntime(6304): 	at android.app.Activity.performCreate(Activity.java:5231)
08-10 20:59:41.689: E/AndroidRuntime(6304): 	at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1087)
08-10 20:59:41.689: E/AndroidRuntime(6304): 	at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2169)
08-10 20:59:41.689: E/AndroidRuntime(6304): 	... 11 more

Android Solutions


Solution 1 - Android

You can use MapLoadedCallBack;

map.setOnMapLoadedCallback(new GoogleMap.OnMapLoadedCallback() {
  @Override
  public void onMapLoaded() {
      map.moveCamera(CameraUpdateFactory.newLatLngBounds(bounds, 30));
  }
});

and also you can use this event that occurs prier to above.

  map.setOnCameraChangeListener(new GoogleMap.OnCameraChangeListener() {
        @Override
        public void onCameraChange(CameraPosition arg0) {
        map.moveCamera(CameraUpdateFactory.newLatLngBounds(bounds, 30));
  }
});

Solution 2 - Android

You can keep the error from occurring by following the advice from the log:

"...use newLatLngBounds(LatLngBounds, int, int, int) which allows you to specify the map's dimensions."

The extra parameters are the width and height of your screen. Here's how your updated code would look:

LatLngBounds.Builder builder = new LatLngBounds.Builder();
builder.include(new LatLng(47.09194444, 18.52166666));
builder.include(new LatLng(36.448311, 6.62555555));
LatLngBounds bounds = builder.build();

// begin new code:
int width = getResources().getDisplayMetrics().widthPixels;
int height = getResources().getDisplayMetrics().heightPixels;
int padding = (int) (width * 0.12); // offset from edges of the map 12% of screen

CameraUpdate cu = CameraUpdateFactory.newLatLngBounds(bounds, width, height, padding);
// end of new code

map.animateCamera(cu);

Solution 3 - Android

Documentation for onMapReady() clearly states that you have to wait for both onMapReadyCallback and ViewTreeObserver.OnGlobalLayoutListener:

> Note that this does not guarantee that the map has undergone layout. Therefore, the map's size may not have been determined by the time the callback method is called. If you need to know the dimensions or call a method in the API that needs to know the dimensions, get the map's View and register an ViewTreeObserver.OnGlobalLayoutListener as well.

It is quite inconvenient, but one way of doing it would be by using RxJava. You could emit two observables, first one in onMapReady and second one in onGlobalLayout, then zip them together and do whatever you need to do. This way you can be certain that both callbacks were fired.

Solution 4 - Android

Caused by: java.lang.IllegalStateException: Map size should not be 0. Most likely, layout has not yet occured for the map view.

The reason Behind this error is because the Map layout has not been completed, You should implement OnMapReadyCallback in your calls, which will ensure that your code will only run after your layout is completed or Implement the below callback

map.setOnCameraChangeListener(new GoogleMap.OnCameraChangeListener() {
    @Override
    public void onCameraChange(CameraPosition arg0) {
    map.moveCamera(CameraUpdateFactory.newLatLngBounds(bounds, 30));
}
});

Duplicate Links

https://stackoverflow.com/questions/13692579/movecamera-with-cameraupdatefactory-newlatlngbounds-crashes

https://stackoverflow.com/questions/17820617/illegalstateexception-map-size-should-not-be-0

I don't if there is a way to merge this link. I Hope i helped

Solution 5 - Android

> Caused by: java.lang.IllegalStateException: Error using > newLatLngBounds(LatLngBounds, int): Map size can't be 0. Most likely, > layout has not yet occured for the map view. Either wait until layout > has occurred or use newLatLngBounds(LatLngBounds, int, int, int) which > allows you to specify the map's dimensions.

From the docs https://developer.android.com/reference/com/google/android/gms/maps/CameraUpdateFactory.html#newLatLngBounds(com.google.android.gms.maps.model.LatLngBounds, int)

> Do not change the camera with this camera update until the map has > undergone layout (in order for this method to correctly determine the > appropriate bounding box and zoom level, the map must have a size). > Otherwise an IllegalStateException will be thrown. It is NOT > sufficient for the map to be available (i.e. getMap() returns a > non-null object); the view containing the map must have also undergone > layout such that its dimensions have been determined. If you cannot be > sure that this has occured, use newLatLngBounds(LatLngBounds, int, > int, int) instead and provide the dimensions of the map manually.

Note: getMap() could return null. It is better to check for Availability of Google play services before initialize GoogleMap object.

Solution 6 - Android

This worked for me:

@Override
protected void onCreate(Bundle savedInstanceState) {
    ...
    mMapFragment.getMapAsync(this);
}

@Override
public void onMapReady(GoogleMap googleMap) {
    mMapFragment.getView().getViewTreeObserver().addOnGlobalLayoutListener(this);
}

@Override
public void onGlobalLayout() {
    mMapFragment.getView().getViewTreeObserver().removeOnGlobalLayoutListener(this);
    //Only after onMapReady & onGlobalLayout newLatLngBounds will be available
    initMapPosition(); //newLatLngBounds here
}

Solution 7 - Android

I've created a way to combine the two callbacks: onMapReady and onGlobalLayout into one single observable which will emit only when both the events have been triggered.

https://gist.github.com/abhaysood/e275b3d0937f297980d14b439a8e0d4a

public final class OnMapAndLayoutReady {

private OnMapAndLayoutReady() {
}

/**
 * Converts {@link OnMapReadyCallback} to an observable.
 * Note that this method calls {@link MapView#getMapAsync(OnMapReadyCallback)} so you there is no
 * need to initialize google map view manually.
 */
private static Observable<GoogleMap> loadMapObservable(final MapView mapView) {
    return Observable.create(new Observable.OnSubscribe<GoogleMap>() {
        @Override
        public void call(final Subscriber<? super GoogleMap> subscriber) {
            OnMapReadyCallback mapReadyCallback = new OnMapReadyCallback() {
                @Override
                public void onMapReady(GoogleMap googleMap) {
                    subscriber.onNext(googleMap);
                }
            };
            mapView.getMapAsync(mapReadyCallback);
        }
    });
}

/**
 * Converts {@link ViewTreeObserver.OnGlobalLayoutListener} to an observable.
 * This methods also takes care of removing the global layout listener from the view.
 */
private static Observable<MapView> globalLayoutObservable(final MapView view) {
    return Observable.create(new Observable.OnSubscribe<MapView>() {
        @Override
        public void call(final Subscriber<? super MapView> subscriber) {
            final ViewTreeObserver.OnGlobalLayoutListener globalLayoutListener = new ViewTreeObserver.OnGlobalLayoutListener() {
                @Override
                public void onGlobalLayout() {
                    view.getViewTreeObserver().removeOnGlobalLayoutListener(this);
                    subscriber.onNext(view);
                }
            };
            view.getViewTreeObserver().addOnGlobalLayoutListener(globalLayoutListener);
        }
    });
}

/**
 * Takes {@link #globalLayoutObservable(MapView)} and {@link #loadMapObservable(MapView)} and zips their result.
 * This means that the subscriber will only be notified when both the observables have emitted.
 */
public static Observable<GoogleMap> onMapAndLayoutReadyObservable(final MapView mapView) {
    return Observable.zip(globalLayoutObservable(mapView), loadMapObservable(mapView), new Func2<MapView, GoogleMap, GoogleMap>() {
        @Override
        public GoogleMap call(MapView mapView, GoogleMap googleMap) {
            return googleMap;
        }
    });
}
}

Solution 8 - Android

Place the call within a runnable and post it to the views handler, like so:

    mapFragment.getView().post(new Runnable() {
        @Override
        public void run() {
            map.moveCamera(CameraUpdateFactory.newLatLngBounds(bounds.build(), CAMERA_PADDING));
        }
    });

When the view has been laid out the runnable will execute and correctly position the map. The issue with ahmadalibalochs answer, is that you will see a flash of the globe before it correctly positions itself. Posting it to the view handler, resolves this issue.

Solution 9 - Android

The answer that is marked correct is not a 100% correct. I think that can still fail in cases where the map never loads due to connectivity, or if the map gets updated so quickly that it never fully finishes loading. I have used the addOnGlobalLayoutListener.

ConstraintLayout mapLayout = (ConstraintLayout)findViewById(R.id.activityLayout);
mapLayout.getViewTreeObserver().addOnGlobalLayoutListener(new ViewTreeObserver.OnGlobalLayoutListener()
{
    @Override
    public void onGlobalLayout()
    {
         //Your map code
    }
});

Solution 10 - Android

In Kotlin, this is what worked for me.

The following code, sometimes threw me the exception:

override fun onMapReady(googleMap: GoogleMap) {
    mMap = googleMap
    //mMap.uiSettings.isZoomControlsEnabled = true
    mMap?.uiSettings?.isMyLocationButtonEnabled = true
    mMap?.isMyLocationEnabled = true
    val cameraUpdate = CameraUpdateFactory.newLatLngBounds(bounds, padding)
    mMap?.animateCamera(cameraUpdate) 
}

Error using newLatLngBounds(LatLngBounds, int): Map size can't be 0. Most likely, layout has not yet occured for the map view. Either wait until layout has occurred or use newLatLngBounds(LatLngBounds, int, int, int) which allows you to specify the map's dimensions

This code prevented the error:

override fun onMapReady(googleMap: GoogleMap) {
    mMap = googleMap
    //mMap.uiSettings.isZoomControlsEnabled = true
    mMap?.uiSettings?.isMyLocationButtonEnabled = true
    mMap?.isMyLocationEnabled = true
    mMap?.setOnMapLoadedCallback {
        val cameraUpdate = CameraUpdateFactory.newLatLngBounds(bounds, padding)
        mMap?.animateCamera(cameraUpdate)
    }
}

By waiting on the onMapLoadedCallback before running my CameraUpdate function

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionsmartmouseView Question on Stackoverflow
Solution 1 - AndroidahmadalibalochView Answer on Stackoverflow
Solution 2 - AndroidPatrick CoffeyView Answer on Stackoverflow
Solution 3 - AndroidElDaeView Answer on Stackoverflow
Solution 4 - AndroidBikashView Answer on Stackoverflow
Solution 5 - AndroidRaghunandanView Answer on Stackoverflow
Solution 6 - AndroidEvgeny NozdrevView Answer on Stackoverflow
Solution 7 - AndroidAbhay SoodView Answer on Stackoverflow
Solution 8 - AndroidMcPView Answer on Stackoverflow
Solution 9 - AndroidSiddharthView Answer on Stackoverflow
Solution 10 - AndroidJoeGalindView Answer on Stackoverflow