├── .github └── workflows │ └── build.yml ├── .gitignore ├── README.md ├── iiif-map-collections.yml ├── package-lock.json └── package.json /.github/workflows/build.yml: -------------------------------------------------------------------------------- 1 | name: deploy 2 | 3 | on: 4 | push: 5 | branches: 6 | - main 7 | 8 | jobs: 9 | build: 10 | 11 | runs-on: ubuntu-latest 12 | 13 | steps: 14 | - uses: actions/checkout@v2 15 | - name: Use Node.js 16 | uses: actions/setup-node@v1 17 | with: 18 | node-version: 14 19 | - run: mkdir public 20 | - run: npm ci 21 | - run: | 22 | git config user.name "bertspaan" && git config user.email "bert.spaan@gmail.com" 23 | npm run deploy 24 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | public 3 | 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # IIIF Map Collections 2 | 3 | This repository contains a curated list of collections of scanned maps that can be accessed with [IIIF](https://iiif.io/). 4 | 5 | View and edit the list here: [iiif-map-collections.yml](iiif-map-collections.yml) 6 | 7 | The map collections in this file are used througout the [Allmaps project](https://allmaps.org). 8 | -------------------------------------------------------------------------------- /iiif-map-collections.yml: -------------------------------------------------------------------------------- 1 | - title: National Library of Scotland 2 | id: nls 3 | url: https://maps.nls.uk/ 4 | # Use https://geo.nls.uk/maps/iiif/ to turn any map ID into a IIIF image URL 5 | numberOfMaps: 6 | value: 7 | dateRetrieved: 8 | examples: 9 | - title: 'Cornwall LXXIV.SW (includes: Paul; Penzance.)' 10 | type: image 11 | url: https://map-view.nls.uk/iiif/2/10143%2F101439545/info.json 12 | 13 | - title: 'Cornwall LXXIV.NW (includes: Madron; Paul; Penzance.)' 14 | type: image 15 | url: https://map-view.nls.uk/iiif/10143/101439530/info.json 16 | 17 | - title: Cornwall LXXIV.14 (Paul; Penzance) 18 | type: image 19 | url: https://map-view.nls.uk/iiif/2/10599%2F105996559/info.json 20 | 21 | - title: Cornwall LXXIV.10 (Penzance) 22 | type: image 23 | url: https://map-view.nls.uk/iiif/2/10599%2F105996544/info.json 24 | 25 | - title: Lancashire CIV.11 (Manchester) 26 | type: image 27 | url: https://map-view.nls.uk/iiif/2/12652%2F126522842/info.json 28 | 29 | - title: 'Kent II.NW (includes: Borough Of Greenwich; Borough Of Woolwich; East Ham; West Ham.)' 30 | type: image 31 | url: https://map-view.nls.uk/iiif/2/10146%2F101465411/info.json 32 | 33 | - title: 'Essex LXXXI.NW (includes: Bermondsey; Borough Of Greenwich; Deptford St Paul; Poplar Borough; Stepney.)' 34 | type: image 35 | url: https://map-view.nls.uk/iiif/2/10145%2F101456111/info.json 36 | 37 | - title: Inverness-shire - Mainland X.3 38 | type: image 39 | url: https://map-view.nls.uk/iiif/2/8288%2F82886967/info.json 40 | 41 | - title: Stanford Libraries 42 | id: stanford 43 | url: https://earthworks.stanford.edu/catalog?featured=scanned_maps&q= 44 | numberOfMaps: 45 | value: 21_098 46 | dateRetrieved: 2022-8-9 47 | examples: 48 | - title: Map of city of Palo Alto, Santa Clara Co., Calif 49 | type: manifest 50 | url: https://purl.stanford.edu/vg994wz9415/iiif/manifest 51 | 52 | - title: Holland (Koningrijk der Nederlanden) 53 | type: manifest 54 | url: https://purl.stanford.edu/ry246nj3092/iiif/manifest 55 | 56 | - title: Ōmi Kuni-ezu -- 近江國絵圖 57 | type: manifest 58 | url: https://purl.stanford.edu/hs631zg4177/iiif/manifest 59 | 60 | - title: Digital Commonwealth - Massachusetts Collections Online 61 | id: digital-commonwealth 62 | url: https://www.digitalcommonwealth.org/search?f%5Bgenre_basic_ssim%5D%5B%5D=Maps 63 | numberOfMaps: 64 | value: 17_759 65 | dateRetrieved: 2022-8-9 66 | examples: 67 | - title: Aeronautical view of the Panama Canal 68 | type: manifest 69 | url: https://ark.digitalcommonwealth.org/ark:/50959/4m90fk088/manifest 70 | 71 | - title: 'Antwerp : or Anvers' 72 | type: manifest 73 | url: https://ark.digitalcommonwealth.org/ark:/50959/0z709594h/manifest 74 | 75 | - title: 'Ashland Cotton Company (Cotton & Rayon), Jewett City, Conn.' 76 | type: manifest 77 | url: https://ark.digitalcommonwealth.org/ark:/50959/2r36vc10j/manifest 78 | 79 | - title: Winthrop Mills Company (Cotton & Woolen Cloth), Winthrop, Maine 80 | type: manifest 81 | url: https://ark.digitalcommonwealth.org/ark:/50959/2r36vc24w/manifest 82 | 83 | - title: Leventhal Map & Education Center 84 | id: lmec 85 | url: https://collections.leventhalmap.org/search?utf8=%E2%9C%93&q= 86 | api: https://collections.leventhalmap.org/search.json 87 | numberOfMaps: 88 | value: 11_450 89 | dateRetrieved: 2022-8-9 90 | examples: 91 | - title: The town of Boston in New England 92 | type: manifest 93 | url: https://collections.leventhalmap.org/search/commonwealth:9s161f21f/manifest 94 | 95 | - title: Map of the White Mountains of New Hampshire from Walling's map of the state, 1877 96 | type: manifest 97 | url: https://collections.leventhalmap.org/search/commonwealth:cj82m759t/manifest 98 | 99 | - title: 'General plan : Government Center - Boston - 1959' 100 | type: manifest 101 | url: https://collections.leventhalmap.org/search/commonwealth:7h14cv71z/manifest 102 | 103 | - title: Inner belt, Southwest Expressway 104 | type: manifest 105 | url: https://collections.leventhalmap.org/search/commonwealth:7h14cv973/manifest 106 | 107 | - title: David Rumsey Map Collection 108 | url: https://www.davidrumsey.com/luna/servlet/view/all 109 | numberOfMaps: 110 | value: 116_772 111 | dateRetrieved: 2022-8-9 112 | examples: 113 | - title: Topographical Map of the City of New York. Showing Original Water Courses and Made Land. 114 | url: https://www.davidrumsey.com/luna/servlet/iiif/m/RUMSEY~8~1~305704~90076084/manifest 115 | 116 | - title: Map of the County of Cornwall 117 | url: https://www.davidrumsey.com/luna/servlet/iiif/m/RUMSEY~8~1~319335~90088251/manifest 118 | 119 | - title: 'San Francisco entrance, California : 1884' 120 | url: https://www.davidrumsey.com/luna/servlet/iiif/m/RUMSEY~8~1~239951~5512086/manifest 121 | 122 | - title: Nieuwe ende Waarachtighe Beschrijvinge der Zeventien 123 | url: https://www.davidrumsey.com/luna/servlet/iiif/m/RUMSEY~8~1~305328~90075898/manifest 124 | 125 | - title: University of Miami Libraries 126 | id: university-of-miami-libraries 127 | url: https://digitalcollections.library.miami.edu/digital/search/searchterm/maps!Maps/field/genre!genre/mode/exact!exact/conn/and!and/order/title/ad/asc 128 | numberOfMaps: 129 | value: 130 | dateRetrieved: 131 | examples: 132 | - title: A new & accurate map of the Island of Cuba 133 | type: manifest 134 | url: https://digitalcollections.library.miami.edu/iiif/info/chc0468/16/manifest.json 135 | 136 | - title: Rotterdams Publiek (kaarten van Stadsarchief Rotterdam) 137 | include: false 138 | examples: 139 | - 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. 140 | type: image 141 | url: https://rotterdamspubliek.nl/iiif/NL-RtSA_4001_1985-1014-01/info.json 142 | 143 | - title: 1972-755-1 Kaart van het centrum van Rotterdam van voor mei 1940 144 | type: image 145 | url: https://rotterdamspubliek.nl/iiif/NL-RtSA_4001_1972-755-1/info.json 146 | 147 | - title: '1970-2043 Kaart van Rotterdam en omgeving; bestaande uit 24 bladen. Blad 10: Blijdorp, Bergpolder, Oude Noorden, Nieuwe Westen, Middelland, Oude Westen, Cool.' 148 | type: image 149 | url: https://rotterdamspubliek.nl/iiif/NL-RtSA_4201_1970-2043/info.json 150 | 151 | - 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.' 152 | type: image 153 | url: https://rotterdamspubliek.nl/iiif/NL-RtSA_4201_I-259-10/info.json 154 | 155 | - title: 'I-138-02-5 Plattegrond van Rotterdam in 12 bladen. Blad 5: Middelland; Oude Westen; Cool; Stadsdriehoek; Provenierswijk; Oude Noorden; Rubroek' 156 | type: image 157 | url: https://rotterdamspubliek.nl/iiif/NL-RtSA_4201_I-138-02-5/info.json 158 | 159 | - title: Leiden University 160 | id: leiden-university 161 | 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 162 | numberOfMaps: 163 | value: 164 | dateRetrieved: 165 | examples: 166 | - title: 'Expugnatio Fortissimae Vibis Bredae Anno 1637 COLLBN Port 51 N 13' 167 | type: manifest 168 | url: https://digitalcollections.universiteitleiden.nl/iiif_manifest/item%3A2481595/manifest 169 | 170 | - title: 'item:52764-0018' 171 | type: manifest 172 | url: https://digitalcollections.universiteitleiden.nl/iiif_manifest/item%3A52764/manifest 173 | 174 | - title: Library of Congress Maps 175 | id: loc 176 | url: https://www.loc.gov/maps/ 177 | api: https://www.loc.gov/maps/?q=&fo=json 178 | numberOfMaps: 179 | value: 56_350 180 | dateRetrieved: 2022-8-9 181 | examples: 182 | - title: Chesapeake and Ohio Canal, Washington, D.C., Maryland, West Virginia, official map and guide 183 | type: manifest 184 | url: https://www.loc.gov/item/88695674/manifest.json 185 | 186 | - title: Sanborn Fire Insurance Map from New Orleans, Orleans Parish, Louisiana. 187 | type: manifest 188 | url: https://www.loc.gov/item/sanborn03376_001/manifest.json 189 | 190 | - title: 'Das Rheinland von Basel bis Rotterdam : nebst denen zunächstliegenden Städten, Strassen und Eisenbahnen' 191 | type: manifest 192 | url: https://www.loc.gov/item/2015591075/manifest.json 193 | 194 | - title: Crater Lake National Park, Oregon 195 | type: manifest 196 | url: https://www.loc.gov/item/97684223/manifest.json 197 | 198 | - 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. 199 | type: manifest 200 | url: https://www.loc.gov/item/86695638/manifest.json 201 | 202 | - title: General Karte vom Preussischen Staate mit den Gränzen der Regierungs-Bezirke und landräthlichen Kreise 203 | type: manifest 204 | url: https://www.loc.gov/item/2018588025/manifest.json 205 | 206 | - title: Map of the seat of war showing the battles of July 18th & 21st, 1861 207 | type: manifest 208 | url: https://www.loc.gov/item/lva0000010/manifest.json 209 | 210 | - title: New York Central and Hudson River Railroad. 211 | type: manifest 212 | url: https://www.loc.gov/item/98688736/manifest.json 213 | 214 | - title: Northern Pacific Railroad Co.--completed road, September 5th, 1882. 215 | type: manifest 216 | url: https://www.loc.gov/item/98688748/manifest.json 217 | 218 | - title: Plan of Rome 219 | type: manifest 220 | url: https://www.loc.gov/item/2018588032/manifest.json 221 | 222 | - title: Map of the city of Washington showing location of fatal cases of zymotic diseases for the year ending June 30, 1894 223 | type: manifest 224 | url: https://www.loc.gov/item/87694060/manifest.json 225 | 226 | - title: Sanborn Fire Insurance Map from Chicago, Cook County, Illinois. 227 | type: manifest 228 | url: https://www.loc.gov/item/sanborn01790_014/manifest.json 229 | 230 | - title: 'Atlas of the city of New York, Manhattan Island : from actual surveys and official plans' 231 | type: manifest 232 | url: https://www.loc.gov/item/2010587355/manifest.json 233 | 234 | - title: Universiteitsbibliotheek, Vrije Universiteit Amsterdam 235 | id: vu 236 | url: https://researchworks.oclc.org/iiif-explorer/search?q=collection.id%3Ahttps%3A%2F%2Fresearchworks.oclc.org%2Fdigital%2Fdataset%2F21033_krt 237 | numberOfMaps: 238 | value: 239 | dateRetrieved: 240 | examples: 241 | - 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 242 | type: manifest 243 | url: https://cdm21033.contentdm.oclc.org/iiif/info/krt/2175/manifest.json 244 | 245 | - title: 'Scheepvaartwegen in Nederland : overzichtskaart / Top. Inrichting' 246 | type: manifest 247 | url: https://cdm21033.contentdm.oclc.org/iiif/info/krt/4914/manifest.json 248 | 249 | - title: "Onteigening voor en ten behoeve van de verbreeding en de doortrekking van de Lekstraat te 's-Gravenhage : Gemeente 's-Gravenhage sectie R" 250 | type: manifest 251 | url: https://cdm21033.contentdm.oclc.org/digital/iiif-info/krt/2627/manifest.json 252 | 253 | - 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' 254 | type: manifest 255 | url: https://cdm21033.contentdm.oclc.org/digital/iiif-info/krt/2889/manifest.json 256 | 257 | - 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]' 258 | type: manifest 259 | url: https://cdm21033.contentdm.oclc.org/digital/iiif-info/krt/5415/manifest.json 260 | 261 | - title: Nieuwe platte grond der stad Rotterdam 262 | type: manifest 263 | url: https://cdm21033.contentdm.oclc.org/digital/iiif-info/krt/2886/manifest.json 264 | 265 | - title: Rotterdam 266 | type: manifest 267 | url: https://cdm21033.contentdm.oclc.org/digital/iiif-info/krt/2888/manifest.json 268 | 269 | - title: Plattegrond van Rotterdam / geteekend door J.J. Claus 270 | type: manifest 271 | url: https://cdm21033.contentdm.oclc.org/digital/iiif-info/krt/1654/manifest.json 272 | 273 | - title: River Nieuwe Maas and Rotterdam's havens 274 | type: manifest 275 | url: https://cdm21033.contentdm.oclc.org/iiif/2/krt:2891/manifest.json 276 | 277 | - title: Grondkaart der stad Rotterdam, op het einde der XVI eeuw 278 | type: manifest 279 | url: https://cdm21033.contentdm.oclc.org/digital/iiif-info/krt/2887/manifest.json 280 | 281 | - title: Platte grond der stad Rotterdam / vervaardigd volgens de kadastrale plans ... door L.F. Temminck ; gegraveerd door Dl. Veelwaard en Zonen 282 | type: manifest 283 | url: https://cdm21033.contentdm.oclc.org/digital/iiif-info/krt/2890/manifest.json 284 | 285 | - title: Aan de gemeente Rotterdam toe te voegen gebied 286 | type: manifest 287 | url: https://cdm21033.contentdm.oclc.org/iiif/2/krt:2480/manifest.json 288 | 289 | - title: "Sleeswijk's kaart van Gooi- en Eemland : voor wandelaars, wielrijders en automobilisten : naar officieele gegevens bewerkt" 290 | type: manifest 291 | url: https://cdm21033.contentdm.oclc.org/iiif/2/krt:6357/manifest.json 292 | 293 | - title: Polderkaart van de landen tusschen Maas en ij / door W.H. Hoekwater 294 | type: manifest 295 | url: https://cdm21033.contentdm.oclc.org/iiif/2/krt:373/manifest.json 296 | 297 | - 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 298 | type: manifest 299 | url: https://cdm21033.contentdm.oclc.org/iiif/2/krt:1570/manifest.json 300 | 301 | - title: 'Wageningen University & Research: Map Collection Alterra' 302 | url: https://researchworks.oclc.org/iiif-explorer/search?q=collection.id%3Ahttps%3A%2F%2Fresearchworks.oclc.org%2Fdigital%2Fdataset%2F21045_coll25 303 | numberOfMaps: 304 | value: 305 | dateRetrieved: 306 | examples: 307 | - title: 'Breda : Bodemkaart. [Bijlage 1]' 308 | type: manifest 309 | url: https://cdm21045.contentdm.oclc.org/iiif/info/coll25/1009/manifest.json 310 | 311 | - title: 'Ruilverkaveling Westwoud : Bodemkaart. Bijlage 1' 312 | type: manifest 313 | url: https://cdm21045.contentdm.oclc.org/iiif/info/coll25/1350/manifest.json 314 | 315 | - title: 'Ruilverkaveling Tubbergen : Zandkaart. Bijlage 4' 316 | type: manifest 317 | url: https://cdm21045.contentdm.oclc.org/iiif/info/coll25/686/manifest.json 318 | 319 | - title: 'Wageningen University & Research: Old Maps and Atlases' 320 | url: https://researchworks.oclc.org/iiif-explorer/search?q=collection.id%3Ahttps%3A%2F%2Fresearchworks.oclc.org%2Fdigital%2Fdataset%2F21045_coll21 321 | numberOfMaps: 322 | value: 323 | dateRetrieved: 324 | examples: 325 | - title: Kaarte van Schouwen en Duiveland 326 | type: manifest 327 | url: https://cdm21045.contentdm.oclc.org/iiif/info/coll21/183/manifest.json 328 | 329 | - title: Kaart van de beneeden rivier de Maas en de Merwede, van de Noord Zee tot Hardinksveld 330 | type: manifest 331 | url: https://cdm21045.contentdm.oclc.org/iiif/info/coll21/550/manifest.json 332 | 333 | - title: University of Groningen 334 | id: university-of-groningen 335 | url: https://researchworks.oclc.org/iiif-explorer/search?q=collection.id%3Ahttps%3A%2F%2Fresearchworks.oclc.org%2Fdigital%2Fdataset%2F21053_Kaarten 336 | numberOfMaps: 337 | value: 338 | dateRetrieved: 339 | examples: 340 | - title: 'Provinciekaarten van Nederland - [2]: Friesland' 341 | type: manifest 342 | url: https://cdm21053.contentdm.oclc.org/iiif/info/Kaarten/2655/manifest.json 343 | 344 | - title: Accuratissima Germaniae tabula 345 | type: manifest 346 | url: https://cdm21053.contentdm.oclc.org/iiif/info/Kaarten/1581/manifest.json 347 | 348 | - title: Princeton University Library 349 | id: princeton 350 | 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 351 | numberOfMaps: 352 | value: 31_298 353 | dateRetrieved: 2022-8-9 354 | examples: 355 | - title: The environs of Dublin 356 | type: manifest 357 | url: https://figgy.princeton.edu/concern/scanned_maps/c9d4b69f-071e-4d57-b475-c572420a02e2/manifest 358 | 359 | - title: Philips' clear print half inch map of the Lake District 360 | type: manifest 361 | url: https://figgy.princeton.edu/concern/scanned_maps/fc98c5ab-9476-4ea4-b946-1ce8cfd7a4cf/manifest 362 | 363 | - title: Map of Russian Lapland drawn from the original map made by Professor J. A. Friis by George T. Temple 364 | type: manifest 365 | url: https://figgy.princeton.edu/concern/scanned_maps/fa4fb452-5f1d-42ab-a471-53afc176c948/manifest 366 | 367 | - title: e-rara, the platform for digitized rare books from Swiss institutions 368 | id: e-rara 369 | url: https://www.e-rara.ch/search/quick?query=karte&facets=type%3D%22cartographic%22 370 | numberOfMaps: 371 | value: 372 | dateRetrieved: 373 | examples: 374 | - title: Reliefkarte der Centralschweiz 375 | type: manifest 376 | url: https://www.e-rara.ch/i3f/v20/10747751/manifest 377 | 378 | - title: Die Oberitalienischen Seen und ihr Excursionsgebiet 379 | type: manifest 380 | url: https://www.e-rara.ch/i3f/v20/6484723/manifest 381 | 382 | - title: Polona 383 | id: polona 384 | url: https://polona.pl/search/?filters=category:maps,public:1,hasTextContent:0 385 | api: https://polona.pl/api/entities/?filters=category%3Amaps+public%3A1+has_text_content%3A0&format=json&seed=1 386 | numberOfMaps: 387 | value: 20_168 388 | dateRetrieved: 2022-8-9 389 | examples: 390 | - title: 'Pharus-Plan von Königsberg (Pr) : mit Straßenverzeichnis : Maßstab 1:15 000' 391 | type: manifest 392 | url: https://polona.pl/iiif/item/NTU5NTE4OTg/manifest.json 393 | 394 | - title: 'Atlas Der Alten Welt in XVI illuminirten Charten : nach den besten Hülfsmitteln zum Gebrauch in Gymnasien' 395 | type: manifest 396 | url: https://polona.pl/iiif/item/NzI3NDg5MTQ/manifest.json 397 | 398 | - title: 'Det Kgl. Bibliotek: Digitale Samlinger' 399 | id: det-kgl-bibliotek 400 | url: https://www5.kb.dk/maps/kortsa/2012/jul/kortatlas/subject206/da/?notAfter=¬Before=&q=&search_field=all_fields 401 | numberOfMaps: 402 | value: 403 | dateRetrieved: 404 | examples: 405 | - title: Charta öfver Skjärgården och Farwatnen omkring Carlscrona 406 | type: image 407 | url: https://kb-images.kb.dk/DAMJP2/DAM/Maps/0000/085/467/UK000107/info.json 408 | 409 | - title: Grundritning öfver Stockholms Stad N° I 410 | type: image 411 | 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 412 | 413 | - title: Harvard Library Digital Collections 414 | id: harvard 415 | url: https://digitalcollections.library.harvard.edu/catalog?f%5BresourceType%5D%5B%5D=cartographic&search_field=all_fields 416 | numberOfMaps: 417 | value: 418 | dateRetrieved: 419 | examples: 420 | - title: Mil.-Geo.-Plan von Leningrad 421 | type: manifest 422 | url: https://iiif.lib.harvard.edu/manifests/ids:30874065 423 | 424 | - title: Rotterdam 425 | type: manifest 426 | url: https://iiif.lib.harvard.edu/manifests/ids:9780540 427 | 428 | - title: Platte grond van Rotterdam 1912 429 | type: manifest 430 | url: https://iiif.lib.harvard.edu/manifests/ids:9780524 431 | 432 | - title: Map showing routes & stations on the dual system October, 1918 433 | type: manifest 434 | url: https://iiif.lib.harvard.edu/manifests/ids:6938090 435 | 436 | - title: Map of the rail-roads of the state of New York 437 | type: manifest 438 | url: https://iiif.lib.harvard.edu/manifests/ids:6924636 439 | 440 | - title: Ibero-Amerikanisches Institut 441 | id: iai 442 | url: https://digital.iai.spk-berlin.de/viewer/search/-/-/1/-/MD_MATERIAL%3AKarte/ 443 | numberOfMaps: 444 | value: 445 | dateRetrieved: 446 | examples: 447 | - title: Province De New-York 448 | type: image 449 | url: https://digital.iai.spk-berlin.de/viewer/api/v1/records/630107580/files/images/00000001.tif/info.json 450 | 451 | - title: Badische Landesbibliothek Karlsruhe 452 | id: blb-karlsruhe 453 | url: https://digital.blb-karlsruhe.de/Karten/topic/view/178828 454 | numberOfMaps: 455 | value: 456 | dateRetrieved: 457 | examples: 458 | - 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' 459 | type: manifest 460 | url: https://digital.blb-karlsruhe.de/i3f/v20/5339993/manifest 461 | 462 | - title: Gallica, Bibliothèque nationale de France 463 | id: gallica-bnf 464 | url: https://gallica.bnf.fr/html/und/cartes/cartes?mode=desktop 465 | numberOfMaps: 466 | value: 467 | dateRetrieved: 468 | examples: 469 | - 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' 470 | type: manifest 471 | url: https://gallica.bnf.fr/iiif/ark:/12148/btv1b53192683w/manifest.json 472 | 473 | - title: Bodleian Libraries 474 | id: bodleian-libraries 475 | url: https://digital.bodleian.ox.ac.uk/collections/maps/ 476 | numberOfMaps: 477 | value: 478 | dateRetrieved: 479 | examples: 480 | - title: Plan of the City of Oxford 481 | type: manifest 482 | url: https://iiif.bodleian.ox.ac.uk/iiif/manifest/f45ff5a5-8c14-435b-82b1-f95d61f530d0.json 483 | 484 | - title: e-manuscripta.ch 485 | id: e-manuscripta 486 | url: https://www.e-manuscripta.ch/emanus/maps/nav/classification/642361 487 | numberOfMaps: 488 | value: 489 | dateRetrieved: 490 | examples: 491 | - title: Geometrischer Grundriss der Stadt Bern 492 | type: manifest 493 | url: https://www.e-manuscripta.ch/i3f/v20/798659/manifest 494 | 495 | - title: World Digital Library 496 | id: wdl 497 | url: https://www.wdl.org/en/search/?item_type=map 498 | numberOfMaps: 499 | value: 500 | dateRetrieved: 501 | examples: 502 | - title: Maps of Ezo, Sakhalin, and Kuril Islands 503 | type: manifest 504 | url: https://www.wdl.org/en/item/3/iiif/manifest.json 505 | 506 | - title: University of Texas Libraries 507 | id: university-of-texas-libraries 508 | include: false 509 | url: https://collections.lib.utexas.edu/?f%5Bdisplay_type_ms%5D%5B%5D=Maps&q=&search=&search_field=search 510 | numberOfMaps: 511 | value: 512 | dateRetrieved: 513 | examples: 514 | - title: 'Sanborn Fire Insurance Maps [Waelder, Texas, 1922, Sheet 5]' 515 | type: manifest 516 | url: https://curio.lib.utexas.edu/manifests/utldams_utlmaps_177de5e8-21f1-444a-829a-386be9d57bd8.json 517 | 518 | - title: Orka, Universität Kassel 519 | id: uni-kassel 520 | url: https://orka.bibliothek.uni-kassel.de/viewer/browse/-/1/-/DC:kartenundplaene/ 521 | numberOfMaps: 522 | value: 523 | dateRetrieved: 524 | examples: 525 | - title: Plan der Stadt Cassel und Umgebung 1925 526 | type: manifest 527 | url: https://orka.bibliothek.uni-kassel.de/viewer/rest/iiif/manifests/1535113582549/manifest/ 528 | 529 | - title: Illinois University Library 530 | id: illinois 531 | url: https://metadata.library.illinois.edu/collections#q=&fq%5B%5D=local_facet_repository%3AMap%20Library&q=&sort= 532 | numberOfMaps: 533 | value: 534 | dateRetrieved: 535 | examples: 536 | - 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.' 537 | type: manifest 538 | url: https://digital.library.illinois.edu/items/8b2e3ed0-d675-0137-6f52-02d0d7bfd6e4-5/manifest 539 | 540 | - title: The Mississippi 541 | type: manifest 542 | url: https://digital.library.illinois.edu/items/11bcdd70-d1ed-0137-6f52-02d0d7bfd6e4-c/manifest 543 | 544 | - 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.' 545 | type: manifest 546 | url: https://digital.library.illinois.edu/items/8b29c4b0-d675-0137-6f52-02d0d7bfd6e4-d/manifest 547 | 548 | - 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.' 549 | type: manifest 550 | url: https://digital.library.illinois.edu/items/8b097c70-d675-0137-6f52-02d0d7bfd6e4-7/manifest 551 | 552 | - title: Port facilities on Mississippi River 553 | type: manifest 554 | url: https://digital.library.illinois.edu/items/c89bb510-66e4-0138-727b-02d0d7bfd6e4-1/manifest 555 | 556 | - title: University of Edinburgh 557 | id: university-of-edinburgh 558 | url: https://images.is.ed.ac.uk/luna/servlet/UoEcha~1~1 559 | numberOfMaps: 560 | value: 561 | dateRetrieved: 562 | examples: 563 | - title: '[Geographiae Blavianae] [Also known as: Atlas major] [013 of 153]' 564 | type: manifest 565 | url: https://images.is.ed.ac.uk/luna/servlet/iiif/m/UoEcha~1~1~296741~101629/manifest 566 | 567 | - title: Yale University Library 568 | id: yale 569 | url: https://collections.library.yale.edu/catalog?f%5Bgenre_ssim%5D%5B%5D=Maps&q=&search_field=all_fields 570 | numberOfMaps: 571 | value: 572 | dateRetrieved: 573 | examples: 574 | - title: 'Map of the United States of America, showing the boundaries of the Union and Confederate geographical divisions and departments, Dec 31, 1862' 575 | type: manifest 576 | url: https://collections.library.yale.edu/manifests/2005511 577 | 578 | - title: "Stanford's half-inch map of the battle front, Ostend, Zeebrugge, Bruges / Edward Stanford Ltd." 579 | type: manifest 580 | url: https://collections.library.yale.edu/manifests/15237953 581 | 582 | - title: 'Map of Canals and Navigable Rivers in Belgium and The North of France.' 583 | type: manifest 584 | url: https://collections.library.yale.edu/manifests/15826830 585 | 586 | - title: 'Antwerp / engraved & printed by B.R. Davies ; drawn by W.B. Clarke.' 587 | type: manifest 588 | url: https://collections.library.yale.edu/manifests/15352326 589 | 590 | - title: Zentral- und Landesbibliothek Berlin 591 | id: zlb 592 | url: https://digital.zlb.de/viewer/search/-/%28DC%3A%22berlin.stadtplaenestadtansichten%22%29/1/SORT_YEARPUBLISH/-/ 593 | numberOfMaps: 594 | value: 595 | dateRetrieved: 596 | examples: 597 | - title: Die Churfürstlich Brandenburgisch nun Königlich Preussische Residenz Statt 598 | type: manifest 599 | url: https://digital.zlb.de/viewer/api/v1/records/34231622/manifest/ 600 | 601 | - title: Berlin und Cölln an der Spree vor dero Erweiterung 602 | type: manifest 603 | url: https://digital.zlb.de/viewer/api/v1/records/34231682/manifest/ 604 | 605 | - title: Die Königl. Preus. u. Churf. Brandenb. Residenz-Stadt Berlin 606 | type: manifest 607 | url: https://digital.zlb.de/viewer/api/v1/records/15453578/manifest/ 608 | 609 | - title: Berlin und Cölln an der Spree vor dero Erweiterung 610 | type: manifest 611 | url: https://digital.zlb.de/viewer/api/v1/records/34231671/manifest/ 612 | 613 | - title: Berlin 614 | type: manifest 615 | url: https://digital.zlb.de/viewer/api/v1/records/15455043/manifest/ 616 | 617 | - title: Berlin und Umgegend 618 | type: manifest 619 | url: https://digital.zlb.de/viewer/api/v1/records/15453240/manifest/ 620 | 621 | - title: Grundriss der beyden Churf. Residentz Stätte Berlin und Cölln an der Spree 622 | type: manifest 623 | url: https://digital.zlb.de/viewer/api/v1/records/15452583/manifest/ 624 | 625 | - title: Plan von Berlin 626 | type: manifest 627 | url: https://digital.zlb.de/viewer/api/v1/records/15453751/manifest/ 628 | 629 | - title: Special-Plan von Berlin 630 | type: manifest 631 | url: https://digital.zlb.de/viewer/api/v1/records/15453560/manifest/ 632 | 633 | - title: Schwarz Stadtplan von Berlin 634 | type: manifest 635 | url: https://digital.zlb.de/viewer/api/v1/records/15454953/manifest/ 636 | 637 | - title: Neuer geometrischer Plan der gesammten Königlich-Preussischen und Churfürstlich-Brandenburgischen Haupt und Residentzstadt Berlin 638 | type: manifest 639 | url: https://digital.zlb.de/viewer/api/v1/records/15453234/manifest/ 640 | 641 | - title: Kiessling's grosse Special-Karte der Umgegend von Berlin 642 | type: manifest 643 | url: https://digital.zlb.de/viewer/api/v1/records/15452541/manifest/ 644 | 645 | - title: Grundriß der Beyden Churf. Residentz Stätte Berlin und Cölln an der Spree 646 | type: manifest 647 | url: https://digital.zlb.de/viewer/api/v1/records/34231578/manifest/ 648 | 649 | - title: Die Königl. Residenz Berlin 650 | type: manifest 651 | url: https://digital.zlb.de/viewer/api/v1/records/15453880/manifest/ 652 | 653 | - title: Plan de la Ville de Berlin 654 | type: manifest 655 | url: https://digital.zlb.de/viewer/api/v1/records/15453614/manifest/ 656 | 657 | - title: Grundriss der Königlichen Residenzstädte Berlin 658 | type: manifest 659 | url: https://digital.zlb.de/viewer/api/v1/records/15453274/manifest/ 660 | 661 | - title: Gegend bey Berlin und Potsdam 662 | type: manifest 663 | url: https://digital.zlb.de/viewer/api/v1/records/15453585/manifest/ 664 | 665 | - title: Grundriss der Königl. Residenzstädte Berlin 666 | type: manifest 667 | url: https://digital.zlb.de/viewer/api/v1/records/15454999/manifest/ 668 | 669 | - title: Grundriss der Königl. Residenzstädte Berlin 670 | type: manifest 671 | url: https://digital.zlb.de/viewer/api/v1/records/15452831/manifest/ 672 | 673 | - title: Grundriss von Berlin und seinen naechsten Umgebungen 674 | type: manifest 675 | url: https://digital.zlb.de/viewer/api/v1/records/15454959/manifest/ 676 | 677 | - title: Neuester Grundriss von Berlin 678 | type: manifest 679 | url: https://digital.zlb.de/viewer/api/v1/records/15452793/manifest/ 680 | 681 | - title: Grundriss von Berlin 682 | type: manifest 683 | url: https://digital.zlb.de/viewer/api/v1/records/15453876/manifest/ 684 | 685 | - title: Historischer Atlas von Berlin 686 | type: manifest 687 | url: https://digital.zlb.de/viewer/api/v1/records/15453722/manifest/ 688 | 689 | - title: Manoeuver Plan der Gegend um Berlin 690 | type: manifest 691 | url: https://digital.zlb.de/viewer/api/v1/records/15453860/manifest/ 692 | 693 | - title: Neuester Grundriss von Berlin im Jahre 1842 694 | type: manifest 695 | url: https://digital.zlb.de/viewer/api/v1/records/15453211/manifest/ 696 | 697 | - title: Grundriss von Berlin 698 | type: manifest 699 | url: https://digital.zlb.de/viewer/api/v1/records/15453856/manifest/ 700 | 701 | - title: Plan von Berlin und Umgegend bis Charlottenburg 702 | type: manifest 703 | url: https://digital.zlb.de/viewer/api/v1/records/15453676/manifest/ 704 | 705 | - title: Neuester Bebauungs-Plan von Berlin 706 | type: manifest 707 | url: https://digital.zlb.de/viewer/api/v1/records/15452733/manifest/ 708 | 709 | - title: Neuester Plan von Berlin 710 | type: manifest 711 | url: https://digital.zlb.de/viewer/api/v1/records/15453878/manifest/ 712 | 713 | - title: Situations-Plan von Berlin mit dem Weichbilde und Charlottenburg 714 | type: manifest 715 | url: https://digital.zlb.de/viewer/api/v1/records/15453195/manifest/ 716 | 717 | - title: Straube's neuer Radfahrer-Plan von Berlin 718 | type: manifest 719 | url: https://digital.zlb.de/viewer/api/v1/records/16325792/manifest/ 720 | 721 | - title: Grosser Verkehrs-Plan von Berlin mit seinen Vororten 722 | type: manifest 723 | url: https://digital.zlb.de/viewer/api/v1/records/15453873/manifest/ 724 | 725 | - title: Karte von Berlin und nächster Umgebung mit der am 1. Juni 1906 in Kraft tretenden Gerichtseinteilung 726 | type: manifest 727 | url: https://digital.zlb.de/viewer/api/v1/records/15453746/manifest/ 728 | 729 | - title: Karte von Berlin und weiterer Umgebung mit der am 1. Juni 1906 in Kraft tretenden Gerichtseinteilung 730 | type: manifest 731 | url: https://digital.zlb.de/viewer/api/v1/records/15452979/manifest/ 732 | 733 | - title: Amtliche Entfernungskarte des Kreises Niederbarnim mit den Stadtkreisen Berlin und Lichtenberg 734 | type: manifest 735 | url: https://digital.zlb.de/viewer/api/v1/records/34354511/manifest/ 736 | 737 | - title: Karte von Gross-Berlin 738 | type: manifest 739 | url: https://digital.zlb.de/viewer/api/v1/records/15453186/manifest/ 740 | 741 | - title: Silva-Übersichtsplan von der Stadt Berlin und ihren 20 Verwaltungsbezirken 742 | type: manifest 743 | url: https://digital.zlb.de/viewer/api/v1/records/15453225/manifest/ 744 | 745 | - title: Wie fahr' ich? 746 | type: manifest 747 | url: https://digital.zlb.de/viewer/api/v1/records/15453867/manifest/ 748 | 749 | - title: Die Königl. Residenz Berlin, wie selbige sich um das Jahr 1723 präsentiret 750 | type: manifest 751 | url: https://digital.zlb.de/viewer/api/v1/records/15453001/manifest/ 752 | 753 | - title: Utrecht University Library Special Collections 754 | id: utrecht-university-library 755 | url: https://www.uu.nl/en/utrecht-university-library-special-collections/collections/maps-and-atlases 756 | # To get the IIIIF Image URL, copy the value of img= from the img.php URL. For example: 757 | # http://objects.library.uu.nl/reader/img.php?obj=1874-274255&img=.jpg 758 | # Use that value to create a IIIF Image URL: 759 | # https://objects.library.uu.nl/fcgi-bin/iipsrv.fcgi?IIIF=/manifestation/viewer/.jp2/info.json 760 | numberOfMaps: 761 | value: 762 | dateRetrieved: 763 | examples: 764 | - 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." 765 | type: image 766 | url: https://objects.library.uu.nl/fcgi-bin/iipsrv.fcgi?IIIF=/manifestation/viewer/60/82/67/60826765847502039061478934746532282060.jp2/info.json 767 | 768 | - 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' 769 | type: image 770 | url: https://objects.library.uu.nl/fcgi-bin/iipsrv.fcgi?IIIF=/manifestation/viewer/40/62/80/40628087387683287288049825798881270832.jp2/info.json 771 | 772 | - title: Urbis Traiecti ad Rhenum novissima et accuratissima delineatio 773 | type: image 774 | url: https://objects.library.uu.nl/fcgi-bin/iipsrv.fcgi?IIIF=/manifestation/viewer/11/87/40/118740207246035919625727383986846718971.jp2/info.json 775 | 776 | - 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 ...' 777 | type: image 778 | url: https://objects.library.uu.nl/fcgi-bin/iipsrv.fcgi?IIIF=/manifestation/viewer/11/04/00/110400342046991889344064150380191603423.jp2/info.json 779 | 780 | - title: Center for Sacramento History 781 | id: csh 782 | url: https://archive.org/details/cshtext?and[]=subject%3A%22CSH+Map+Digitization+Project%22 783 | # Extract archive.org id from object url: 784 | # https://archive.org/details/[id] 785 | # Add id to the following scheme to fetch IIIF manifest: 786 | # https://iiif.archivelab.org/iiif/[id]/manifest.json 787 | numberOfMaps: 788 | value: 789 | dateRetrieved: 790 | examples: 791 | - title: Map of the State of California 792 | type: manifest 793 | url: https://iiif.archivelab.org/iiif/map198204401/manifest.json 794 | 795 | - title: Plano de la Ciudad de Mexico 796 | type: manifest 797 | url: https://iiif.archivelab.org/iiif/map19820040456/manifest.json 798 | 799 | - title: Principal Automobile Routes through the city of Sacramento 800 | type: manifest 801 | url: https://iiif.archivelab.org/iiif/map1984124004/manifest.json 802 | 803 | - title: National Library of Israel 804 | id: national-library-of-israel 805 | url: https://www.nli.org.il/he/discover/maps 806 | numberOfMaps: 807 | value: 808 | dateRetrieved: 809 | examples: 810 | - title: Nähere Umgebung von Jerusalem [cartographic material] 811 | type: image 812 | url: https://iiif.nli.org.il/IIIFv21/FL25567831/info.json 813 | 814 | - title: University of Toronto Libraries 815 | id: utoronto 816 | 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 817 | numberOfMaps: 818 | value: 819 | dateRetrieved: 820 | examples: 821 | - title: Topographic map of the Niagara Gorge 822 | type: manifest 823 | url: https://iiif.library.utoronto.ca/presentation/v2/mdl:G3312_N52_C222_12_1912/manifest 824 | 825 | - title: Street map of Vancouver ; Street map of Victoria 826 | type: manifest 827 | url: https://iiif.library.utoronto.ca/presentation/v2/mdl:G3574_V3_50_1952/manifest 828 | 829 | - title: South Norway Road Map 830 | type: manifest 831 | url: https://iiif.library.utoronto.ca/presentation/v2/mdl:1685/manifest 832 | 833 | - title: Town plan of Bonifacio 834 | type: manifest 835 | url: https://iiif.library.utoronto.ca/presentation/v2/mdl:2159/manifest 836 | 837 | - title: Carte générale du Liban 838 | type: manifest 839 | url: https://iiif.library.utoronto.ca/presentation/v2/mdl:2080/manifest 840 | 841 | - title: The John Carter Brown Library 842 | id: jcb 843 | url: https://jcb.lunaimaging.com/luna/servlet/JCBMAPS~1~1 844 | numberOfMaps: 845 | value: 846 | dateRetrieved: 847 | examples: 848 | - title: The Island of St. Vincent 849 | type: manifest 850 | url: https://jcb.lunaimaging.com/luna/servlet/iiif/m/JCBMAPS~1~1~2104~101547/manifest 851 | 852 | - title: Berkeley Library 853 | id: berkeley 854 | url: https://digital.lib.berkeley.edu/browse-collections 855 | numberOfMaps: 856 | value: 857 | dateRetrieved: 858 | examples: 859 | - title: Chromo-topographische Kaart van het Koninkrijk der Nederlanden (1:200 000). 860 | type: manifest 861 | url: https://digicoll.lib.berkeley.edu/nanna/iiif/112509/manifest 862 | 863 | - title: University of British Columbia 864 | id: ubc 865 | 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 866 | numberOfMaps: 867 | value: 868 | dateRetrieved: 869 | examples: 870 | - title: Map showing vicinity of Lake Louise and Moraine Lake (Lakes in the Clouds) 871 | type: manifest 872 | url: https://iiif.library.ubc.ca/presentation/cdm.chungtext.1-0226125/manifest 873 | 874 | - title: Staatsbibliothek zu Berlin 875 | id: stabi 876 | url: https://digital-beta.staatsbibliothek-berlin.de/suche?category%5B0%5D=Karten&queryString=%2A&fulltext= 877 | # Manual: https://lab.sbb.berlin/dc/ 878 | # Count: 939 on 2022-04-27 879 | numberOfMaps: 880 | value: 881 | dateRetrieved: 882 | examples: 883 | - title: "Plans et Elevations Des Places fortes De france et autres : Par l'ordre de Monseigneur le Marquis de louvois" 884 | type: manifest 885 | url: https://content.staatsbibliothek-berlin.de/dc/682884332/manifest 886 | - title: Plan de la ville et des nouveaux ouvrages de Stettin 887 | type: manifest 888 | url: https://content.staatsbibliothek-berlin.de/dc/1011806517/manifest 889 | - title: 歴代分埜之圖古今人物事跡 890 | type: manifest 891 | url: https://content.staatsbibliothek-berlin.de/dc/3343670510/manifest 892 | - 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' 893 | type: manifest 894 | url: https://content.staatsbibliothek-berlin.de/dc/644435321/manifest 895 | 896 | - title: Rijksdienst voor het Cultureel Erfgoed 897 | id: rce 898 | url: https://beeldbank.cultureelerfgoed.nl 899 | # Get UUID from download link or page inspector (not the same as page url!) 900 | # URL pattern: https://images.memorix.nl/rce/iiif/[UUID] 901 | # 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 902 | # 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 903 | # 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 904 | numberOfMaps: 905 | value: 906 | dateRetrieved: 907 | examples: 908 | - title: 'Kadastrale kaart 1811-1832: minuutplan Ootmarsum, Overijssel, sectie A, blad 02 (MIN04042A02)' 909 | url: https://images.memorix.nl/rce/iiif/f3f4389a-bb25-21c1-8890-2f0541400424/info.json 910 | type: image 911 | - title: 'Kaart met (bouwkundige) waardering van Zutphen - schaal 1:1000' 912 | url: https://images.memorix.nl/rce/iiif/dfb28bb1-c77e-1dd8-fb8b-22d4eeff3399/info.json 913 | type: image 914 | 915 | - title: Stadsarchief Amsterdam 916 | id: stadsarchief-ams 917 | url: https://archief.amsterdam/beeldbank 918 | # Get UUID from page url (after /media/) 919 | # URL pattern: https://images.memorix.nl/ams/iiif/[UUID] 920 | # 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 921 | # 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 922 | numberOfMaps: 923 | value: 924 | dateRetrieved: 925 | examples: 926 | - title: Kaart van Amsterdam 1:10.000, Blad 6 927 | url: https://images.memorix.nl/ams/iiif/33cf1acd-bb35-13e6-f662-b1fbf5691422/info.json 928 | type: image 929 | - title: Amstelredamum emporium Hollandiae primarium totiusque Europae celeberrimum 930 | url: https://images.memorix.nl/ams/iiif/2d51b17b-ddd7-695f-e1c8-115af40ce2cd/info.json 931 | type: image 932 | 933 | - title: University of Wisconsin-Milwaukee Libraries - American Geographical Society Library 934 | id: uwm 935 | url: https://collections.lib.uwm.edu/digital/collection/agdm/ 936 | numberOfMaps: 937 | value: 19_869 938 | dateRetrieved: 2022-8-9 939 | examples: 940 | - title: am000186 941 | type: image 942 | url: https://collections.lib.uwm.edu/digital/collection/agdm/id/538/info.json 943 | 944 | - title: Gouda Tijdmachine 945 | id: goudatijdmachine 946 | url: https://www.goudatijdmachine.nl/data/collection/ark:/60537/bb25wx 947 | numberOfMaps: 948 | value: 949 | dateRetrieved: 950 | examples: 951 | - title: Kadastrale kaart (minuutplan) Gouda, sectie B 952 | type: manifest 953 | url: https://www.goudatijdmachine.nl/data/iiif/2/17766/manifest 954 | 955 | - title: Stadsplattegrond van Gouda 956 | type: manifest 957 | url: https://www.goudatijdmachine.nl/data/iiif/2/165/manifest 958 | 959 | - title: Plattegrond van Gouda, Joan Blaeu, 1649 960 | url: https://www.goudatijdmachine.nl/data/iiif/2/17782/manifest 961 | type: manifest 962 | - title: Gouda, Frederick de Wit, 1698 963 | url: https://www.goudatijdmachine.nl/data/iiif/2/17779/manifest 964 | type: manifest 965 | - title: Plattegrond der Stad Gouda met al des Zelfs Gebouwen Gragten en Straaten, Hendrik de Vos, omstreeks 1615 966 | url: https://www.goudatijdmachine.nl/data/iiif/2/17777/manifest 967 | type: manifest 968 | - title: Gouda, Willem de Jong, 1690 969 | url: https://www.goudatijdmachine.nl/data/iiif/2/17775/manifest 970 | type: manifest 971 | 972 | - title: New York Public Library 973 | id: nypl 974 | url: https://digitalcollections.nypl.org/search/index?filters%5Btype%5D=cartographic&keywords= 975 | numberOfMaps: 976 | value: 28_246 977 | dateRetrieved: 2022-8-9 978 | examples: 979 | - 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' 980 | type: image 981 | url: https://iiif.nypl.org/iiif/2/58009096/info.json 982 | 983 | - title: Nationaal Archief 984 | id: na 985 | url: https://www.nationaalarchief.nl/onderzoeken/zoeken?activeTab=maps&rm=gallery 986 | numberOfMaps: 987 | value: 50_275 988 | dateRetrieved: 2022-8-9 989 | examples: 990 | - title: 'NL-HaNA_2.13.167_276_01' 991 | type: image 992 | 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 993 | 994 | - title: Universiteit van Amsterdam - Allard Pierson 995 | id: uva 996 | url: https://www.uvaerfgoed.nl/beeldbank/nl/xsearch?metadata=kaarten 997 | examples: 998 | - title: Nieuwe kaart van Mynden en de Loosdrecht 999 | type: image 1000 | url: https://images.uba.uva.nl/iiif/2/erfgoed!kaarten!1!8!3!990008493810205131!105-19-01.jpg/info.json 1001 | 1002 | - title: Kartenspeicher 1003 | id: 1004 | url: https://kartenspeicher.gbv.de/ 1005 | examples: 1006 | - title: '[Insel Rügen und Darß]' 1007 | type: image 1008 | url: 'https://kartenspeicher.gbv.de/mir/api/iiif/image/v2/gwlb_derivate_00004393%2F00000001.ptif.jpg/info.json' 1009 | 1010 | - title: SFO Museum 1011 | id: sfo 1012 | url: https://collection.sfomuseum.org/search/?q=map&with_images=1 1013 | examples: 1014 | - title: 'postcard: American Airlines' 1015 | type: manifest 1016 | url: https://collection.sfomuseum.org/objects/1511922165/manifest/ 1017 | 1018 | - title: 'map and report: San Francisco Department of Public Works, Bureau of Engineering, proposed airport site' 1019 | type: manifest 1020 | url: https://collection.sfomuseum.org/objects/1762828235/manifest/ 1021 | 1022 | - title: 'traveler information guide: San Francisco International Airport (SFO), transit and parking' 1023 | type: manifest 1024 | url: https://collection.sfomuseum.org/objects/1762829809/manifest/ 1025 | 1026 | - title: 'timetable: Transportation Displays, Inc., San Francisco International Airport (SFO)' 1027 | type: manifest 1028 | url: https://collection.sfomuseum.org/objects/1762828567/manifest/ 1029 | 1030 | - title: 'menu: Pan American World Airways, President (first) class' 1031 | type: manifest 1032 | url: https://collection.sfomuseum.org/objects/1511922165/manifest/ 1033 | 1034 | - title: Smithsonian Institution 1035 | id: si 1036 | url: https://www.si.edu/search/collection-images?edan_fq[0]=object_type%3A%22Maps%22 1037 | examples: 1038 | - title: 'Map of Strasbourg and its Fortifications, Illustration for Every Saturday (October 15, 1870, p. 660)' 1039 | type: manifest 1040 | url: https://ids.si.edu/ids/manifest/CHSDM-EE8BE83274C72-000001 1041 | 1042 | - title: Nasjonalbiblioteket 1043 | url: https://www.nb.no/search?mediatype=kart 1044 | examples: 1045 | - title: Bygland 1046 | type: manifest 1047 | url: https://api.nb.no/catalog/v1/iiif/5a20e7e0b2a354d400fde9ceb749d2ed/manifest 1048 | 1049 | - title: 'Cammermeyers Reisekart over det nordlige Norge : i 4 Blade' 1050 | type: manifest 1051 | url: https://api.nb.no/catalog/v1/iiif/72682f25ae8409a4597bc97f64d3ee2f/manifest 1052 | 1053 | - title: 'Aschehougs kart over Kristiania : utarbeidet i maalestok 1:13 000 : med fortegnelse over gater o.s.v' 1054 | type: manifest 1055 | url: https://api.nb.no/catalog/v1/iiif/2186ca144d5c37bab2d9b176aa3c8792/manifest 1056 | 1057 | - title: Qatar Digital Library 1058 | url: https://www.qdl.qa/en/search/site/?f%255B0%255D=document_source%3Aarchive_source&f%5B0%5D=source_content_type%3AMap 1059 | examples: 1060 | - title: 'Iraq-Persia Map No. 1’ [‎32r] (1/2)' 1061 | type: manifest 1062 | url: https://www.qdl.qa/en/iiif/81055/vdc_100000000884.0x0001ab/manifest 1063 | 1064 | - title: British Library 1065 | url: 1066 | examples: 1067 | - title: 'CARTE DU PARAGUAY DU CHILI DU DETROIT DE MAGELLAN' 1068 | type: manifest 1069 | url: https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100052171660.0x000001/manifest.json 1070 | 1071 | - title: Bayerische Staatsbibliothek 1072 | url: https://www.digitale-sammlungen.de/en/search?query=&sortField=scanDate&filter=type_content%3A%22map%22&filter=features%3A%22iiif%22 1073 | examples: 1074 | - title: Tiëntsin 1075 | type: manifest 1076 | url: https://api.digitale-sammlungen.de/iiif/presentation/v2/bsb00059943/manifest 1077 | 1078 | - title: Partie Septentrionale Du Royaume De Naples 1079 | type: manifest 1080 | url: https://api.digitale-sammlungen.de/iiif/presentation/v2/bsb00105926/manifest 1081 | 1082 | - title: Northwestern University Libraries 1083 | url: https://dc.library.northwestern.edu/collections/267bed1b-f808-4c51-acb1-0288378819d2 1084 | examples: 1085 | - title: 'Use of property, 1922' 1086 | type: manifest 1087 | url: https://api.dc.library.northwestern.edu/api/v2/works/faf0c573-76e7-4002-933f-2bdff0d656e4?as=iiif 1088 | 1089 | - title: Biblioteca Nacional de Portugal 1090 | url: https://bndigital.bnportugal.gov.pt/records?page=1&refine%5BDocumentType%5D%5B%5D=Cartografia&sort=-PURL_ID,_score 1091 | examples: 1092 | - title: Mapa de estradas de Angola 1093 | type: image 1094 | url: https://permalinkbnd.bnportugal.gov.pt/lgimage?file=&IIIF=/3c/42/16/d0/3c4216d0-a6c1-4e5d-b168-77c6cef2f5ea/iiif/cc-746-r_0000_000001.tif/info.json 1095 | 1096 | - title: Institut Cartogràfic i Geològic de Catalunya 1097 | url: https://cartotecadigital.icgc.cat/ 1098 | examples: 1099 | - title: '[Rotterdam - 1]' 1100 | type: manifest 1101 | url: https://cartotecadigital.icgc.cat/iiif/info/europa/2988/manifest.json 1102 | 1103 | - title: '[Barcelona - Ciutat Vella]' 1104 | type: manifest 1105 | url: https://cartotecadigital.icgc.cat/iiif/info/bcnprov/1453/manifest.json 1106 | 1107 | - title: University of Michigan Library 1108 | url: https://quod.lib.umich.edu/c/clark1ic?view=reslist;q1=clark1ic 1109 | examples: 1110 | - title: London 1111 | type: manifest 1112 | url: https://quod.lib.umich.edu/cgi/i/image/api/manifest/clark1ic:008846648:39015091186828 1113 | 1114 | - title: 'Bunken Edo ōezu : zen / [Ochikochi Dōin] ; On Seiken jo.' 1115 | type: manifest 1116 | url: https://quod.lib.umich.edu/cgi/i/image/api/manifest/clark1ic:003108986:39015091920226_02 1117 | 1118 | - title: Los Angeles Public Library 1119 | url: https://tessa2.lapl.org/digital/collection/maps/search 1120 | examples: 1121 | - title: Bridwell's Map of the City of Los Angeles 1122 | type: image 1123 | url: https://tessa2.lapl.org/iiif/2/maps:100/info.json 1124 | 1125 | - title: California Automobile Road Map, 1914 1126 | type: image 1127 | url: https://tessa2.lapl.org/iiif/2/maps:60/info.json 1128 | 1129 | - title: Universiteitsbibliotheek Gent 1130 | url: https://lib.ugent.be/en/catalog?access=zoomable&type=map 1131 | examples: 1132 | - title: Gandavum. Gendt / Jacob Van Deventer 1133 | type: manifest 1134 | url: https://adore.ugent.be/IIIF/manifests/archive.ugent.be:D7DD2A8A-B11E-11EC-85FE-0CB701E43F28 1135 | 1136 | - title: Musea Brugge 1137 | url: https://www.museabrugge.be/collecties/doorzoek?subject=cartografie 1138 | examples: 1139 | - title: Kaart van het Brugse Vrije 1140 | type: manifest 1141 | url: https://dam.museabrugge.be/iiif/3/1619/manifest.json 1142 | 1143 | - title: Departmental archives of Ille-et-Vilaine 1144 | url: https://images-archives.ille-et-vilaine.fr/archives?navigation=&perpage=&page=1&search=&fulltext=1&bookmarks=1&sort=_score#page 1145 | examples: 1146 | - title: 4J Guingamp /7 1147 | type: manifest 1148 | url: https://images-archives.ille-et-vilaine.fr/iiif/103954/manifest 1149 | 1150 | - title: Municipal archives of Bazas 1151 | url: https://archives-numeriques.ville-bazas.fr/records?navigation=&perpage=&page=1&search=&fulltext=1&bookmarks=1&sort=_score#page 1152 | examples: 1153 | - title: Cadastre vue générale de Bazas ville et campagne 1154 | type: manifest 1155 | url: https://archives-numeriques.ville-bazas.fr/iiif/9038/manifest 1156 | 1157 | - title: Municipal archives of Montbrison 1158 | url: https://www.archives.ville-montbrison.fr/collection?navigation=&perpage=&page=1&search=&fulltext=1&bookmarks=1&sort=_score#page 1159 | examples: 1160 | - title: Plan général de la ville de Montbrison et ses faubourgs 1161 | type: manifest 1162 | url: https://www.archives.ville-montbrison.fr/iiif/3607/manifest 1163 | 1164 | - title: Municipal archives of Aurillac 1165 | url: https://bibliotheque-numerique.aurillac.fr/notices?navigation=&perpage=&page=1&search=&fulltext=1&bookmarks=1&sort=_score#page 1166 | examples: 1167 | - title: canaux usiniers prolongement collecteur 1933 1168 | type: manifest 1169 | url: https://bibliotheque-numerique.aurillac.fr/iiif/10941/manifest 1170 | 1171 | - title: Municipal archives of Saint-Omer 1172 | url: https://bibliotheque-numerique.bibliotheque-agglo-stomer.fr/notices/?navigation=&perpage=&page=1&sort=_score&search=&search_submit=1&fulltext=1#search 1173 | examples: 1174 | - title: "Plan et Situation de la Ville de Saint Omer avec Rues, Fregarts, Rivières, et la grandeur des maisons de Religion tant d’hommes que de femmes, comme aussy des Paroisses et Colleges, contenus en Icelle, dit plan Titelouze" 1175 | type: manifest 1176 | url: https://bibliotheque-numerique.bibliotheque-agglo-stomer.fr/iiif/22157/manifest 1177 | 1178 | - title: Municipal archives of Carmaux 1179 | url: https://archives-numeriques.carmaux.fr/collection?navigation=&perpage=&page=1&search=&fulltext=1&bookmarks=1&sort=_score#page 1180 | examples: 1181 | - title: Plan cadastral parcellaire de 1811. Tableau d'assemblage 1182 | type: manifest 1183 | url: https://archives-numeriques.carmaux.fr/iiif/252/manifest 1184 | 1185 | - title: Municipal archives of Dieppe 1186 | url: https://patrimoine.dieppe.fr/collection?navigation=&perpage=&page=1&search=&fulltext=1&bookmarks=1&child=1&sort=_score#page 1187 | examples: 1188 | - title: Plan de Dieppe avec les fortifications et les travaux projetés 1189 | type: manifest 1190 | url: https://patrimoine.dieppe.fr/iiif/14995/manifest 1191 | 1192 | - title: Municipal archives of Abbeville 1193 | url: https://patrimoine.abbeville.fr/collection/?navigation=&perpage=&page=1&sort=_score&search=&fulltext=1&bookmarks=1&child=1#search 1194 | examples: 1195 | - title: "Cartes et Plans 1914-1918 : General Plans of N°5 Convalescent camp dépôt. Cayeux. France." 1196 | type: manifest 1197 | url: https://patrimoine.abbeville.fr/iiif/771/manifest 1198 | 1199 | - title: Digital heritage library of Alençon 1200 | url: https://bibliotheque-numerique-patrimoniale.cu-alencon.fr/records/?navigation=&perpage=&page=1&sort=_score&search=&search_submit=1&fulltext=1#search 1201 | examples: 1202 | - title: Indo-Chine 1203 | type: manifest 1204 | url: https://bibliotheque-numerique-patrimoniale.cu-alencon.fr/iiif/1924/manifest 1205 | -------------------------------------------------------------------------------- /package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "iiif-map-collections", 3 | "version": "1.0.0", 4 | "lockfileVersion": 1, 5 | "requires": true, 6 | "dependencies": { 7 | "argparse": { 8 | "version": "2.0.1", 9 | "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", 10 | "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", 11 | "dev": true 12 | }, 13 | "js-yaml": { 14 | "version": "4.0.0", 15 | "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.0.0.tgz", 16 | "integrity": "sha512-pqon0s+4ScYUvX30wxQi3PogGFAlUyH0awepWvwkj4jD4v+ova3RiYw8bmA6x2rDrEaj8i/oWKoRxpVNW+Re8Q==", 17 | "dev": true, 18 | "requires": { 19 | "argparse": "^2.0.1" 20 | } 21 | }, 22 | "minimist": { 23 | "version": "1.2.5", 24 | "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz", 25 | "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==", 26 | "dev": true 27 | }, 28 | "push-dir": { 29 | "version": "0.4.1", 30 | "resolved": "https://registry.npmjs.org/push-dir/-/push-dir-0.4.1.tgz", 31 | "integrity": "sha1-KUgerNnCEGu7eUHbbTfRIqBx7LQ=", 32 | "dev": true, 33 | "requires": { 34 | "minimist": "^1.2.0" 35 | } 36 | } 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "iiif-map-collections", 3 | "version": "1.0.0", 4 | "type": "module", 5 | "description": "This repository contains a curated list of collections of scanned maps that can be accessed with [IIIF](https://iiif.io/).", 6 | "scripts": { 7 | "build": "js-yaml iiif-map-collections.yml > public/iiif-map-collections.json", 8 | "deploy": "npm run build; push-dir --dir=public --branch=gh-pages --cleanup" 9 | }, 10 | "repository": { 11 | "type": "git", 12 | "url": "git+https://github.com/allmaps/iiif-map-collections.git" 13 | }, 14 | "author": "", 15 | "license": "ISC", 16 | "bugs": { 17 | "url": "https://github.com/allmaps/iiif-map-collections/issues" 18 | }, 19 | "homepage": "https://github.com/allmaps/iiif-map-collections#readme", 20 | "devDependencies": { 21 | "js-yaml": "^4.0.0", 22 | "push-dir": "^0.4.1" 23 | } 24 | } 25 | --------------------------------------------------------------------------------