Is there a way to get the lat lng of currently focused indoor building?
There is a callback onIndoorBuildingFocused() which gets called when an indoor building gets focused. It is possible to get that building using
IndoorBuilding building = mMap.getFocusedBuilding();
But how can the lat lng of the this building be found ?
I think you can use the getCameraPosition() and then call the target of the CameraPosition object to find out the current focused location.