geoblacklight 6.0.0.pre.alpha.6 → 6.0.0.pre.alpha.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.github/ISSUE_TEMPLATE.md +0 -1
- data/.github/workflows/ruby.yml +1 -1
- data/CODE_OF_CONDUCT.md +11 -11
- data/CONTRIBUTING.md +19 -9
- data/README.md +1 -1
- data/app/assets/stylesheets/geoblacklight/global.css +1 -1
- data/app/assets/stylesheets/geoblacklight/index_maps.css +1 -1
- data/app/assets/stylesheets/geoblacklight/record.css +15 -13
- data/app/assets/stylesheets/geoblacklight/viewers.css +88 -5
- data/app/components/geoblacklight/document/download_link_component.html.erb +1 -2
- data/app/components/geoblacklight/document/download_links_component.html.erb +3 -1
- data/app/components/geoblacklight/document/preview_component.html.erb +6 -0
- data/app/components/geoblacklight/document/preview_component.rb +14 -0
- data/app/components/geoblacklight/document_component.html.erb +1 -6
- data/app/components/geoblacklight/facets/bbox_field_component.html.erb +17 -0
- data/app/components/geoblacklight/facets/bbox_field_component.rb +7 -0
- data/app/components/geoblacklight/header_badge_component.html.erb +2 -0
- data/app/components/geoblacklight/header_badge_component.rb +21 -0
- data/app/components/geoblacklight/header_component.html.erb +1 -1
- data/app/components/geoblacklight/header_icons_component.html.erb +1 -1
- data/app/components/geoblacklight/header_icons_component.rb +8 -12
- data/app/components/geoblacklight/item_map_viewer_component.rb +6 -5
- data/app/components/geoblacklight/location_leaflet_map_component.rb +8 -9
- data/app/{views/catalog/_metadata.html.erb → components/geoblacklight/metadata_component.html.erb} +5 -7
- data/app/components/geoblacklight/metadata_component.rb +29 -0
- data/app/components/geoblacklight/metadata_description_markdown_component.rb +21 -0
- data/app/components/geoblacklight/relations_component.html.erb +2 -2
- data/app/components/geoblacklight/resource_header_badge_component.rb +37 -0
- data/app/components/geoblacklight/search_result_component.html.erb +15 -14
- data/app/components/geoblacklight/static_map_component.rb +5 -2
- data/app/helpers/geoblacklight_helper.rb +27 -50
- data/app/javascript/geoblacklight/controllers/leaflet_viewer_controller.js +19 -4
- data/app/javascript/geoblacklight/controllers/openlayers_viewer_controller.js +10 -2
- data/app/javascript/geoblacklight/leaflet/basemaps.js +8 -8
- data/app/javascript/geoblacklight/openlayers/basemaps.js +8 -8
- data/app/models/concerns/geoblacklight/solr_document.rb +9 -0
- data/app/views/catalog/_document_split.html.erb +1 -6
- data/app/views/catalog/_home_text.html.erb +1 -1
- data/app/views/catalog/metadata.html.erb +1 -1
- data/geoblacklight.gemspec +2 -1
- data/lib/generators/geoblacklight/templates/catalog_controller.rb +22 -30
- data/lib/generators/geoblacklight/templates/settings.yml +0 -5
- data/lib/geoblacklight/configuration/leaflet_config.rb +3 -2
- data/lib/geoblacklight/configuration/settings_builder.rb +0 -1
- data/lib/geoblacklight/configuration.rb +18 -5
- data/lib/geoblacklight/engine.rb +1 -0
- data/lib/geoblacklight/item_viewer.rb +1 -1
- data/lib/geoblacklight/version.rb +1 -1
- data/schema/readme.md +1 -1
- data/spec/components/geoblacklight/citation_component_spec.rb +1 -1
- data/spec/components/geoblacklight/document_component_spec.rb +10 -0
- data/spec/components/geoblacklight/metadata_component_spec.rb +67 -0
- data/spec/components/geoblacklight/metadata_description_markdown_component_spec.rb +38 -0
- data/spec/components/geoblacklight/viewer_help_text_component_spec.rb +1 -0
- data/spec/controllers/catalog_controller_spec.rb +8 -55
- data/spec/features/configurable_basemap_spec.rb +7 -7
- data/spec/features/home_page_spec.rb +0 -26
- data/spec/features/index_view_spec.rb +0 -24
- data/spec/features/layer_preview_spec.rb +1 -1
- data/spec/features/metadata_panel_spec.rb +18 -69
- data/spec/features/relations_spec.rb +0 -18
- data/spec/features/search_spec.rb +0 -22
- data/spec/features/sms_spec.rb +8 -8
- data/spec/features/web_services_modal_spec.rb +0 -83
- data/spec/fixtures/fgdc/SANB_a2725322-fgdc.xml +209 -0
- data/spec/fixtures/index_maps/index-map-point.geojson +13181 -949
- data/spec/fixtures/index_maps/index-map-polygon-no-downloadurl.geojson +21150 -970
- data/spec/fixtures/index_maps/index-map-polygon.geojson +21150 -970
- data/spec/fixtures/index_maps/index-map-stanford.geojson +269 -390
- data/spec/fixtures/index_maps/index-map-v1-complex.geojson +8596 -12247
- data/spec/fixtures/iso19139/{stanford-cg357zz0321.xml → SANB_a2725322-iso19139.xml} +130 -194
- data/spec/fixtures/metadata/fgdc.html +119 -59
- data/spec/fixtures/metadata/iso.html +258 -260
- data/spec/fixtures/mods/stanford-bc576pk4911.mods +98 -0
- data/spec/fixtures/solr_documents/README.md +48 -47
- data/spec/fixtures/solr_documents/actual-raster1.json +2 -3
- data/spec/fixtures/solr_documents/index-map-stanford.json +31 -27
- data/spec/fixtures/solr_documents/restricted-line.json +20 -31
- data/spec/helpers/geoblacklight_helper_spec.rb +0 -76
- data/spec/models/concerns/geoblacklight/solr_document/citation_spec.rb +1 -1
- data/spec/requests/bookmarks_spec.rb +13 -0
- data/spec/requests/catalog_search_spec.rb +43 -0
- data/spec/requests/catalog_show_spec.rb +48 -0
- data/spec/requests/home_page_spec.rb +42 -0
- data/spec/requests/index_view_spec.rb +27 -0
- data/spec/requests/metadata_spec.rb +40 -0
- data/spec/requests/missing_metadata_spec.rb +28 -0
- data/spec/requests/relations_spec.rb +28 -0
- data/spec/requests/search_history_spec.rb +13 -0
- data/spec/requests/search_results_spec.rb +62 -0
- data/spec/requests/web_services_spec.rb +51 -0
- metadata +44 -23
- data/spec/features/bookmarks_spec.rb +0 -12
- data/spec/features/data_dictionary_download_spec.rb +0 -18
- data/spec/features/empty_search_spec.rb +0 -13
- data/spec/features/exports_spec.rb +0 -14
- data/spec/features/help_text_spec.rb +0 -10
- data/spec/features/missing_metadata_spec.rb +0 -26
- data/spec/features/oembed_spec.rb +0 -11
- data/spec/features/saved_searches_spec.rb +0 -11
- data/spec/features/search_bar_spec.rb +0 -14
- data/spec/features/search_results_complex_geometry_spec.rb +0 -25
- data/spec/features/search_results_icons_spec.rb +0 -16
- data/spec/features/search_results_overlap_ratio_spec.rb +0 -57
- data/spec/features/show_page_metadata_spec.rb +0 -14
- data/spec/features/suppressed_records_spec.rb +0 -16
- data/spec/fixtures/fgdc/harvard-g7064-s2-1834-k3.xml +0 -1
- data/spec/fixtures/mods/fb897vt9938.mods +0 -111
- data/spec/fixtures/mods/stanford-cg357zz0321.mods +0 -113
|
@@ -1,390 +1,269 @@
|
|
|
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
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
"
|
|
246
|
-
"
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
6.99995
|
|
271
|
-
],
|
|
272
|
-
[
|
|
273
|
-
125.5,
|
|
274
|
-
7.166625
|
|
275
|
-
],
|
|
276
|
-
[
|
|
277
|
-
125.75,
|
|
278
|
-
7.166625
|
|
279
|
-
],
|
|
280
|
-
[
|
|
281
|
-
125.75,
|
|
282
|
-
6.99995
|
|
283
|
-
],
|
|
284
|
-
[
|
|
285
|
-
125.5,
|
|
286
|
-
6.99995
|
|
287
|
-
]
|
|
288
|
-
]
|
|
289
|
-
]
|
|
290
|
-
}
|
|
291
|
-
},
|
|
292
|
-
{
|
|
293
|
-
"type": "Feature",
|
|
294
|
-
"properties": {
|
|
295
|
-
"sheet": 1,
|
|
296
|
-
"available": true,
|
|
297
|
-
"recordIdentifier": 10532136,
|
|
298
|
-
"websiteUrl": "http://purl.stanford.edu/nt236fh7803",
|
|
299
|
-
"title": "Dabao Kinbōzu -- ダバオ近傍圖",
|
|
300
|
-
"titleEng": "Dabao Kinb?zu",
|
|
301
|
-
"callNumber": "G8064 .D245 S50 .J3 SHEET 1",
|
|
302
|
-
"webmapURL": "http://stanford.maps.arcgis.com/apps/SimpleViewer/index.html?appid=fbf74326c29945118d5642f061647e74",
|
|
303
|
-
"downloadUrl": "https://embed.stanford.edu/iframe?url=https://purl.stanford.edu/nt236fh7803&hide_title=true#",
|
|
304
|
-
"iiifUrl": "https://purl.stanford.edu/nt236fh7803/iiif/manifest",
|
|
305
|
-
"callNumberShort": "G8064 .D245 S50 .J3",
|
|
306
|
-
"label": "SHEET 1",
|
|
307
|
-
"sheetCallNumber": "G8064 .D245 S50 .J3 SHEET 1",
|
|
308
|
-
"barcode": 36105221065500,
|
|
309
|
-
"id": 0,
|
|
310
|
-
"objectIdentifier": "nt236fh7803"
|
|
311
|
-
},
|
|
312
|
-
"geometry": {
|
|
313
|
-
"type": "Polygon",
|
|
314
|
-
"coordinates": [
|
|
315
|
-
[
|
|
316
|
-
[
|
|
317
|
-
125.75,
|
|
318
|
-
6.99995
|
|
319
|
-
],
|
|
320
|
-
[
|
|
321
|
-
125.75,
|
|
322
|
-
7.166625
|
|
323
|
-
],
|
|
324
|
-
[
|
|
325
|
-
126,
|
|
326
|
-
7.166625
|
|
327
|
-
],
|
|
328
|
-
[
|
|
329
|
-
126,
|
|
330
|
-
6.99995
|
|
331
|
-
],
|
|
332
|
-
[
|
|
333
|
-
125.75,
|
|
334
|
-
6.99995
|
|
335
|
-
]
|
|
336
|
-
]
|
|
337
|
-
]
|
|
338
|
-
}
|
|
339
|
-
},
|
|
340
|
-
{
|
|
341
|
-
"type": "Feature",
|
|
342
|
-
"properties": {
|
|
343
|
-
"sheet": 1,
|
|
344
|
-
"available": true,
|
|
345
|
-
"recordIdentifier": 10532136,
|
|
346
|
-
"websiteUrl": "http://purl.stanford.edu/qs945pv4099",
|
|
347
|
-
"title": "Dabao Kinbōzu -- ダバオ近傍圖",
|
|
348
|
-
"titleEng": "Dabao Kinb?zu",
|
|
349
|
-
"callNumber": "G8064 .D245 S50 .J3 SHEET 2",
|
|
350
|
-
"webmapURL": "http://stanford.maps.arcgis.com/apps/SimpleViewer/index.html?appid=fbf74326c29945118d5642f061647e74",
|
|
351
|
-
"downloadUrl": "https://embed.stanford.edu/iframe?url=https://purl.stanford.edu/qs945pv4099&hide_title=true#",
|
|
352
|
-
"iiifUrl": "https://purl.stanford.edu/qs945pv4099/iiif/manifest",
|
|
353
|
-
"callNumberShort": "G8064 .D245 S50 .J3",
|
|
354
|
-
"label": "SHEET 2",
|
|
355
|
-
"sheetCallNumber": "G8064 .D245 S50 .J3 SHEET 2",
|
|
356
|
-
"barcode": 36105221064400,
|
|
357
|
-
"id": 0,
|
|
358
|
-
"objectIdentifier": "qs945pv4099"
|
|
359
|
-
},
|
|
360
|
-
"geometry": {
|
|
361
|
-
"type": "Polygon",
|
|
362
|
-
"coordinates": [
|
|
363
|
-
[
|
|
364
|
-
[
|
|
365
|
-
125.5,
|
|
366
|
-
7.166625
|
|
367
|
-
],
|
|
368
|
-
[
|
|
369
|
-
125.5,
|
|
370
|
-
7.3333
|
|
371
|
-
],
|
|
372
|
-
[
|
|
373
|
-
125.75,
|
|
374
|
-
7.3333
|
|
375
|
-
],
|
|
376
|
-
[
|
|
377
|
-
125.75,
|
|
378
|
-
7.166625
|
|
379
|
-
],
|
|
380
|
-
[
|
|
381
|
-
125.5,
|
|
382
|
-
7.166625
|
|
383
|
-
]
|
|
384
|
-
]
|
|
385
|
-
]
|
|
386
|
-
}
|
|
387
|
-
}
|
|
388
|
-
]
|
|
389
|
-
}
|
|
390
|
-
|
|
1
|
+
{
|
|
2
|
+
"type": "FeatureCollection",
|
|
3
|
+
"features": [
|
|
4
|
+
{
|
|
5
|
+
"type": "Feature",
|
|
6
|
+
"properties": {
|
|
7
|
+
"sheet": 1,
|
|
8
|
+
"available": false,
|
|
9
|
+
"recordIdentifier": 10532136,
|
|
10
|
+
"websiteUrl": "http://purl.stanford.edu/zh828kt2136",
|
|
11
|
+
"title": "Dabao Kinbōzu -- ダバオ近傍圖",
|
|
12
|
+
"titleEng": "Dabao Kinb?zu",
|
|
13
|
+
"callNumber": "G8064 .D245 S50 .J3 SHEET 8",
|
|
14
|
+
"webmapURL": "http://stanford.maps.arcgis.com/apps/SimpleViewer/index.html?appid=fbf74326c29945118d5642f061647e74",
|
|
15
|
+
"downloadUrl": "https://embed.stanford.edu/iframe?url=https://purl.stanford.edu/zh828kt2136&hide_title=true#",
|
|
16
|
+
"iiifUrl": "https://purl.stanford.edu/zh828kt2136/iiif/manifest",
|
|
17
|
+
"callNumberShort": "G8064 .D245 S50 .J3",
|
|
18
|
+
"label": "SHEET 8",
|
|
19
|
+
"sheetCallNumber": "G8064 .D245 S50 .J3 SHEET 8",
|
|
20
|
+
"barcode": 36105221064400,
|
|
21
|
+
"id": 0,
|
|
22
|
+
"objectIdentifier": "zh828kt2136"
|
|
23
|
+
},
|
|
24
|
+
"geometry": {
|
|
25
|
+
"type": "Polygon",
|
|
26
|
+
"coordinates": [
|
|
27
|
+
[
|
|
28
|
+
[125, 6.6666],
|
|
29
|
+
[125, 6.833275],
|
|
30
|
+
[125.25, 6.833275],
|
|
31
|
+
[125.25, 6.6666],
|
|
32
|
+
[125, 6.6666]
|
|
33
|
+
]
|
|
34
|
+
]
|
|
35
|
+
}
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"type": "Feature",
|
|
39
|
+
"properties": {
|
|
40
|
+
"sheet": 1,
|
|
41
|
+
"available": true,
|
|
42
|
+
"recordIdentifier": 10532136,
|
|
43
|
+
"websiteUrl": "http://purl.stanford.edu/ww531pg8163",
|
|
44
|
+
"title": "Dabao Kinbōzu -- ダバオ近傍圖",
|
|
45
|
+
"titleEng": "Dabao Kinb?zu",
|
|
46
|
+
"callNumber": "G8064 .D245 S50 .J3 SHEET 7",
|
|
47
|
+
"webmapURL": "http://stanford.maps.arcgis.com/apps/SimpleViewer/index.html?appid=fbf74326c29945118d5642f061647e74",
|
|
48
|
+
"downloadUrl": "https://embed.stanford.edu/iframe?url=https://purl.stanford.edu/ww531pg8163&hide_title=true#",
|
|
49
|
+
"iiifUrl": "https://purl.stanford.edu/ww531pg8163/iiif/manifest",
|
|
50
|
+
"callNumberShort": "G8064 .D245 S50 .J3",
|
|
51
|
+
"label": "SHEET 7",
|
|
52
|
+
"sheetCallNumber": "G8064 .D245 S50 .J3 SHEET 7",
|
|
53
|
+
"barcode": 36105221064400,
|
|
54
|
+
"id": 0,
|
|
55
|
+
"objectIdentifier": "ww531pg8163"
|
|
56
|
+
},
|
|
57
|
+
"geometry": {
|
|
58
|
+
"type": "Polygon",
|
|
59
|
+
"coordinates": [
|
|
60
|
+
[
|
|
61
|
+
[125.25, 6.6666],
|
|
62
|
+
[125.25, 6.833275],
|
|
63
|
+
[125.5, 6.833275],
|
|
64
|
+
[125.5, 6.6666],
|
|
65
|
+
[125.25, 6.6666]
|
|
66
|
+
]
|
|
67
|
+
]
|
|
68
|
+
}
|
|
69
|
+
},
|
|
70
|
+
{
|
|
71
|
+
"type": "Feature",
|
|
72
|
+
"properties": {
|
|
73
|
+
"sheet": 1,
|
|
74
|
+
"available": true,
|
|
75
|
+
"recordIdentifier": 10532136,
|
|
76
|
+
"websiteUrl": "http://purl.stanford.edu/ff398nq3366",
|
|
77
|
+
"title": "Dabao Kinbōzu -- ダバオ近傍圖",
|
|
78
|
+
"titleEng": "Dabao Kinb?zu",
|
|
79
|
+
"callNumber": "G8064 .D245 S50 .J3 SHEET 6",
|
|
80
|
+
"webmapURL": "http://stanford.maps.arcgis.com/apps/SimpleViewer/index.html?appid=fbf74326c29945118d5642f061647e74",
|
|
81
|
+
"downloadUrl": "https://embed.stanford.edu/iframe?url=https://purl.stanford.edu/ff398nq3366&hide_title=true#",
|
|
82
|
+
"iiifUrl": "https://purl.stanford.edu/ff398nq3366/iiif/manifest",
|
|
83
|
+
"callNumberShort": "G8064 .D245 S50 .J3",
|
|
84
|
+
"label": "SHEET 6",
|
|
85
|
+
"sheetCallNumber": "G8064 .D245 S50 .J3 SHEET 6",
|
|
86
|
+
"barcode": 36105221064400,
|
|
87
|
+
"id": 0,
|
|
88
|
+
"objectIdentifier": "ff398nq3366"
|
|
89
|
+
},
|
|
90
|
+
"geometry": {
|
|
91
|
+
"type": "Polygon",
|
|
92
|
+
"coordinates": [
|
|
93
|
+
[
|
|
94
|
+
[125.25, 6.833275],
|
|
95
|
+
[125.25, 6.99995],
|
|
96
|
+
[125.5, 6.99995],
|
|
97
|
+
[125.5, 6.833275],
|
|
98
|
+
[125.25, 6.833275]
|
|
99
|
+
]
|
|
100
|
+
]
|
|
101
|
+
}
|
|
102
|
+
},
|
|
103
|
+
{
|
|
104
|
+
"type": "Feature",
|
|
105
|
+
"properties": {
|
|
106
|
+
"sheet": 1,
|
|
107
|
+
"available": true,
|
|
108
|
+
"recordIdentifier": 10532136,
|
|
109
|
+
"websiteUrl": "http://purl.stanford.edu/zs508nd4169",
|
|
110
|
+
"title": "Dabao Kinbōzu -- ダバオ近傍圖",
|
|
111
|
+
"titleEng": "Dabao Kinb?zu",
|
|
112
|
+
"callNumber": "G8064 .D245 S50 .J3 SHEET 4",
|
|
113
|
+
"webmapURL": "http://stanford.maps.arcgis.com/apps/SimpleViewer/index.html?appid=fbf74326c29945118d5642f061647e74",
|
|
114
|
+
"downloadUrl": "https://embed.stanford.edu/iframe?url=https://purl.stanford.edu/zs508nd4169&hide_title=true#",
|
|
115
|
+
"iiifUrl": "https://purl.stanford.edu/zs508nd4169/iiif/manifest",
|
|
116
|
+
"callNumberShort": "G8064 .D245 S50 .J3",
|
|
117
|
+
"label": "SHEET 4",
|
|
118
|
+
"sheetCallNumber": "G8064 .D245 S50 .J3 SHEET 4",
|
|
119
|
+
"barcode": 36105221064400,
|
|
120
|
+
"id": 0,
|
|
121
|
+
"objectIdentifier": "zs508nd4169"
|
|
122
|
+
},
|
|
123
|
+
"geometry": {
|
|
124
|
+
"type": "Polygon",
|
|
125
|
+
"coordinates": [
|
|
126
|
+
[
|
|
127
|
+
[125.59930182113703, 6.833275],
|
|
128
|
+
[125.59930182113703, 6.99995],
|
|
129
|
+
[125.84930182113703, 6.99995],
|
|
130
|
+
[125.84930182113703, 6.833275],
|
|
131
|
+
[125.59930182113703, 6.833275]
|
|
132
|
+
]
|
|
133
|
+
]
|
|
134
|
+
}
|
|
135
|
+
},
|
|
136
|
+
{
|
|
137
|
+
"type": "Feature",
|
|
138
|
+
"properties": {
|
|
139
|
+
"sheet": 1,
|
|
140
|
+
"available": true,
|
|
141
|
+
"recordIdentifier": 10532136,
|
|
142
|
+
"websiteUrl": "http://purl.stanford.edu/bt394cv2922",
|
|
143
|
+
"title": "Dabao Kinbōzu -- ダバオ近傍圖",
|
|
144
|
+
"titleEng": "Dabao Kinb?zu",
|
|
145
|
+
"callNumber": "G8064 .D245 S50 .J3 SHEET 5",
|
|
146
|
+
"webmapURL": "http://stanford.maps.arcgis.com/apps/SimpleViewer/index.html?appid=fbf74326c29945118d5642f061647e74",
|
|
147
|
+
"downloadUrl": "https://embed.stanford.edu/iframe?url=https://purl.stanford.edu/bt394cv2922&hide_title=true#",
|
|
148
|
+
"iiifUrl": "https://purl.stanford.edu/bt394cv2922/iiif/manifest",
|
|
149
|
+
"callNumberShort": "G8064 .D245 S50 .J3",
|
|
150
|
+
"label": "SHEET 5",
|
|
151
|
+
"sheetCallNumber": "G8064 .D245 S50 .J3 SHEET 5",
|
|
152
|
+
"barcode": 36105221064400,
|
|
153
|
+
"id": 0,
|
|
154
|
+
"objectIdentifier": "bt394cv2922"
|
|
155
|
+
},
|
|
156
|
+
"geometry": {
|
|
157
|
+
"type": "Polygon",
|
|
158
|
+
"coordinates": [
|
|
159
|
+
[
|
|
160
|
+
[125.25, 6.99995],
|
|
161
|
+
[125.25, 7.166625],
|
|
162
|
+
[125.5, 7.166625],
|
|
163
|
+
[125.5, 6.99995],
|
|
164
|
+
[125.25, 6.99995]
|
|
165
|
+
]
|
|
166
|
+
]
|
|
167
|
+
}
|
|
168
|
+
},
|
|
169
|
+
{
|
|
170
|
+
"type": "Feature",
|
|
171
|
+
"properties": {
|
|
172
|
+
"sheet": 1,
|
|
173
|
+
"available": true,
|
|
174
|
+
"recordIdentifier": 10532136,
|
|
175
|
+
"websiteUrl": "http://purl.stanford.edu/qc332sy1729",
|
|
176
|
+
"title": "Dabao Kinbōzu -- ダバオ近傍圖",
|
|
177
|
+
"titleEng": "Dabao Kinb?zu",
|
|
178
|
+
"callNumber": "G8064 .D245 S50 .J3 SHEET 3",
|
|
179
|
+
"webmapURL": "http://stanford.maps.arcgis.com/apps/SimpleViewer/index.html?appid=fbf74326c29945118d5642f061647e74",
|
|
180
|
+
"downloadUrl": "https://embed.stanford.edu/iframe?url=https://purl.stanford.edu/qc332sy1729&hide_title=true#",
|
|
181
|
+
"iiifUrl": "https://purl.stanford.edu/qc332sy1729/iiif/manifest",
|
|
182
|
+
"callNumberShort": "G8064 .D245 S50 .J3",
|
|
183
|
+
"label": "SHEET 3",
|
|
184
|
+
"sheetCallNumber": "G8064 .D245 S50 .J3 SHEET 3",
|
|
185
|
+
"barcode": 36105221064400,
|
|
186
|
+
"id": 0,
|
|
187
|
+
"objectIdentifier": "qc332sy1729"
|
|
188
|
+
},
|
|
189
|
+
"geometry": {
|
|
190
|
+
"type": "Polygon",
|
|
191
|
+
"coordinates": [
|
|
192
|
+
[
|
|
193
|
+
[125.5, 6.99995],
|
|
194
|
+
[125.5, 7.166625],
|
|
195
|
+
[125.75, 7.166625],
|
|
196
|
+
[125.75, 6.99995],
|
|
197
|
+
[125.5, 6.99995]
|
|
198
|
+
]
|
|
199
|
+
]
|
|
200
|
+
}
|
|
201
|
+
},
|
|
202
|
+
{
|
|
203
|
+
"type": "Feature",
|
|
204
|
+
"properties": {
|
|
205
|
+
"sheet": 1,
|
|
206
|
+
"available": true,
|
|
207
|
+
"recordIdentifier": 10532136,
|
|
208
|
+
"websiteUrl": "http://purl.stanford.edu/nt236fh7803",
|
|
209
|
+
"title": "Dabao Kinbōzu -- ダバオ近傍圖",
|
|
210
|
+
"titleEng": "Dabao Kinb?zu",
|
|
211
|
+
"callNumber": "G8064 .D245 S50 .J3 SHEET 1",
|
|
212
|
+
"webmapURL": "http://stanford.maps.arcgis.com/apps/SimpleViewer/index.html?appid=fbf74326c29945118d5642f061647e74",
|
|
213
|
+
"downloadUrl": "https://embed.stanford.edu/iframe?url=https://purl.stanford.edu/nt236fh7803&hide_title=true#",
|
|
214
|
+
"iiifUrl": "https://purl.stanford.edu/nt236fh7803/iiif/manifest",
|
|
215
|
+
"callNumberShort": "G8064 .D245 S50 .J3",
|
|
216
|
+
"label": "SHEET 1",
|
|
217
|
+
"sheetCallNumber": "G8064 .D245 S50 .J3 SHEET 1",
|
|
218
|
+
"barcode": 36105221065500,
|
|
219
|
+
"id": 0,
|
|
220
|
+
"objectIdentifier": "nt236fh7803"
|
|
221
|
+
},
|
|
222
|
+
"geometry": {
|
|
223
|
+
"type": "Polygon",
|
|
224
|
+
"coordinates": [
|
|
225
|
+
[
|
|
226
|
+
[125.75, 6.99995],
|
|
227
|
+
[125.75, 7.166625],
|
|
228
|
+
[126, 7.166625],
|
|
229
|
+
[126, 6.99995],
|
|
230
|
+
[125.75, 6.99995]
|
|
231
|
+
]
|
|
232
|
+
]
|
|
233
|
+
}
|
|
234
|
+
},
|
|
235
|
+
{
|
|
236
|
+
"type": "Feature",
|
|
237
|
+
"properties": {
|
|
238
|
+
"sheet": 1,
|
|
239
|
+
"available": true,
|
|
240
|
+
"recordIdentifier": 10532136,
|
|
241
|
+
"websiteUrl": "http://purl.stanford.edu/qs945pv4099",
|
|
242
|
+
"title": "Dabao Kinbōzu -- ダバオ近傍圖",
|
|
243
|
+
"titleEng": "Dabao Kinb?zu",
|
|
244
|
+
"callNumber": "G8064 .D245 S50 .J3 SHEET 2",
|
|
245
|
+
"webmapURL": "http://stanford.maps.arcgis.com/apps/SimpleViewer/index.html?appid=fbf74326c29945118d5642f061647e74",
|
|
246
|
+
"downloadUrl": "https://embed.stanford.edu/iframe?url=https://purl.stanford.edu/qs945pv4099&hide_title=true#",
|
|
247
|
+
"iiifUrl": "https://purl.stanford.edu/qs945pv4099/iiif/manifest",
|
|
248
|
+
"callNumberShort": "G8064 .D245 S50 .J3",
|
|
249
|
+
"label": "SHEET 2",
|
|
250
|
+
"sheetCallNumber": "G8064 .D245 S50 .J3 SHEET 2",
|
|
251
|
+
"barcode": 36105221064400,
|
|
252
|
+
"id": 0,
|
|
253
|
+
"objectIdentifier": "qs945pv4099"
|
|
254
|
+
},
|
|
255
|
+
"geometry": {
|
|
256
|
+
"type": "Polygon",
|
|
257
|
+
"coordinates": [
|
|
258
|
+
[
|
|
259
|
+
[125.5, 7.166625],
|
|
260
|
+
[125.5, 7.3333],
|
|
261
|
+
[125.75, 7.3333],
|
|
262
|
+
[125.75, 7.166625],
|
|
263
|
+
[125.5, 7.166625]
|
|
264
|
+
]
|
|
265
|
+
]
|
|
266
|
+
}
|
|
267
|
+
}
|
|
268
|
+
]
|
|
269
|
+
}
|