-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugin.config.json
57 lines (57 loc) · 1.98 KB
/
plugin.config.json
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
{
"id": "ba085ab9-4fdb-433f-833a-b90555b28d3d",
"name": "GeoTagger",
"version": "0.1.0",
"description": "Tag annotations with geographical references from a gazetteer.",
"author": "Pelagios Network",
"homepage": "https://pelagios.org",
"extension_points": {
"admin": "AdminExtension",
"annotation.*.annotation-editor": "EditorExtension",
"annotation.*.toolbar": "DocumentMapExtension"
},
"options": {
"basemap_presets": [
{
"name": "OpenStreetMap",
"attribution": "© <a href=\"http://www.openstreetmap.org/copyright\">OpenStreetMap</a>",
"url": "http://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png"
}, {
"name": "Consortium of Ancient World Mappers",
"attribution": "© <a href=\"https://cawm.lib.uiowa.edu/index.html\">CAWM (CC-BY-4.0)</a>",
"url": "https://cawm.lib.uiowa.edu/tiles/{z}/{x}/{y}.png"
}, {
"name": "Digital Atlas of the Roman Empire",
"attribution": "© <a href=\"https://imperium.ahlfeldt.se/\">DARE</a>",
"url": "https://dh.gu.se/tiles/imperium/{z}/{x}/{y}.png"
}
],
"formats": {
"www.wikidata.org": {
"shortcode": "wikidata",
"uri_pattern": "http://www.wikidata.org/entity/{{id}}"
},
"pleiades.stoa.org": {
"shortcode": "pleiades",
"uri_pattern": "https://pleiades.stoa.org/places/{{id}}"
},
"whgazetteer.org": {
"shortcode": "whg",
"uri_pattern": "https://whgazetteer.org/places/{{id}}/portal"
}
},
"geojson_presets": [{
"preset_id": "pleiades",
"preset_name": "Pleiades (GeoJSON)",
"file_url": "https://raw.githubusercontent.com/recogito/geotagger/main/gazetteers/pleiades-all-places.lp.json"
}],
"core_data_config": {
"host": "my-typesense-host.typesense.net",
"port": 443,
"api_key": "my-typesense-api-key",
"collection_name": "my-collection",
"query_by": "title,names",
"limit": 100
}
}
}