forked from soal/vue-mapbox
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from systragroup/test
add vitepress
- Loading branch information
Showing
20 changed files
with
1,116 additions
and
7,991 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -52,3 +52,6 @@ vue-mapbox-demo | |
checklist.txt | ||
.flowconfig | ||
docs_source/.vuepress/dist | ||
|
||
docs/.vitepress/dist | ||
docs/.vitepress/cache |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
import { defineConfig } from 'vitepress' | ||
|
||
// https://vitepress.dev/reference/site-config | ||
export default defineConfig({ | ||
title: "VueMapbox 3", | ||
description: "A Vue3 mapbox wrapper", | ||
base:"/vue-mapbox/", | ||
themeConfig: { | ||
// https://vitepress.dev/reference/default-theme-config | ||
nav: [ | ||
{ text: 'Home', link: '/' }, | ||
{ text: 'Guide', link: '/guide/README' }, | ||
{ text: 'API', link: '/api/README' }, | ||
], | ||
|
||
sidebar: [ | ||
{ | ||
text: 'Guide', | ||
items: [ | ||
{ text: 'Quickstart', link: '/guide/README' }, | ||
{ text: 'Base map', link: '/guide/basemap' }, | ||
{ text: 'Composition', link: '/guide/composition' }, | ||
{ text: 'Controls', link: '/guide/controls' }, | ||
{ text: 'Markers and popups', link: '/guide/markers&popups' }, | ||
{ text: 'Layers and sources', link: '/guide/layers&sources' } | ||
] | ||
}, | ||
{ | ||
text: 'API', | ||
items: [ | ||
{ text: 'GlMap', link: '/api/README' }, | ||
{ text: 'Controls', link: '/api/controls' }, | ||
{ text: 'MapMarker', link: '/api/marker' }, | ||
{ text: 'Popup', link: '/api/popup' }, | ||
{ text: 'Layer commons', link: '/api/Layers/README' }, | ||
{ text: 'Geojson Layer', link: '/api/Layers/geojsonlayer' }, | ||
{ text: 'Vector Layer', link: '/api/Layers/vectorlayer' }, | ||
{ text: 'Raster Layer', link: '/api/Layers/rasterlayer' }, | ||
{ text: 'Image Layer', link: '/api/Layers/imagelayer' }, | ||
{ text: 'Video Layer', link: '/api/Layers/videolayer' }, | ||
{ text: 'Canvas Layer', link: '/api/Layers/canvaslayer' }, | ||
] | ||
}, | ||
{ | ||
text: 'Plugin components', | ||
items: [ | ||
{ text: 'Using plugin components', link: '/plugin_components/README' }, | ||
{ text: 'Create a plugin component', link: '/plugin_components/plugin_components_development' }, | ||
|
||
] | ||
} | ||
], | ||
|
||
socialLinks: [ | ||
{ icon: 'github', link: 'https://github.com/systragroup/vue-mapbox' } | ||
], | ||
footer:{message: 'Released under the MIT License.'} | ||
} | ||
}) |
This file was deleted.
Oops, something went wrong.
Binary file not shown.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
# Marker | ||
|
||
## Props | ||
|
||
### `offset` | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.