Skip to content

Commit

Permalink
tutorials fix
Browse files Browse the repository at this point in the history
  • Loading branch information
avi278 committed May 5, 2024
1 parent 762995f commit a55018a
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 7 deletions.
9 changes: 5 additions & 4 deletions tutorials/tools/Info.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ The Info tool provides the ability to provide the user with basic information ab
### Installation

```
npm i geovisto-geo-downloader
npm i geovisto-info
```


Expand All @@ -25,9 +25,10 @@ Configuration used in example above:

```json
{
"type": "geovisto-geo-downloader",
"id": "geovisto-geo-downloader",
"enabled": true
"type": "geovisto-tool-info",
"id": "geovisto-tool-info",
"enabled": true,
"defaultFile": "intro.md"
}
```

Expand Down
30 changes: 27 additions & 3 deletions tutorials/tools/Sidebar.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,33 @@ Configuration used in example above:

```json
{
"type": "geovisto-tool-sidebar",
"id": "geovisto-tool-sidebar",
"type": "geovisto-tool-sidebar",
"id": "geovisto-tool-sidebar",
"enabled": true,
"tabs": [
{
"enabled": true,
"tabs": []
"name": "General settings",
"icon": "<i class=\"fa fa-gear\"></i>",
"checkButton": false,
"fragments": [
{
"tool": "geovisto-tool-themes",
"enabled": true
},
{
"tool": "geovisto-tool-selection",
"enabled": true
}
]
},
{
"tool": "geovisto-tool-info",
"enabled": true,
"name": "Info",
"icon": "<i class=\"fa fa-info\"></i>",
"checkButton": true
},
]
}
```

0 comments on commit a55018a

Please sign in to comment.