getActionJournalLog method
NSArray
getActionJournalLog()
Get the action journal events from oldest to newest.
Each element contains a serialized json object with the event data.
Example
{ "name" : "onTileAction", "time" : "2025-04-17T13:13:13.974Z", "styleName" : "Streets", "styleURL" : "maptiler://maps/streets", "event" : { "action" : "RequestedFromNetwork", "tileX" : 0, "tileY" : 0, "tileZ" : 0, "overscaledZ" : 0, "sourceID" : "openmaptiles" } }
Implementation
objc.NSArray getActionJournalLog() {
final _ret = _objc_msgSend_151sglz(this.ref.pointer, _sel_getActionJournalLog);
return objc.NSArray.castFromPointer(_ret, retain: true, release: true);
}