-
-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathmkdocs.yml
More file actions
218 lines (211 loc) · 7.09 KB
/
mkdocs.yml
File metadata and controls
218 lines (211 loc) · 7.09 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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
site_name: anymap-ts
site_description: A Python package for creating interactive maps with anywidget and TypeScript
site_author: giswqs
site_url: https://ts.anymap.dev
repo_url: https://github.com/opengeos/anymap-ts
copyright: "Copyright © 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_css:
- stylesheets/extra.css
# 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-ts/releases
- Report Issues: https://github.com/opengeos/anymap-ts/issues
- Live Examples: examples/index.html
- TypeScript:
- Overview: typescript/index.md
- Examples:
- MapLibre: typescript/examples/maplibre.md
- Leaflet: typescript/examples/leaflet.md
- Mapbox: typescript/examples/mapbox.md
- Cesium: typescript/examples/cesium.md
- DeckGL: typescript/examples/deckgl.md
- OpenLayers: typescript/examples/openlayers.md
- Potree: typescript/examples/potree.md
- KeplerGL: typescript/examples/keplergl.md
- COG Layer: typescript/examples/cog_layer.md
- Zarr Layer: typescript/examples/zarr_layer.md
- Cesium:
- cesium/cesium.ipynb
- DeckGL:
- deckgl/deckgl.ipynb
- deckgl/bitmap_layer.ipynb
- deckgl/column_layer.ipynb
- deckgl/contour_layer.ipynb
- deckgl/geojson_layer.ipynb
- deckgl/geohash_layer.ipynb
- deckgl/great_circle_layer.ipynb
- deckgl/gridcell_layer.ipynb
- deckgl/h3_cluster_layer.ipynb
- deckgl/h3_hexagon_layer.ipynb
- deckgl/heatmap_layer.ipynb
- deckgl/hexagon_layer.ipynb
- deckgl/icon_layer.ipynb
- deckgl/mvt_layer.ipynb
- deckgl/polygon_layer.ipynb
- deckgl/quadkey_layer.ipynb
- deckgl/s2_layer.ipynb
- deckgl/scatterplot_layer.ipynb
- deckgl/scenegraph_layer.ipynb
- deckgl/simplemesh_layer.ipynb
- deckgl/solidpolygon_layer.ipynb
- deckgl/terrain_layer.ipynb
- deckgl/text_layer.ipynb
- deckgl/tile3d_layer.ipynb
- deckgl/tile_layer.ipynb
- deckgl/trips_layer.ipynb
- deckgl/wms_layer.ipynb
- KeplerGL:
- keplergl/keplergl.ipynb
- Leaflet:
- leaflet/leaflet.ipynb
- leaflet/choropleth.ipynb
- leaflet/custom_markers.ipynb
- leaflet/geojson_interaction.ipynb
- leaflet/heatmap.ipynb
- leaflet/image_video_overlay.ipynb
- leaflet/shapes.ipynb
- leaflet/wms_layer.ipynb
- MapLibre:
- maplibre/maplibre.ipynb
- maplibre/arc_layer.ipynb
- maplibre/buildings_3d.ipynb
- maplibre/choropleth.ipynb
- maplibre/clustering.ipynb
- maplibre/cog_layer.ipynb
- maplibre/colorbar.ipynb
- maplibre/control_grid.ipynb
- maplibre/data_export.ipynb
- maplibre/deck_advanced_layers.ipynb
- maplibre/deck_layers.ipynb
- maplibre/feature_query_filter.ipynb
- maplibre/field_boundary.ipynb
- maplibre/flatgeobuf.ipynb
- maplibre/geophoto.ipynb
- maplibre/globe_projection.ipynb
- maplibre/image_overlay.ipynb
- maplibre/layer_management.ipynb
- maplibre/lidar_layer.ipynb
- maplibre/maplibre_heatmap.ipynb
- maplibre/markers.ipynb
- maplibre/measure.ipynb
- maplibre/pmtiles_layer.ipynb
- maplibre/pointcloud_layer.ipynb
- maplibre/popups.ipynb
- maplibre/print_control.ipynb
- maplibre/private_plugins.ipynb
- maplibre/route_animation.ipynb
- maplibre/search_control.ipynb
- maplibre/sky_fog.ipynb
- maplibre/solara.ipynb
- maplibre/split_map.ipynb
- maplibre/style_switcher.ipynb
- maplibre/terrain_3d.ipynb
- maplibre/time_slider.ipynb
- maplibre/to_html.ipynb
- maplibre/tooltip.ipynb
- maplibre/ui_controls.ipynb
- maplibre/video_layer.ipynb
- maplibre/zarr_layer.ipynb
- Mapbox:
- mapbox/mapbox.ipynb
- mapbox/choropleth.ipynb
- mapbox/cog_layer.ipynb
- mapbox/deck_layers.ipynb
- mapbox/layer_management.ipynb
- mapbox/markers.ipynb
- mapbox/popups_tooltips.ipynb
- mapbox/terrain_3d.ipynb
- mapbox/ui_controls.ipynb
- mapbox/vector_data.ipynb
- OpenLayers:
- openlayers/openlayers.ipynb
- openlayers/choropleth.ipynb
- openlayers/clustering.ipynb
- openlayers/draw_measure.ipynb
- openlayers/graticule_controls.ipynb
- openlayers/heatmap.ipynb
- openlayers/image_overlay.ipynb
- openlayers/wms_wmts.ipynb
- Potree:
- potree/potree.ipynb
- potree/point_cloud_settings.ipynb
- potree/camera_controls.ipynb
- potree/multiple_point_clouds.ipynb
- potree/sample_datasets.ipynb
- API Reference:
- anymap_ts module: anymap_ts.md
- base module: base.md
- basemaps module: basemaps.md
- maplibre module: maplibre.md
- mapbox module: mapbox.md
- leaflet module: leaflet.md
- openlayers module: openlayers.md
- deckgl module: deckgl.md
- cesium module: cesium.md
- keplergl module: keplergl.md
- potree module: potree.md
- utils module: utils.md