My project is to make a map app of the Siquijor island from the Philippines for tourists, and I want the app to only show the island. The only coordinates I could find are 9.1999° N, 123.5952° E
. I dont know how to implement these coordinates to
private GoogleMap mMap;
// Create a LatLngBounds that includes the city of Adelaide in Australia.
private LatLngBounds ADELAIDE = new LatLngBounds(
new LatLng(-35.0, 138.58), new LatLng(-34.9, 138.61));
// Constrain the camera target to the Adelaide bounds.
mMap.setLatLngBoundsForCameraTarget(ADELAIDE);