-
Notifications
You must be signed in to change notification settings - Fork 11
/
mkdocs.yml
78 lines (71 loc) · 2.21 KB
/
mkdocs.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
site_name: PyQGIS开发者手册
site_url: https://luolingchun.github.io/PyQGIS-Developer-Cookbook-cn
site_description: 本项目是PyQGIS开发者手册的中文翻译。
site_author: llc
repo_url: https://github.com/luolingchun/PyQGIS-Developer-Cookbook-cn
repo_name: 'Github'
markdown_extensions:
- admonition
- toc:
permalink: ⚓︎
- md_in_html
- pymdownx.magiclink
- pymdownx.superfences
- pymdownx.snippets
- pymdownx.highlight:
linenums: true
theme:
name: material
language: 'zh'
logo: images/logo.svg
favicon: images/logo-blue.svg
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
toggle:
icon: material/weather-sunny
name: 黑
- media: "(prefers-color-scheme: dark)"
scheme: slate
toggle:
icon: material/weather-night
name: 亮
features:
- navigation.tracking
- navigation.footer
- navigation.top
# - navigation.expand
- search.suggest
- search.highlight
- search.share
- content.code.copy
- content.action.edit
- content.action.view
- toc.follow
plugins:
- search
extra_css:
- css/img.css
nav:
- 主页: index.md
- 1-引言: 1-引言.md
- 2-加载项目: 2-加载项目.md
- 3-加载图层: 3-加载图层.md
- 4-访问图层目录树: 4-访问图层目录树.md
- 5-使用栅格图层: 5-使用栅格图层.md
- 6-使用矢量图层: 6-使用矢量图层.md
- 7-几何处理: 7-几何处理.md
- 8-投影支持: 8-投影支持.md
- 9-使用地图画布: 9-使用地图画布.md
- 10-地图渲染和打印: 10-地图渲染和打印.md
- 11-表达式,过滤和计算值: 11-表达式,过滤和计算值.md
- 12-读取和存储设置: 12-读取和存储设置.md
- 13-与用户通信: 13-与用户通信.md
- 14-认证基础: 14-认证基础.md
- 15-任务 - 在后台做繁重的工作: 15-任务——在后台做繁重的工作.md
- 16-开发Python插件: 16-开发Python插件.md
- 17-编写处理插件: 17-编写处理插件.md
- 18-使用插件图层: 18-使用插件图层.md
- 19-网络分析库: 19-网络分析库.md
- 20-QGIS服务器和Python: 20-QGIS服务器和Python.md
- 21-PyQGIS速查表: 21-PyQGIS速查表.md