123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178 |
- module.exports = {
- "title": "CIM平台接口文档",
- "description": "CIM平台接口文档",
- "dest": "public",
- "base": './',
- "head": [
- [
- "link",
- {
- "rel": "icon",
- "href": "/favicon.ico"
- }
- ],
- [
- "meta",
- {
- "name": "viewport",
- "content": "width=device-width,initial-scale=1,user-scalable=no"
- }
- ]
- ],
- "theme": "reco",
- "themeConfig": {
- "nav": [{
- "text": "主页",
- "link": "/",
- "icon": "reco-home"
- },
- {
- "text": "API",
- "icon": "reco-message",
- "link": "/docs/theme-reco/jtlayers/"
- // "items": [{
- // "text": "vuepress-reco",
- // "link": "/docs/theme-reco/"
- // }]
- },
- ],
- "sidebar": {
- "/docs/theme-reco/": [{
- title: '地图API',
- collapsable: true,
- children: [{
- title: '弹出框',
- path: "jtpopup"
- },
- {
- title: '图层控制',
- path: "jtlayers"
- },
- {
- title: '底图切换',
- path: "jtbasemaps"
- }, {
- title: '视角标签',
- path: "jtbookmark"
- },
- {
- title: '图形查询',
- path: "jtquerygraphics"
- },
- {
- title: '关键字查询',
- path: "jtquerypoi"
- }, {
- title: '查询结果',
- path: "jtqueryresult"
- },
- {
- title: '工具栏',
- path: "jttoolbars"
- }, {
- title: '特效效果',
- path: "jtspecialeffects"
- },
- {
- title: '跟踪漫游',
- path: "jtroamingpath"
- }, {
- title: '地图打印',
- path: "jtprint"
- }, {
- title: '地图标绘',
- path: "jtplot"
- }, {
- title: '地图测量',
- path: "jtmeasure"
- }, {
- title: '卷帘对比',
- path: "jtmapsplit"
- }, {
- title: '分屏对比',
- path: "jtmapcompare"
- }, {
- title: '区域导航',
- path: "jtlocationregion"
- }, {
- title: '坐标工具',
- path: "jtcoordinate"
- }, {
- title: '地形分析',
- path: "jtanalysisterrain"
- }, {
- title: '空间分析',
- path: "jtanalysisspace"
- }, {
- title: '文件解析',
- path: "jtanalysisshp"
- },
- ]
- }],
- },
- "type": "blog",
- "logo": "/logo.png",
- "search": true,
- "searchMaxSuggestions": 10,
- "lastUpdated": "Last Updated",
- "author": "金田@author彭于晏",
- "authorAvatar": "/pyy.jpg",
- "record": "xxxx",
- "startYear": "2023"
- },
- "markdown": {
- "lineNumbers": true
- },
- plugins: [
- [
- //先安装在配置, npm install @vuepress-reco/vuepress-plugin-kan-ban-niang --save
- "@vuepress-reco/vuepress-plugin-kan-ban-niang",
- {
- theme: ['blackCat', 'whiteCat', 'haru1', 'haru2', 'haruto', 'koharu', 'izumi', 'shizuku',
- 'wanko', 'miku', 'z16'
- ],
- clean: false,
- messages: {
- welcome: '我是lookroot欢迎你的关注 ',
- home: '心里的花,我想要带你回家。',
- theme: '好吧,希望你能喜欢我的其他小伙伴。',
- close: '再见哦'
- },
- width: 240,
- height: 352
- }
- ],
- [
- //彩带背景 先安装在配置, npm install vuepress-plugin-ribbon --save
- "ribbon",
- {
- size: 90, // width of the ribbon, default: 90
- opacity: 0.6, // opacity of the ribbon, default: 0.3
- zIndex: -1 // z-index property of the background, default: -1
- }
- ],
- [
- //鼠标点击特效 先安装在配置, npm install vuepress-plugin-cursor-effects --save
- "cursor-effects",
- {
- size: 3, // size of the particle, default: 2
- shape: ['star'], // shape of the particle, default: 'star'
- zIndex: 999999999 // z-index property of the canvas, default: 999999999
- }
- ]
- ]
- }
- // import {
- // defineUserConfig
- // } from 'vuepress'
- // import {
- // recoTheme
- // } from 'vuepress-theme-reco'
- // export default defineUserConfig({
- // theme: recoTheme({
- // // options
- // })
- // })
|