A quick way to start a web map application with Vue.js using MapLibre GL JS.
A simple fullscreen map application is used to showcase how to utilize MapTiler maps together with Vue.js and MapLibre GL JS for your Vue.js app.
Documentation: How to display a map in Vue.js using MapLibre GL JS
Online demo: https://labs.maptiler.com/vue-template-maplibre-gl-js/
This project was generated with Vue CLI version 4.5.15.
- npm
npm install npm@latest -g
- Vue.js CLI
npm install -g @vue/cli
Clone the repo to create a new Vue.js project. Run in your command-line:
git clone https://github.com/maptiler/vue-template-maplibre-gl-js.git my-vue-map
Navigate to the newly created project folder my-vue-map
cd my-vue-map
Install the NPM packages dependencies. Run in your command-line:
npm install
Rename or copy the .env.example
file to .env
cp .env.example .env
Open the .env
file,
Your MapTiler account access key is on your MapTiler Cloud account page.
ℹ️ If you don't have an API KEY, you can create it for free at https://www.maptiler.com/cloud/
To start your local environment, run:
npm run serve
You will find your app on address http://localhost:8080/.
Now you should see the app in your browser.
To build for production, run:
npm run build
To deploy the app to the gh-pages branch, run:
node gh-pages.js
Distributed under the MIT License. See LICENSE
for more information.
Instead of using or developing a custom map component, you can use the Vue.js binding of maplibre-gl-js (vue-maplibre-gl).
Checkout to Get started with Vue.js and MapLibre GL JS repo to use de vue-maplibre-gl component.