@vertigis/viewer-spec
Version:
VertiGIS Viewer Specification
22 lines (18 loc) • 680 B
Markdown
# command: studio-analytics.track-custom-event
Description: Sends a custom event to VertiGIS Studio Analytics. If the app is not configured to use Analytics, then nothing will happen.
Inputs: `TrackCustomEventArgs`
TrackCustomEventArgs properties:
```json
{
"name": {
"description": "The name of the event. The event name should be in kebab-case, present tense, and follow a `{noun phrase}-{verb}` pattern, where `{verb}` is a single word without hyphens. Example: \"parcel-boundary-move\".",
"type": "string",
"isRequired": "true"
},
"payload": {
"description": "Optional. Additional event-specific data of interest.",
"type": "string"
}
}
```