An open API service indexing awesome lists of open source software.

https://github.com/suizer98/samplevuedeckgl

A simple Vue project consists of Deck.gl rendered visualisation
https://github.com/suizer98/samplevuedeckgl

Last synced: 9 months ago
JSON representation

A simple Vue project consists of Deck.gl rendered visualisation

Awesome Lists containing this project

README

          

# Sample Vue Deck.GL

This project demonstrates how to integrate Deck.gl with Vue to create interactive and visually appealing maps and data visualizations. The project uses `maplibre-gl` for the base map and various layers from Deck.gl for data visualization.

Tech stacks:

![Tech stacks](https://skillicons.dev/icons?i=vite,vue,ts,css,html,npm,vercel)

## Local developments

### Prerequisites

In the project directory, you can either prepare below for local developments:

- Node.js (version 14 or later)
- npm (version 6 or later)

### NPM commands

Runs the app in the development mode. Open [http://localhost:3000/](http://localhost:3000/) to view it in the browser.

```
npm install
npm run dev
```

The page will reload if you make edits.
You will also see any lint errors in the console.

### Typing issues message

The `Vite Checker` is constantly checking if any typing issues exist in
our TypeScript codes by prompting messages in runtime.

### Found issues in code style?

To fix all formatting and linting using `prettier`:

```
npm run format
```

### Check if build error exists?

To see if any errors prevent production build compilation:

```
npm run build
```