Stores
Stores contain any metadata associated with them, cached statistics, and maintain a reference to all the tiles that belong to it.
They are referenced by name, the single argument of FMTCStore.
Ensure names of stores are consistent across every access. "Typed"/code-generated stores are not provided, to maintain flexibility.
Construction of an FMTCStore object does not imply/infer that the underlying store has been created and is ready for use. Therefore, a store will require creation via its StoreManagement object (accessed via FMTCStore.manage) before it can be used.
// final store = FMTCStore('storeName');
await FMTCStore('storeName').manage.create(); // Refers to the same store as aboveAfter a store reference is constructed, the following actions can be performed with it:
Last updated
Was this helpful?