Google maps get indoor building lat lng

303 Views Asked by At

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 ?

1

There are 1 best solutions below

0
On

I think you can use the getCameraPosition() and then call the target of the CameraPosition object to find out the current focused location.