-
Notifications
You must be signed in to change notification settings - Fork 6
/
iiif-map-collections.yml
1204 lines (1009 loc) · 51.8 KB
/
iiif-map-collections.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
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
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
- title: National Library of Scotland
id: nls
url: https://maps.nls.uk/
# Use https://geo.nls.uk/maps/iiif/ to turn any map ID into a IIIF image URL
numberOfMaps:
value:
dateRetrieved:
examples:
- title: 'Cornwall LXXIV.SW (includes: Paul; Penzance.)'
type: image
url: https://map-view.nls.uk/iiif/2/10143%2F101439545/info.json
- title: 'Cornwall LXXIV.NW (includes: Madron; Paul; Penzance.)'
type: image
url: https://map-view.nls.uk/iiif/10143/101439530/info.json
- title: Cornwall LXXIV.14 (Paul; Penzance)
type: image
url: https://map-view.nls.uk/iiif/2/10599%2F105996559/info.json
- title: Cornwall LXXIV.10 (Penzance)
type: image
url: https://map-view.nls.uk/iiif/2/10599%2F105996544/info.json
- title: Lancashire CIV.11 (Manchester)
type: image
url: https://map-view.nls.uk/iiif/2/12652%2F126522842/info.json
- title: 'Kent II.NW (includes: Borough Of Greenwich; Borough Of Woolwich; East Ham; West Ham.)'
type: image
url: https://map-view.nls.uk/iiif/2/10146%2F101465411/info.json
- title: 'Essex LXXXI.NW (includes: Bermondsey; Borough Of Greenwich; Deptford St Paul; Poplar Borough; Stepney.)'
type: image
url: https://map-view.nls.uk/iiif/2/10145%2F101456111/info.json
- title: Inverness-shire - Mainland X.3
type: image
url: https://map-view.nls.uk/iiif/2/8288%2F82886967/info.json
- title: Stanford Libraries
id: stanford
url: https://earthworks.stanford.edu/catalog?featured=scanned_maps&q=
numberOfMaps:
value: 21_098
dateRetrieved: 2022-8-9
examples:
- title: Map of city of Palo Alto, Santa Clara Co., Calif
type: manifest
url: https://purl.stanford.edu/vg994wz9415/iiif/manifest
- title: Holland (Koningrijk der Nederlanden)
type: manifest
url: https://purl.stanford.edu/ry246nj3092/iiif/manifest
- title: Ōmi Kuni-ezu -- 近江國絵圖
type: manifest
url: https://purl.stanford.edu/hs631zg4177/iiif/manifest
- title: Digital Commonwealth - Massachusetts Collections Online
id: digital-commonwealth
url: https://www.digitalcommonwealth.org/search?f%5Bgenre_basic_ssim%5D%5B%5D=Maps
numberOfMaps:
value: 17_759
dateRetrieved: 2022-8-9
examples:
- title: Aeronautical view of the Panama Canal
type: manifest
url: https://ark.digitalcommonwealth.org/ark:/50959/4m90fk088/manifest
- title: 'Antwerp : or Anvers'
type: manifest
url: https://ark.digitalcommonwealth.org/ark:/50959/0z709594h/manifest
- title: 'Ashland Cotton Company (Cotton & Rayon), Jewett City, Conn.'
type: manifest
url: https://ark.digitalcommonwealth.org/ark:/50959/2r36vc10j/manifest
- title: Winthrop Mills Company (Cotton & Woolen Cloth), Winthrop, Maine
type: manifest
url: https://ark.digitalcommonwealth.org/ark:/50959/2r36vc24w/manifest
- title: Leventhal Map & Education Center
id: lmec
url: https://collections.leventhalmap.org/search?utf8=%E2%9C%93&q=
api: https://collections.leventhalmap.org/search.json
numberOfMaps:
value: 11_450
dateRetrieved: 2022-8-9
examples:
- title: The town of Boston in New England
type: manifest
url: https://collections.leventhalmap.org/search/commonwealth:9s161f21f/manifest
- title: Map of the White Mountains of New Hampshire from Walling's map of the state, 1877
type: manifest
url: https://collections.leventhalmap.org/search/commonwealth:cj82m759t/manifest
- title: 'General plan : Government Center - Boston - 1959'
type: manifest
url: https://collections.leventhalmap.org/search/commonwealth:7h14cv71z/manifest
- title: Inner belt, Southwest Expressway
type: manifest
url: https://collections.leventhalmap.org/search/commonwealth:7h14cv973/manifest
- title: David Rumsey Map Collection
url: https://www.davidrumsey.com/luna/servlet/view/all
numberOfMaps:
value: 116_772
dateRetrieved: 2022-8-9
examples:
- title: Topographical Map of the City of New York. Showing Original Water Courses and Made Land.
url: https://www.davidrumsey.com/luna/servlet/iiif/m/RUMSEY~8~1~305704~90076084/manifest
- title: Map of the County of Cornwall
url: https://www.davidrumsey.com/luna/servlet/iiif/m/RUMSEY~8~1~319335~90088251/manifest
- title: 'San Francisco entrance, California : 1884'
url: https://www.davidrumsey.com/luna/servlet/iiif/m/RUMSEY~8~1~239951~5512086/manifest
- title: Nieuwe ende Waarachtighe Beschrijvinge der Zeventien
url: https://www.davidrumsey.com/luna/servlet/iiif/m/RUMSEY~8~1~305328~90075898/manifest
- title: University of Miami Libraries
id: university-of-miami-libraries
url: https://digitalcollections.library.miami.edu/digital/search/searchterm/maps!Maps/field/genre!genre/mode/exact!exact/conn/and!and/order/title/ad/asc
numberOfMaps:
value:
dateRetrieved:
examples:
- title: A new & accurate map of the Island of Cuba
type: manifest
url: https://digitalcollections.library.miami.edu/iiif/info/chc0468/16/manifest.json
- title: Rotterdams Publiek (kaarten van Stadsarchief Rotterdam)
include: false
examples:
- title: 1985-1014 Plattegrond van het centrum van Rotterdam rond 1930. De plattegrond is gebaseerd op de bladen 5, 6, 8, en 9 van de Plattegrond der gemeente Rotterdam, schaal 1:5.000, respectievelijk uitgegeven in de jaren 1935, 1928, 1935 en 1926.
type: image
url: https://rotterdamspubliek.nl/iiif/NL-RtSA_4001_1985-1014-01/info.json
- title: 1972-755-1 Kaart van het centrum van Rotterdam van voor mei 1940
type: image
url: https://rotterdamspubliek.nl/iiif/NL-RtSA_4001_1972-755-1/info.json
- title: '1970-2043 Kaart van Rotterdam en omgeving; bestaande uit 24 bladen. Blad 10: Blijdorp, Bergpolder, Oude Noorden, Nieuwe Westen, Middelland, Oude Westen, Cool.'
type: image
url: https://rotterdamspubliek.nl/iiif/NL-RtSA_4201_1970-2043/info.json
- title: 'I-259-10 Kaart van Rotterdam en omgeving; bestaande uit 24 bladen. Blad 10: Blijdorp, Bergpolder, Oude Noorden, Nieuwe Westen, Middelland, Oude Westen, Cool.'
type: image
url: https://rotterdamspubliek.nl/iiif/NL-RtSA_4201_I-259-10/info.json
- title: 'I-138-02-5 Plattegrond van Rotterdam in 12 bladen. Blad 5: Middelland; Oude Westen; Cool; Stadsdriehoek; Provenierswijk; Oude Noorden; Rubroek'
type: image
url: https://rotterdamspubliek.nl/iiif/NL-RtSA_4201_I-138-02-5/info.json
- title: Leiden University
id: leiden-university
url: https://digitalcollections.universiteitleiden.nl/islandora/search?type=dismax&islandora_solr_search_navigation=0&f[0]=RELS_EXT_isMemberOfCollection_uri_ms:%22info\:fedora\/collection\:ubl_maps%22
numberOfMaps:
value:
dateRetrieved:
examples:
- title: 'Expugnatio Fortissimae Vibis Bredae Anno 1637 COLLBN Port 51 N 13'
type: manifest
url: https://digitalcollections.universiteitleiden.nl/iiif_manifest/item%3A2481595/manifest
- title: 'item:52764-0018'
type: manifest
url: https://digitalcollections.universiteitleiden.nl/iiif_manifest/item%3A52764/manifest
- title: Library of Congress Maps
id: loc
url: https://www.loc.gov/maps/
api: https://www.loc.gov/maps/?q=&fo=json
numberOfMaps:
value: 56_350
dateRetrieved: 2022-8-9
examples:
- title: Chesapeake and Ohio Canal, Washington, D.C., Maryland, West Virginia, official map and guide
type: manifest
url: https://www.loc.gov/item/88695674/manifest.json
- title: Sanborn Fire Insurance Map from New Orleans, Orleans Parish, Louisiana.
type: manifest
url: https://www.loc.gov/item/sanborn03376_001/manifest.json
- title: 'Das Rheinland von Basel bis Rotterdam : nebst denen zunächstliegenden Städten, Strassen und Eisenbahnen'
type: manifest
url: https://www.loc.gov/item/2015591075/manifest.json
- title: Crater Lake National Park, Oregon
type: manifest
url: https://www.loc.gov/item/97684223/manifest.json
- title: Map showing the land grant of the Northern Pacific Railroad Company in Montana, Idaho, and in part of North Dakota, and in part of eastern Washington, reaching from Dickinson, North Dakota, to Ritzville, eastern Washington.
type: manifest
url: https://www.loc.gov/item/86695638/manifest.json
- title: General Karte vom Preussischen Staate mit den Gränzen der Regierungs-Bezirke und landräthlichen Kreise
type: manifest
url: https://www.loc.gov/item/2018588025/manifest.json
- title: Map of the seat of war showing the battles of July 18th & 21st, 1861
type: manifest
url: https://www.loc.gov/item/lva0000010/manifest.json
- title: New York Central and Hudson River Railroad.
type: manifest
url: https://www.loc.gov/item/98688736/manifest.json
- title: Northern Pacific Railroad Co.--completed road, September 5th, 1882.
type: manifest
url: https://www.loc.gov/item/98688748/manifest.json
- title: Plan of Rome
type: manifest
url: https://www.loc.gov/item/2018588032/manifest.json
- title: Map of the city of Washington showing location of fatal cases of zymotic diseases for the year ending June 30, 1894
type: manifest
url: https://www.loc.gov/item/87694060/manifest.json
- title: Sanborn Fire Insurance Map from Chicago, Cook County, Illinois.
type: manifest
url: https://www.loc.gov/item/sanborn01790_014/manifest.json
- title: 'Atlas of the city of New York, Manhattan Island : from actual surveys and official plans'
type: manifest
url: https://www.loc.gov/item/2010587355/manifest.json
- title: Universiteitsbibliotheek, Vrije Universiteit Amsterdam
id: vu
url: https://researchworks.oclc.org/iiif-explorer/search?q=collection.id%3Ahttps%3A%2F%2Fresearchworks.oclc.org%2Fdigital%2Fdataset%2F21033_krt
numberOfMaps:
value:
dateRetrieved:
examples:
- title: Choro-topographische kaart der Noordelijke Provinciën van het Koningrijk der Nederlanden / uitgevoerd aan het Topographisch Bureau van dezen Staat, volgens het ontwerp, de geodesische en astronomische waarnemingen van Baron Kraijenhoff
type: manifest
url: https://cdm21033.contentdm.oclc.org/iiif/info/krt/2175/manifest.json
- title: 'Scheepvaartwegen in Nederland : overzichtskaart / Top. Inrichting'
type: manifest
url: https://cdm21033.contentdm.oclc.org/iiif/info/krt/4914/manifest.json
- title: "Onteigening voor en ten behoeve van de verbreeding en de doortrekking van de Lekstraat te 's-Gravenhage : Gemeente 's-Gravenhage sectie R"
type: manifest
url: https://cdm21033.contentdm.oclc.org/digital/iiif-info/krt/2627/manifest.json
- title: 'Plattegrond van de gemeente Rotterdam, vervaardigd na de uitbreiding aan den linker oever der Maas / door H.C.T. van de Wall ; gravure en kleurendruk van J. Smulders & Cie'
type: manifest
url: https://cdm21033.contentdm.oclc.org/digital/iiif-info/krt/2889/manifest.json
- title: 'Atlas van de gemeente Amsterdam : bevattende de grondteekening van alle gebouwen met de tegenwoordige nommering, en onderscheiding van gemeente-eigendommen, publieke en bijzondere gebouwen, woon- en pakhuizen : in 101 kaarten / naar officiële bronnen bewerkt; [schaal 1:1.250]'
type: manifest
url: https://cdm21033.contentdm.oclc.org/digital/iiif-info/krt/5415/manifest.json
- title: Nieuwe platte grond der stad Rotterdam
type: manifest
url: https://cdm21033.contentdm.oclc.org/digital/iiif-info/krt/2886/manifest.json
- title: Rotterdam
type: manifest
url: https://cdm21033.contentdm.oclc.org/digital/iiif-info/krt/2888/manifest.json
- title: Plattegrond van Rotterdam / geteekend door J.J. Claus
type: manifest
url: https://cdm21033.contentdm.oclc.org/digital/iiif-info/krt/1654/manifest.json
- title: River Nieuwe Maas and Rotterdam's havens
type: manifest
url: https://cdm21033.contentdm.oclc.org/iiif/2/krt:2891/manifest.json
- title: Grondkaart der stad Rotterdam, op het einde der XVI eeuw
type: manifest
url: https://cdm21033.contentdm.oclc.org/digital/iiif-info/krt/2887/manifest.json
- title: Platte grond der stad Rotterdam / vervaardigd volgens de kadastrale plans ... door L.F. Temminck ; gegraveerd door Dl. Veelwaard en Zonen
type: manifest
url: https://cdm21033.contentdm.oclc.org/digital/iiif-info/krt/2890/manifest.json
- title: Aan de gemeente Rotterdam toe te voegen gebied
type: manifest
url: https://cdm21033.contentdm.oclc.org/iiif/2/krt:2480/manifest.json
- title: "Sleeswijk's kaart van Gooi- en Eemland : voor wandelaars, wielrijders en automobilisten : naar officieele gegevens bewerkt"
type: manifest
url: https://cdm21033.contentdm.oclc.org/iiif/2/krt:6357/manifest.json
- title: Polderkaart van de landen tusschen Maas en ij / door W.H. Hoekwater
type: manifest
url: https://cdm21033.contentdm.oclc.org/iiif/2/krt:373/manifest.json
- title: Kaart van de rivier de Lek met zyn uiterwaarden, noorder en zuider dyken, van de Merwede beneden Krimpen, tot het Schoor van Hagestein boven Vianen
type: manifest
url: https://cdm21033.contentdm.oclc.org/iiif/2/krt:1570/manifest.json
- title: 'Wageningen University & Research: Map Collection Alterra'
url: https://researchworks.oclc.org/iiif-explorer/search?q=collection.id%3Ahttps%3A%2F%2Fresearchworks.oclc.org%2Fdigital%2Fdataset%2F21045_coll25
numberOfMaps:
value:
dateRetrieved:
examples:
- title: 'Breda : Bodemkaart. [Bijlage 1]'
type: manifest
url: https://cdm21045.contentdm.oclc.org/iiif/info/coll25/1009/manifest.json
- title: 'Ruilverkaveling Westwoud : Bodemkaart. Bijlage 1'
type: manifest
url: https://cdm21045.contentdm.oclc.org/iiif/info/coll25/1350/manifest.json
- title: 'Ruilverkaveling Tubbergen : Zandkaart. Bijlage 4'
type: manifest
url: https://cdm21045.contentdm.oclc.org/iiif/info/coll25/686/manifest.json
- title: 'Wageningen University & Research: Old Maps and Atlases'
url: https://researchworks.oclc.org/iiif-explorer/search?q=collection.id%3Ahttps%3A%2F%2Fresearchworks.oclc.org%2Fdigital%2Fdataset%2F21045_coll21
numberOfMaps:
value:
dateRetrieved:
examples:
- title: Kaarte van Schouwen en Duiveland
type: manifest
url: https://cdm21045.contentdm.oclc.org/iiif/info/coll21/183/manifest.json
- title: Kaart van de beneeden rivier de Maas en de Merwede, van de Noord Zee tot Hardinksveld
type: manifest
url: https://cdm21045.contentdm.oclc.org/iiif/info/coll21/550/manifest.json
- title: University of Groningen
id: university-of-groningen
url: https://researchworks.oclc.org/iiif-explorer/search?q=collection.id%3Ahttps%3A%2F%2Fresearchworks.oclc.org%2Fdigital%2Fdataset%2F21053_Kaarten
numberOfMaps:
value:
dateRetrieved:
examples:
- title: 'Provinciekaarten van Nederland - [2]: Friesland'
type: manifest
url: https://cdm21053.contentdm.oclc.org/iiif/info/Kaarten/2655/manifest.json
- title: Accuratissima Germaniae tabula
type: manifest
url: https://cdm21053.contentdm.oclc.org/iiif/info/Kaarten/1581/manifest.json
- title: Princeton University Library
id: princeton
url: https://maps.princeton.edu/?f%5Baccess%5D%5B%5D=public&f%5Blayer_geom_type_s%5D%5B%5D=Image&layer_geom_type_s%5B%5D=Image&search_field=all_fields
numberOfMaps:
value: 31_298
dateRetrieved: 2022-8-9
examples:
- title: The environs of Dublin
type: manifest
url: https://figgy.princeton.edu/concern/scanned_maps/c9d4b69f-071e-4d57-b475-c572420a02e2/manifest
- title: Philips' clear print half inch map of the Lake District
type: manifest
url: https://figgy.princeton.edu/concern/scanned_maps/fc98c5ab-9476-4ea4-b946-1ce8cfd7a4cf/manifest
- title: Map of Russian Lapland drawn from the original map made by Professor J. A. Friis by George T. Temple
type: manifest
url: https://figgy.princeton.edu/concern/scanned_maps/fa4fb452-5f1d-42ab-a471-53afc176c948/manifest
- title: e-rara, the platform for digitized rare books from Swiss institutions
id: e-rara
url: https://www.e-rara.ch/search/quick?query=karte&facets=type%3D%22cartographic%22
numberOfMaps:
value:
dateRetrieved:
examples:
- title: Reliefkarte der Centralschweiz
type: manifest
url: https://www.e-rara.ch/i3f/v20/10747751/manifest
- title: Die Oberitalienischen Seen und ihr Excursionsgebiet
type: manifest
url: https://www.e-rara.ch/i3f/v20/6484723/manifest
- title: Polona
id: polona
url: https://polona.pl/search/?filters=category:maps,public:1,hasTextContent:0
api: https://polona.pl/api/entities/?filters=category%3Amaps+public%3A1+has_text_content%3A0&format=json&seed=1
numberOfMaps:
value: 20_168
dateRetrieved: 2022-8-9
examples:
- title: 'Pharus-Plan von Königsberg (Pr) : mit Straßenverzeichnis : Maßstab 1:15 000'
type: manifest
url: https://polona.pl/iiif/item/NTU5NTE4OTg/manifest.json
- title: 'Atlas Der Alten Welt in XVI illuminirten Charten : nach den besten Hülfsmitteln zum Gebrauch in Gymnasien'
type: manifest
url: https://polona.pl/iiif/item/NzI3NDg5MTQ/manifest.json
- title: 'Det Kgl. Bibliotek: Digitale Samlinger'
id: det-kgl-bibliotek
url: https://www5.kb.dk/maps/kortsa/2012/jul/kortatlas/subject206/da/?notAfter=¬Before=&q=&search_field=all_fields
numberOfMaps:
value:
dateRetrieved:
examples:
- title: Charta öfver Skjärgården och Farwatnen omkring Carlscrona
type: image
url: https://kb-images.kb.dk/DAMJP2/DAM/Maps/0000/085/467/UK000107/info.json
- title: Grundritning öfver Stockholms Stad N° I
type: image
url: https://kb-images.kb.dk/DAMJP2/online_master_arkiv_6/non-archival/Maps/KORTSA/ATLAS_MAJOR/KBK2_3_07/KBK2_3_07_067c/info.json
- title: Harvard Library Digital Collections
id: harvard
url: https://digitalcollections.library.harvard.edu/catalog?f%5BresourceType%5D%5B%5D=cartographic&search_field=all_fields
numberOfMaps:
value:
dateRetrieved:
examples:
- title: Mil.-Geo.-Plan von Leningrad
type: manifest
url: https://iiif.lib.harvard.edu/manifests/ids:30874065
- title: Rotterdam
type: manifest
url: https://iiif.lib.harvard.edu/manifests/ids:9780540
- title: Platte grond van Rotterdam 1912
type: manifest
url: https://iiif.lib.harvard.edu/manifests/ids:9780524
- title: Map showing routes & stations on the dual system October, 1918
type: manifest
url: https://iiif.lib.harvard.edu/manifests/ids:6938090
- title: Map of the rail-roads of the state of New York
type: manifest
url: https://iiif.lib.harvard.edu/manifests/ids:6924636
- title: Ibero-Amerikanisches Institut
id: iai
url: https://digital.iai.spk-berlin.de/viewer/search/-/-/1/-/MD_MATERIAL%3AKarte/
numberOfMaps:
value:
dateRetrieved:
examples:
- title: Province De New-York
type: image
url: https://digital.iai.spk-berlin.de/viewer/api/v1/records/630107580/files/images/00000001.tif/info.json
- title: Badische Landesbibliothek Karlsruhe
id: blb-karlsruhe
url: https://digital.blb-karlsruhe.de/Karten/topic/view/178828
numberOfMaps:
value:
dateRetrieved:
examples:
- title: 'Atlas van den Rhyn, van Bonn tot Bazel : in XXXVI. afgezette aan-een-sluitende Kaarten, bevattende: de Paltz, Lotharingen, Mentz, Trier, Wetterau, een gedeelte van Keulen, het Norrder- en Wester-deel van Schwaben, het Noorder- en Zuider-deel van den Elzas, de omliggende Landen en Steden, de Forten en Strekten aan de beide zyden der Rivier, enz.; vooräfgaat eene generaale kaart, in XXXVI. perken verdeeld'
type: manifest
url: https://digital.blb-karlsruhe.de/i3f/v20/5339993/manifest
- title: Gallica, Bibliothèque nationale de France
id: gallica-bnf
url: https://gallica.bnf.fr/html/und/cartes/cartes?mode=desktop
numberOfMaps:
value:
dateRetrieved:
examples:
- title: 'Hark ! Hark ! The dogs do bark ! : serio-comique map of Europe at war / with note by Walter Emmanuel ; designed and printed by Johnson, Riddle & Co., London'
type: manifest
url: https://gallica.bnf.fr/iiif/ark:/12148/btv1b53192683w/manifest.json
- title: Bodleian Libraries
id: bodleian-libraries
url: https://digital.bodleian.ox.ac.uk/collections/maps/
numberOfMaps:
value:
dateRetrieved:
examples:
- title: Plan of the City of Oxford
type: manifest
url: https://iiif.bodleian.ox.ac.uk/iiif/manifest/f45ff5a5-8c14-435b-82b1-f95d61f530d0.json
- title: e-manuscripta.ch
id: e-manuscripta
url: https://www.e-manuscripta.ch/emanus/maps/nav/classification/642361
numberOfMaps:
value:
dateRetrieved:
examples:
- title: Geometrischer Grundriss der Stadt Bern
type: manifest
url: https://www.e-manuscripta.ch/i3f/v20/798659/manifest
- title: World Digital Library
id: wdl
url: https://www.wdl.org/en/search/?item_type=map
numberOfMaps:
value:
dateRetrieved:
examples:
- title: Maps of Ezo, Sakhalin, and Kuril Islands
type: manifest
url: https://www.wdl.org/en/item/3/iiif/manifest.json
- title: University of Texas Libraries
id: university-of-texas-libraries
include: false
url: https://collections.lib.utexas.edu/?f%5Bdisplay_type_ms%5D%5B%5D=Maps&q=&search=&search_field=search
numberOfMaps:
value:
dateRetrieved:
examples:
- title: 'Sanborn Fire Insurance Maps [Waelder, Texas, 1922, Sheet 5]'
type: manifest
url: https://curio.lib.utexas.edu/manifests/utldams_utlmaps_177de5e8-21f1-444a-829a-386be9d57bd8.json
- title: Orka, Universität Kassel
id: uni-kassel
url: https://orka.bibliothek.uni-kassel.de/viewer/browse/-/1/-/DC:kartenundplaene/
numberOfMaps:
value:
dateRetrieved:
examples:
- title: Plan der Stadt Cassel und Umgebung 1925
type: manifest
url: https://orka.bibliothek.uni-kassel.de/viewer/rest/iiif/manifests/1535113582549/manifest/
- title: Illinois University Library
id: illinois
url: https://metadata.library.illinois.edu/collections#q=&fq%5B%5D=local_facet_repository%3AMap%20Library&q=&sort=
numberOfMaps:
value:
dateRetrieved:
examples:
- title: 'Course of the River Mississippi, from the Balise to Fort Chartres ; taken on an expedition to the Illinois, in the latter end of the year 1765 by Lieut. Ross of the 34th Regiment.'
type: manifest
url: https://digital.library.illinois.edu/items/8b2e3ed0-d675-0137-6f52-02d0d7bfd6e4-5/manifest
- title: The Mississippi
type: manifest
url: https://digital.library.illinois.edu/items/11bcdd70-d1ed-0137-6f52-02d0d7bfd6e4-c/manifest
- title: 'Topographical map of the Tri Cities Davenport Ia, Rock Island and Moline IlL. showing the Rock Island Arsenal, Rock Island Rapids and the western terminus of the Illinois and Mississippi Canal compiled and drawn from actual surveys, government, state, county and city records by M. Huebinger, S. Wangersheim, lith., Chicago.'
type: manifest
url: https://digital.library.illinois.edu/items/8b29c4b0-d675-0137-6f52-02d0d7bfd6e4-d/manifest
- title: 'Upper Mississippi River Hastings, Minnesota to Grafton, Illinois survey 1929-1930, surveyed and drawn by W.N. Brown, Inc., Washington, D.C. under contract with the U.S. Engineer Office, Rock Island, Ill., Major C.L. Hall, District Engineer.'
type: manifest
url: https://digital.library.illinois.edu/items/8b097c70-d675-0137-6f52-02d0d7bfd6e4-7/manifest
- title: Port facilities on Mississippi River
type: manifest
url: https://digital.library.illinois.edu/items/c89bb510-66e4-0138-727b-02d0d7bfd6e4-1/manifest
- title: University of Edinburgh
id: university-of-edinburgh
url: https://images.is.ed.ac.uk/luna/servlet/UoEcha~1~1
numberOfMaps:
value:
dateRetrieved:
examples:
- title: '[Geographiae Blavianae] [Also known as: Atlas major] [013 of 153]'
type: manifest
url: https://images.is.ed.ac.uk/luna/servlet/iiif/m/UoEcha~1~1~296741~101629/manifest
- title: Yale University Library
id: yale
url: https://collections.library.yale.edu/catalog?f%5Bgenre_ssim%5D%5B%5D=Maps&q=&search_field=all_fields
numberOfMaps:
value:
dateRetrieved:
examples:
- title: 'Map of the United States of America, showing the boundaries of the Union and Confederate geographical divisions and departments, Dec 31, 1862'
type: manifest
url: https://collections.library.yale.edu/manifests/2005511
- title: "Stanford's half-inch map of the battle front, Ostend, Zeebrugge, Bruges / Edward Stanford Ltd."
type: manifest
url: https://collections.library.yale.edu/manifests/15237953
- title: 'Map of Canals and Navigable Rivers in Belgium and The North of France.'
type: manifest
url: https://collections.library.yale.edu/manifests/15826830
- title: 'Antwerp / engraved & printed by B.R. Davies ; drawn by W.B. Clarke.'
type: manifest
url: https://collections.library.yale.edu/manifests/15352326
- title: Zentral- und Landesbibliothek Berlin
id: zlb
url: https://digital.zlb.de/viewer/search/-/%28DC%3A%22berlin.stadtplaenestadtansichten%22%29/1/SORT_YEARPUBLISH/-/
numberOfMaps:
value:
dateRetrieved:
examples:
- title: Die Churfürstlich Brandenburgisch nun Königlich Preussische Residenz Statt
type: manifest
url: https://digital.zlb.de/viewer/api/v1/records/34231622/manifest/
- title: Berlin und Cölln an der Spree vor dero Erweiterung
type: manifest
url: https://digital.zlb.de/viewer/api/v1/records/34231682/manifest/
- title: Die Königl. Preus. u. Churf. Brandenb. Residenz-Stadt Berlin
type: manifest
url: https://digital.zlb.de/viewer/api/v1/records/15453578/manifest/
- title: Berlin und Cölln an der Spree vor dero Erweiterung
type: manifest
url: https://digital.zlb.de/viewer/api/v1/records/34231671/manifest/
- title: Berlin
type: manifest
url: https://digital.zlb.de/viewer/api/v1/records/15455043/manifest/
- title: Berlin und Umgegend
type: manifest
url: https://digital.zlb.de/viewer/api/v1/records/15453240/manifest/
- title: Grundriss der beyden Churf. Residentz Stätte Berlin und Cölln an der Spree
type: manifest
url: https://digital.zlb.de/viewer/api/v1/records/15452583/manifest/
- title: Plan von Berlin
type: manifest
url: https://digital.zlb.de/viewer/api/v1/records/15453751/manifest/
- title: Special-Plan von Berlin
type: manifest
url: https://digital.zlb.de/viewer/api/v1/records/15453560/manifest/
- title: Schwarz Stadtplan von Berlin
type: manifest
url: https://digital.zlb.de/viewer/api/v1/records/15454953/manifest/
- title: Neuer geometrischer Plan der gesammten Königlich-Preussischen und Churfürstlich-Brandenburgischen Haupt und Residentzstadt Berlin
type: manifest
url: https://digital.zlb.de/viewer/api/v1/records/15453234/manifest/
- title: Kiessling's grosse Special-Karte der Umgegend von Berlin
type: manifest
url: https://digital.zlb.de/viewer/api/v1/records/15452541/manifest/
- title: Grundriß der Beyden Churf. Residentz Stätte Berlin und Cölln an der Spree
type: manifest
url: https://digital.zlb.de/viewer/api/v1/records/34231578/manifest/
- title: Die Königl. Residenz Berlin
type: manifest
url: https://digital.zlb.de/viewer/api/v1/records/15453880/manifest/
- title: Plan de la Ville de Berlin
type: manifest
url: https://digital.zlb.de/viewer/api/v1/records/15453614/manifest/
- title: Grundriss der Königlichen Residenzstädte Berlin
type: manifest
url: https://digital.zlb.de/viewer/api/v1/records/15453274/manifest/
- title: Gegend bey Berlin und Potsdam
type: manifest
url: https://digital.zlb.de/viewer/api/v1/records/15453585/manifest/
- title: Grundriss der Königl. Residenzstädte Berlin
type: manifest
url: https://digital.zlb.de/viewer/api/v1/records/15454999/manifest/
- title: Grundriss der Königl. Residenzstädte Berlin
type: manifest
url: https://digital.zlb.de/viewer/api/v1/records/15452831/manifest/
- title: Grundriss von Berlin und seinen naechsten Umgebungen
type: manifest
url: https://digital.zlb.de/viewer/api/v1/records/15454959/manifest/
- title: Neuester Grundriss von Berlin
type: manifest
url: https://digital.zlb.de/viewer/api/v1/records/15452793/manifest/
- title: Grundriss von Berlin
type: manifest
url: https://digital.zlb.de/viewer/api/v1/records/15453876/manifest/
- title: Historischer Atlas von Berlin
type: manifest
url: https://digital.zlb.de/viewer/api/v1/records/15453722/manifest/
- title: Manoeuver Plan der Gegend um Berlin
type: manifest
url: https://digital.zlb.de/viewer/api/v1/records/15453860/manifest/
- title: Neuester Grundriss von Berlin im Jahre 1842
type: manifest
url: https://digital.zlb.de/viewer/api/v1/records/15453211/manifest/
- title: Grundriss von Berlin
type: manifest
url: https://digital.zlb.de/viewer/api/v1/records/15453856/manifest/
- title: Plan von Berlin und Umgegend bis Charlottenburg
type: manifest
url: https://digital.zlb.de/viewer/api/v1/records/15453676/manifest/
- title: Neuester Bebauungs-Plan von Berlin
type: manifest
url: https://digital.zlb.de/viewer/api/v1/records/15452733/manifest/
- title: Neuester Plan von Berlin
type: manifest
url: https://digital.zlb.de/viewer/api/v1/records/15453878/manifest/
- title: Situations-Plan von Berlin mit dem Weichbilde und Charlottenburg
type: manifest
url: https://digital.zlb.de/viewer/api/v1/records/15453195/manifest/
- title: Straube's neuer Radfahrer-Plan von Berlin
type: manifest
url: https://digital.zlb.de/viewer/api/v1/records/16325792/manifest/
- title: Grosser Verkehrs-Plan von Berlin mit seinen Vororten
type: manifest
url: https://digital.zlb.de/viewer/api/v1/records/15453873/manifest/
- title: Karte von Berlin und nächster Umgebung mit der am 1. Juni 1906 in Kraft tretenden Gerichtseinteilung
type: manifest
url: https://digital.zlb.de/viewer/api/v1/records/15453746/manifest/
- title: Karte von Berlin und weiterer Umgebung mit der am 1. Juni 1906 in Kraft tretenden Gerichtseinteilung
type: manifest
url: https://digital.zlb.de/viewer/api/v1/records/15452979/manifest/
- title: Amtliche Entfernungskarte des Kreises Niederbarnim mit den Stadtkreisen Berlin und Lichtenberg
type: manifest
url: https://digital.zlb.de/viewer/api/v1/records/34354511/manifest/
- title: Karte von Gross-Berlin
type: manifest
url: https://digital.zlb.de/viewer/api/v1/records/15453186/manifest/
- title: Silva-Übersichtsplan von der Stadt Berlin und ihren 20 Verwaltungsbezirken
type: manifest
url: https://digital.zlb.de/viewer/api/v1/records/15453225/manifest/
- title: Wie fahr' ich?
type: manifest
url: https://digital.zlb.de/viewer/api/v1/records/15453867/manifest/
- title: Die Königl. Residenz Berlin, wie selbige sich um das Jahr 1723 präsentiret
type: manifest
url: https://digital.zlb.de/viewer/api/v1/records/15453001/manifest/
- title: Utrecht University Library Special Collections
id: utrecht-university-library
url: https://www.uu.nl/en/utrecht-university-library-special-collections/collections/maps-and-atlases
# To get the IIIIF Image URL, copy the value of img=<image-path> from the img.php URL. For example:
# http://objects.library.uu.nl/reader/img.php?obj=1874-274255&img=<image-path>.jpg
# Use that value to create a IIIF Image URL:
# https://objects.library.uu.nl/fcgi-bin/iipsrv.fcgi?IIIF=/manifestation/viewer/<image-path>.jp2/info.json
numberOfMaps:
value:
dateRetrieved:
examples:
- title: "Purmer : de Purmer is gemeeten A° 1622 door Mr. Lucas Iansz Zinck landmeter, en op nieuws oversien verbeetert en in 't licht gebragt A° 1683 door Ioannes Leupenius landmeter."
type: image
url: https://objects.library.uu.nl/fcgi-bin/iipsrv.fcgi?IIIF=/manifestation/viewer/60/82/67/60826765847502039061478934746532282060.jp2/info.json
- title: 'Chaerte vande Wieringer waert : de welcke inden jaere xvi c acht begost is bedyckt te worden ... dat de landen daer inne bedyckt ter nombre van 1895 morgens van 720 roeden de morgen Geestmeerambachts landtmaete of 600 roen binnenbanse ofte Sypse dyckmaete : by alle Contribuanten en gewillighe Bedyckers op den xij.de Julii Ao. xvj c xi by blinde lotinge gekavelt ende gedeelt zyn'
type: image
url: https://objects.library.uu.nl/fcgi-bin/iipsrv.fcgi?IIIF=/manifestation/viewer/40/62/80/40628087387683287288049825798881270832.jp2/info.json
- title: Urbis Traiecti ad Rhenum novissima et accuratissima delineatio
type: image
url: https://objects.library.uu.nl/fcgi-bin/iipsrv.fcgi?IIIF=/manifestation/viewer/11/87/40/118740207246035919625727383986846718971.jp2/info.json
- title: 'Het eiland Ameland, voormaals eene heerlijkheid, later de 31e grietenij der provincie Friesland : thans kadastrale gemeenten 1. Ballum 2. Nes, behoorende tot het IIIe kanton (Holwerd) Ie arrondissement (Leeuwarden), opgemaakt in 1854 ...'
type: image
url: https://objects.library.uu.nl/fcgi-bin/iipsrv.fcgi?IIIF=/manifestation/viewer/11/04/00/110400342046991889344064150380191603423.jp2/info.json
- title: Center for Sacramento History
id: csh
url: https://archive.org/details/cshtext?and[]=subject%3A%22CSH+Map+Digitization+Project%22
# Extract archive.org id from object url:
# https://archive.org/details/[id]
# Add id to the following scheme to fetch IIIF manifest:
# https://iiif.archivelab.org/iiif/[id]/manifest.json
numberOfMaps:
value:
dateRetrieved:
examples:
- title: Map of the State of California
type: manifest
url: https://iiif.archivelab.org/iiif/map198204401/manifest.json
- title: Plano de la Ciudad de Mexico
type: manifest
url: https://iiif.archivelab.org/iiif/map19820040456/manifest.json
- title: Principal Automobile Routes through the city of Sacramento
type: manifest
url: https://iiif.archivelab.org/iiif/map1984124004/manifest.json
- title: National Library of Israel
id: national-library-of-israel
url: https://www.nli.org.il/he/discover/maps
numberOfMaps:
value:
dateRetrieved:
examples:
- title: Nähere Umgebung von Jerusalem [cartographic material]
type: image
url: https://iiif.nli.org.il/IIIFv21/FL25567831/info.json
- title: University of Toronto Libraries
id: utoronto
url: https://mdlcollections.library.utoronto.ca/islandora/search?page=5&islandora_solr_search_navigation=0&f%5B0%5D=RELS_EXT_isMemberOfCollection_uri_ms%3A%22info%5C%3Afedora%5C/mdl%5C%3Amaps%22
numberOfMaps:
value:
dateRetrieved:
examples:
- title: Topographic map of the Niagara Gorge
type: manifest
url: https://iiif.library.utoronto.ca/presentation/v2/mdl:G3312_N52_C222_12_1912/manifest
- title: Street map of Vancouver ; Street map of Victoria
type: manifest
url: https://iiif.library.utoronto.ca/presentation/v2/mdl:G3574_V3_50_1952/manifest
- title: South Norway Road Map
type: manifest
url: https://iiif.library.utoronto.ca/presentation/v2/mdl:1685/manifest
- title: Town plan of Bonifacio
type: manifest
url: https://iiif.library.utoronto.ca/presentation/v2/mdl:2159/manifest
- title: Carte générale du Liban
type: manifest
url: https://iiif.library.utoronto.ca/presentation/v2/mdl:2080/manifest
- title: The John Carter Brown Library
id: jcb
url: https://jcb.lunaimaging.com/luna/servlet/JCBMAPS~1~1
numberOfMaps:
value:
dateRetrieved:
examples:
- title: The Island of St. Vincent
type: manifest
url: https://jcb.lunaimaging.com/luna/servlet/iiif/m/JCBMAPS~1~1~2104~101547/manifest
- title: Berkeley Library
id: berkeley
url: https://digital.lib.berkeley.edu/browse-collections
numberOfMaps:
value:
dateRetrieved:
examples:
- title: Chromo-topographische Kaart van het Koninkrijk der Nederlanden (1:200 000).
type: manifest
url: https://digicoll.lib.berkeley.edu/nanna/iiif/112509/manifest
- title: University of British Columbia
id: ubc
url: https://open.library.ubc.ca/search?q=*&p=0&sort=0&view=2&perPage=0&dBegin=&dEnd=&c=7&genre=Maps&type=Still%20Image
numberOfMaps:
value:
dateRetrieved:
examples:
- title: Map showing vicinity of Lake Louise and Moraine Lake (Lakes in the Clouds)
type: manifest
url: https://iiif.library.ubc.ca/presentation/cdm.chungtext.1-0226125/manifest
- title: Staatsbibliothek zu Berlin
id: stabi
url: https://digital-beta.staatsbibliothek-berlin.de/suche?category%5B0%5D=Karten&queryString=%2A&fulltext=
# Manual: https://lab.sbb.berlin/dc/
# Count: 939 on 2022-04-27
numberOfMaps:
value:
dateRetrieved:
examples:
- title: "Plans et Elevations Des Places fortes De france et autres : Par l'ordre de Monseigneur le Marquis de louvois"
type: manifest
url: https://content.staatsbibliothek-berlin.de/dc/682884332/manifest
- title: Plan de la ville et des nouveaux ouvrages de Stettin
type: manifest
url: https://content.staatsbibliothek-berlin.de/dc/1011806517/manifest
- title: 歴代分埜之圖古今人物事跡
type: manifest
url: https://content.staatsbibliothek-berlin.de/dc/3343670510/manifest
- title: 'Plan der Stadt Neu-Ruppin : nach welchen Seine Königliche Majestaet von Preussen dieselbe nach dem Brande vom 26ten August 1787 gegenwärtig erweitern und gantz Massief erbauen lassen ; [gewidmet] Friderich Wilhelm II. König von Preussen'
type: manifest
url: https://content.staatsbibliothek-berlin.de/dc/644435321/manifest
- title: Rijksdienst voor het Cultureel Erfgoed
id: rce
url: https://beeldbank.cultureelerfgoed.nl
# Get UUID from download link or page inspector (not the same as page url!)
# URL pattern: https://images.memorix.nl/rce/iiif/[UUID]
# Minuutplans: https://beeldbank.cultureelerfgoed.nl/rce-mediabank/?mode=gallery&view=horizontal&q=*&rows=1&page=1&fq%5B%5D=search_s_collection:%22Minuutplans%22&sort=order_s_documentvolgorde%20asc&reverse=0&filterAction
# Verzamelplans: https://beeldbank.cultureelerfgoed.nl/rce-mediabank/?mode=gallery&view=horizontal&q=*&rows=1&page=1&fq%5B%5D=search_s_collection:%22Verzamelplans%22&sort=order_s_documentvolgorde%20asc&reverse=0&filterAction
# Kaarten: https://beeldbank.cultureelerfgoed.nl/rce-mediabank/?q=*&sort=order_s_documentvolgorde%20asc&mode=gallery&view=horizontal&page=1&fq%5B%5D=search_s_collection:%22Kaarten%22&reverse=0
numberOfMaps:
value:
dateRetrieved:
examples:
- title: 'Kadastrale kaart 1811-1832: minuutplan Ootmarsum, Overijssel, sectie A, blad 02 (MIN04042A02)'
url: https://images.memorix.nl/rce/iiif/f3f4389a-bb25-21c1-8890-2f0541400424/info.json
type: image
- title: 'Kaart met (bouwkundige) waardering van Zutphen - schaal 1:1000'
url: https://images.memorix.nl/rce/iiif/dfb28bb1-c77e-1dd8-fb8b-22d4eeff3399/info.json
type: image
- title: Stadsarchief Amsterdam
id: stadsarchief-ams
url: https://archief.amsterdam/beeldbank
# Get UUID from page url (after /media/)
# URL pattern: https://images.memorix.nl/ams/iiif/[UUID]
# negentiende-eeuwse buurtatlaskaarten: https://archief.amsterdam/beeldbank/?mode=gallery&view=horizontal&rows=45&page=1&fq%5B%5D=search_s_dc_provenance:%22Collectie%20Stadsarchief%20Amsterdam:%20negentiende-eeuwse%20buurtatlaskaarten%22&sort=random%7B1653672698032%7D%20asc
# Kaart van Amsterdam, Schaal 1:1.000, vervaardigd door Dienst Publieke Werken en haar rechtsopvolgers: https://archief.amsterdam/beeldbank/?mode=gallery&view=horizontal&rows=45&page=1&fq%5B%5D=search_s_dc_provenance:%22Collectie%20Stadsarchief%20Amsterdam:%20Kaart%20van%20Amsterdam,%20Schaal%201:1.000,%20vervaardigd%20door%20Dienst%20Publieke%20Werken%20en%20haar%20rechtsopvolgers%22&sort=random%7B1653672698032%7D%20asc
numberOfMaps:
value:
dateRetrieved:
examples:
- title: Kaart van Amsterdam 1:10.000, Blad 6
url: https://images.memorix.nl/ams/iiif/33cf1acd-bb35-13e6-f662-b1fbf5691422/info.json
type: image
- title: Amstelredamum emporium Hollandiae primarium totiusque Europae celeberrimum
url: https://images.memorix.nl/ams/iiif/2d51b17b-ddd7-695f-e1c8-115af40ce2cd/info.json
type: image
- title: University of Wisconsin-Milwaukee Libraries - American Geographical Society Library
id: uwm
url: https://collections.lib.uwm.edu/digital/collection/agdm/
numberOfMaps:
value: 19_869
dateRetrieved: 2022-8-9
examples:
- title: am000186
type: image
url: https://collections.lib.uwm.edu/digital/collection/agdm/id/538/info.json
- title: Gouda Tijdmachine
id: goudatijdmachine
url: https://www.goudatijdmachine.nl/data/collection/ark:/60537/bb25wx
numberOfMaps:
value:
dateRetrieved:
examples:
- title: Kadastrale kaart (minuutplan) Gouda, sectie B
type: manifest
url: https://www.goudatijdmachine.nl/data/iiif/2/17766/manifest
- title: Stadsplattegrond van Gouda
type: manifest
url: https://www.goudatijdmachine.nl/data/iiif/2/165/manifest
- title: Plattegrond van Gouda, Joan Blaeu, 1649
url: https://www.goudatijdmachine.nl/data/iiif/2/17782/manifest
type: manifest
- title: Gouda, Frederick de Wit, 1698
url: https://www.goudatijdmachine.nl/data/iiif/2/17779/manifest
type: manifest
- title: Plattegrond der Stad Gouda met al des Zelfs Gebouwen Gragten en Straaten, Hendrik de Vos, omstreeks 1615
url: https://www.goudatijdmachine.nl/data/iiif/2/17777/manifest
type: manifest
- title: Gouda, Willem de Jong, 1690
url: https://www.goudatijdmachine.nl/data/iiif/2/17775/manifest
type: manifest
- title: New York Public Library
id: nypl
url: https://digitalcollections.nypl.org/search/index?filters%5Btype%5D=cartographic&keywords=
numberOfMaps:
value: 28_246
dateRetrieved: 2022-8-9
examples:
- title: 'Plate 29: Coney Island. Bounded by Canal Avenue (Coney Island Creek), Shell Road, Dewey Place, W. 6th Street, Neptune Avenue, W. 3rd Street, Riverside Avenue, Ocean Parkway, Concourse Drive, (Dreamland & Steeplechase Park) Surf Avenue and W. 23rd Street'
type: image
url: https://iiif.nypl.org/iiif/2/58009096/info.json
- title: Nationaal Archief
id: na
url: https://www.nationaalarchief.nl/onderzoeken/zoeken?activeTab=maps&rm=gallery
numberOfMaps:
value: 50_275
dateRetrieved: 2022-8-9
examples:
- title: 'NL-HaNA_2.13.167_276_01'
type: image
url: https://service.archief.nl/iipsrv?IIIF=/1f/3f/f5/40/f4/9c/47/9a/b1/d5/9b/f1/92/ed/3d/3c/6327956b-18df-460e-be5b-07532809ca21.jp2/info.json
- title: Universiteit van Amsterdam - Allard Pierson
id: uva
url: https://www.uvaerfgoed.nl/beeldbank/nl/xsearch?metadata=kaarten
examples:
- title: Nieuwe kaart van Mynden en de Loosdrecht
type: image
url: https://images.uba.uva.nl/iiif/2/erfgoed!kaarten!1!8!3!990008493810205131!105-19-01.jpg/info.json