Skip to main content

@mapgear/geoapps > Apps

Apps class

Provides access to the usage of methods that convern multiple apps in GeoApps

Signature:
export declare class Apps 

Remarks

The constructor for this class is marked as internal. Third-party code should not call the constructor directly or create subclasses that extend the Apps class.

Example

An example of the usage:

let appData = [];

geoapps.Apps.GetList().then(data => {
appData = data;
})
.catch(error => () => {
console.error(error);
});

// Do something with appData later
appData.map(app => (console.log(app.name)));

Methods

MethodModifiersDescription
GetList(options)Method to retrieve a list of apps