This repository is to manage a simple maplibre website to map CACTUS project data
This is a simple and smart boilerplate to integrate maplibre project by using sveltekit.
Everything you need to build a Svelte project, powered by create-svelte
.
If you're seeing this, you've probably already done this step. Congrats!
# create a new project in the current directory
npm init svelte
# create a new project in my-app
npm init svelte my-app
cp .env.example
vi .env
Add your own API key VITE_MAPTILER_KEY
for maptiler. The key can be created at maptiler website here. You probably need to sign up first.
Once you've created a project and installed dependencies with npm install
(or pnpm install
or yarn
), start a development server:
Then, please download CACTUS datasets from the official API by using the following script.
./update_cactus_data.sh
or
curl -L http://cactuscosting.com/cactus-calcs/pull_cactus_json_app_json.php -o ./static/cactus-data.json
After than, you can use the following command to start developing.
npm run dev
# or start the server and open the app in a new browser tab
npm run dev -- --open
open http://localhost:5173/sveltekit-maplibre-boilerplate.
The path of URL can be changed at svelte.config.js.
To create a production version of your app:
npm run build
You can preview the production build with npm run preview
.
To deploy your app, you may need to install an adapter for your target environment.