Initializes an AerisWeather instance configured with the specified client id and secret.
Provides access to the library's utility functions.
General utility functions are accessible at the root of the utils
object, but additional
functions are available for specific data types, such as colors, strings, etc:
utils.strings
: String-related utility functionsutils.colors
: Color-related utility functionsutils.dates
: Date-related utility functionsReturns the Account instance used when performing API requests.
Creates and returns a new ApiRequest configured for the current account.
Provides access to the apps module of the library.
The apps
module is loaded asynchronously using this method, which means you'll need to
wait for it to be loaded before working with any of its features. You can use the Promise
that's returned, or provide a callback function as a parameter to be notified once the
module is available.
Creates and returns a new MapRequest configured for the current account.
Provides access to the external modules library.
The modules
library is loaded asynchronously using this method, which means you'll need to
wait for it to be loaded before working with any of its features. You can use the Promise
that's returned, or provide a callback function as a parameter to be notified once the
library is available.
Returns the API server used when performing API requests.
Provides access to the views module of the library.
The views
module is loaded asynchronously using this method, which means you'll need to
wait for it to be loaded before working with any of its features. You can use the Promise
that's returned, or provide a callback function as a parameter to be notified once the
module is available.
Generated using TypeDoc
The main entry point for interacting with AerisWeather API services.