Mobile Framework

Include GIS maps in a mobile app

Example Views: Solutions Template / Controls / Maps

Archibus Mobile users may want to have a map handy from the mobile app for locating buildings, rooms, and assets. Mobile users can drill down from city, to site, to building, to room to find the data that they need. For example:

With the GIS features, users can:

The mobile framework GIS features include:

Adding a map view to a mobile form is accomplished by adding the esrimap component.

config: {
items: [
{
xtype: 'esrimap',
basemapLayer: 'World Topographic Map',
mapCenter: [42.35803652353272, -71.06163024902344],
mapZoom: 14,
style: 'height:100%;width:100%'
}
]
}

The mobile map implementation uses the same Leaflet API that is used in the Web Central product. The mobile map API is similar to the Web Central map API, but it is not identical.

For background, you may wish to review the Web Central Leaflet API topics; however, note that they do not correlate directly with the mobile implementation.