-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathmkdocs.yml
More file actions
125 lines (119 loc) · 3.81 KB
/
mkdocs.yml
File metadata and controls
125 lines (119 loc) · 3.81 KB
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
site_name: anymap
site_description: A Python package for creating interactive maps with anywidget and JavaScript mapping libraries
site_author: giswqs
site_url: https://anymap.dev
repo_url: https://github.com/opengeos/anymap
copyright: "Copyright © 2025 - 2025 Qiusheng Wu"
theme:
palette:
- scheme: default
# primary: blue
# accent: indigo
toggle:
icon: material/toggle-switch-off-outline
name: Switch to dark mode
- scheme: slate
primary: indigo
accent: indigo
toggle:
icon: material/toggle-switch
name: Switch to light mode
name: material
icon:
repo: fontawesome/brands/github
# logo: assets/logo.png
# favicon: assets/favicon.png
features:
- navigation.instant
- navigation.tracking
- navigation.top
- search.highlight
- search.share
custom_dir: "docs/overrides"
font:
text: Google Sans
code: Regular
plugins:
- search
- mkdocstrings
- git-revision-date
- git-revision-date-localized:
enable_creation_date: true
type: timeago
# - pdf-export
- mkdocs-jupyter:
include_source: True
ignore_h1_titles: True
execute: false
allow_errors: false
ignore: ["conf.py"]
execute_ignore: ["*ignore.ipynb"]
markdown_extensions:
- admonition
- abbr
- attr_list
- def_list
- footnotes
- meta
- md_in_html
- pymdownx.superfences
- pymdownx.highlight:
linenums: true
- toc:
permalink: true
# extra:
# analytics:
# provider: google
# property: UA-XXXXXXXXX-X
nav:
- Home: index.md
- Installation: installation.md
- Usage: usage.md
- Contributing: contributing.md
- Changelog: https://github.com/opengeos/anymap/releases
- Report Issues: https://github.com/opengeos/anymap/issues
- Cesium:
- examples/cesium/cesium_example.ipynb
- DeckGL:
- examples/deckgl/deckgl_example.ipynb
- KeplerGL:
- examples/keplergl/keplergl_example.ipynb
- Leaflet:
- examples/leaflet/leaflet_example.ipynb
- MapLibre:
- examples/maplibre/basic_usage.ipynb
- examples/maplibre/maplibre_example.ipynb
- examples/maplibre/infobox_example.ipynb
- examples/maplibre/pmtiles_example.ipynb
- examples/maplibre/draw_control_example.ipynb
- examples/maplibre/add_draw_data_example.ipynb
- examples/maplibre/save_draw_data_example.ipynb
- examples/maplibre/layer_control_example.ipynb
- examples/maplibre/geocoder_example.ipynb
- examples/maplibre/terrain_example.ipynb
- examples/maplibre/streetview_example.ipynb
- examples/maplibre/clicked_attribute_example.ipynb
- examples/maplibre/map_click_polygon_intersection.ipynb
- examples/maplibre/custom_draw_styles_example.ipynb
- Mapbox:
- examples/mapbox/mapbox_example.ipynb
- OpenLayers:
- examples/openlayers/openlayers_example.ipynb
- Potree:
- examples/potree/potree_example.ipynb
- API Reference:
- anymap module: anymap.md
- base module: base.md
- cesium module: cesium.md
- compare module: compare.md
- deckgl module: deckgl.md
- draw_styles module: draw_styles.md
- keplergl module: keplergl.md
- leaflet module: leaflet.md
- mapbox module: mapbox.md
- maplibre module: maplibre.md
- maplibre_widgets module: maplibre_widgets.md
- openlayers module: openlayers.md
- potree module: potree.md
- stac module: stac.md
- utils module: utils.md