Class FloorSite
- java.lang.Object
-
- com.esri.arcgisruntime.mapping.floor.FloorSite
-
public class FloorSite extends Object
A site containing one or more facilities for a floor-aware map or scene.A site is the largest space designation in the ArcGIS Indoors Information Model and is used to represent an area such as a campus, a barrack, or an industrial site. A site can contain multiple facilities. You can get the collection of sites from a loaded
FloorManagerassociated with a floor-aware map or scene.- Since:
- 100.12.0
- See Also:
FloorManager.getSites()
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<FloorFacility>getFacilities()Gets an unmodifiable list of of facilities contained within the site, sorted by name.GeometrygetGeometry()Gets the geometry of this site.StringgetName()Gets the name of this site.StringgetSiteId()Gets the site ID.
-
-
-
Method Detail
-
getFacilities
public List<FloorFacility> getFacilities()
Gets an unmodifiable list of of facilities contained within the site, sorted by name.- Returns:
- the list of facilities contained within the site, sorted by name
- Since:
- 100.12.0
-
getGeometry
public Geometry getGeometry()
Gets the geometry of this site.- Returns:
- the geometry of this site, or null if none
- Since:
- 100.12.0
-
getSiteId
public String getSiteId()
Gets the site ID.- Returns:
- the site ID
- Since:
- 100.12.0
-
getName
public String getName()
Gets the name of this site.- Returns:
- the name of this site
- Since:
- 100.12.0
-
-