geoblacklight 3.5.0 → 3.6.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (37) hide show
  1. checksums.yaml +4 -4
  2. data/.github/workflows/ruby.yml +1 -1
  3. data/.gitignore +1 -0
  4. data/.solr_wrapper +1 -0
  5. data/app/assets/images/blacklight/michigan-state-university.svg +0 -1
  6. data/app/assets/images/blacklight/pennsylvania-state-university.svg +0 -1
  7. data/app/assets/images/blacklight/purdue-university.svg +0 -1
  8. data/app/assets/images/blacklight/the-ohio-state-university.svg +0 -1
  9. data/app/assets/images/blacklight/university-of-chicago.svg +0 -1
  10. data/app/assets/images/blacklight/university-of-illinois-urbana-champaign.svg +0 -1
  11. data/app/assets/images/blacklight/university-of-iowa.svg +0 -1
  12. data/app/assets/images/blacklight/university-of-maryland.svg +0 -1
  13. data/app/assets/images/blacklight/university-of-michigan.svg +0 -1
  14. data/app/assets/images/blacklight/university-of-minnesota.svg +0 -1
  15. data/app/assets/images/blacklight/university-of-nebraska-lincoln.svg +0 -1
  16. data/app/assets/images/blacklight/university-of-wisconsin-madison.svg +0 -1
  17. data/app/assets/javascripts/geoblacklight/viewers/tilejson.js +33 -0
  18. data/app/assets/javascripts/geoblacklight/viewers/wms.js +2 -2
  19. data/app/assets/javascripts/geoblacklight/viewers/wmts.js +85 -0
  20. data/config/locales/geoblacklight.en.yml +2 -0
  21. data/geoblacklight.gemspec +1 -0
  22. data/lib/generators/geoblacklight/templates/settings.yml +2 -0
  23. data/lib/geoblacklight/constants.rb +1 -0
  24. data/lib/geoblacklight/item_viewer.rb +9 -1
  25. data/lib/geoblacklight/version.rb +1 -1
  26. data/spec/features/home_page_spec.rb +2 -2
  27. data/spec/features/tilejson_spec.rb +22 -0
  28. data/spec/features/web_services_modal_spec.rb +22 -0
  29. data/spec/features/wmts_spec.rb +34 -0
  30. data/spec/fixtures/manifests/tilejson.json +21 -0
  31. data/spec/fixtures/manifests/wmts-multiple.xml +813 -0
  32. data/spec/fixtures/manifests/wmts-single.xml +126 -0
  33. data/spec/fixtures/solr_documents/tilejson.json +38 -0
  34. data/spec/fixtures/solr_documents/wmts-multiple.json +32 -0
  35. data/spec/fixtures/solr_documents/wmts-single-layer.json +38 -0
  36. data/spec/spec_helper.rb +4 -0
  37. metadata +35 -3
@@ -0,0 +1,126 @@
1
+ <Capabilities xmlns="http://www.opengis.net/wmts/1.0" xmlns:ows="http://www.opengis.net/ows/1.1" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:gml="http://www.opengis.net/gml" xsi:schemaLocation="http://www.opengis.net/wmts/1.0 http://schemas.opengis.net/wmts/1.0/wmtsGetCapabilities_response.xsd" version="1.0.0">
2
+ <ows:ServiceIdentification>
3
+ <ows:Title>"Mosaic"</ows:Title>
4
+ <ows:ServiceType>OGC WMTS</ows:ServiceType>
5
+ <ows:ServiceTypeVersion>1.0.0</ows:ServiceTypeVersion>
6
+ </ows:ServiceIdentification>
7
+ <ows:OperationsMetadata>
8
+ <ows:Operation name="GetCapabilities">
9
+ <ows:DCP>
10
+ <ows:HTTP>
11
+ <ows:Get xlink:href="https://map-tiles-staging.princeton.edu/mosaicjson/WMTSCapabilities.xml?url=s3%3A%2F%2Ffiggy-geo-staging%2F2a%2F91%2Fd8%2F2a91d82c541c426cb787cc62afe8f248%2Fmosaic-6c5b32bfe4cb8e4fb07d32cd6656d024.json&amp;rescale=0%2C255">
12
+ <ows:Constraint name="GetEncoding">
13
+ <ows:AllowedValues>
14
+ <ows:Value>RESTful</ows:Value>
15
+ </ows:AllowedValues>
16
+ </ows:Constraint>
17
+ </ows:Get>
18
+ </ows:HTTP>
19
+ </ows:DCP>
20
+ </ows:Operation>
21
+ <ows:Operation name="GetTile">
22
+ <ows:DCP>
23
+ <ows:HTTP>
24
+ <ows:Get xlink:href="https://map-tiles-staging.princeton.edu/mosaicjson/WMTSCapabilities.xml?url=s3%3A%2F%2Ffiggy-geo-staging%2F2a%2F91%2Fd8%2F2a91d82c541c426cb787cc62afe8f248%2Fmosaic-6c5b32bfe4cb8e4fb07d32cd6656d024.json&amp;rescale=0%2C255">
25
+ <ows:Constraint name="GetEncoding">
26
+ <ows:AllowedValues>
27
+ <ows:Value>RESTful</ows:Value>
28
+ </ows:AllowedValues>
29
+ </ows:Constraint>
30
+ </ows:Get>
31
+ </ows:HTTP>
32
+ </ows:DCP>
33
+ </ows:Operation>
34
+ </ows:OperationsMetadata>
35
+ <Contents>
36
+ <Layer>
37
+ <ows:Title>Mosaic</ows:Title>
38
+ <ows:Identifier>mosaic</ows:Identifier>
39
+ <ows:Abstract>Mosaic</ows:Abstract>
40
+ <ows:WGS84BoundingBox crs="urn:ogc:def:crs:OGC:2:84">
41
+ <ows:LowerCorner>19.22222222200001 39.74997750505241</ows:LowerCorner>
42
+ <ows:UpperCorner>29.356941715411907 43.083333000050004</ows:UpperCorner>
43
+ </ows:WGS84BoundingBox>
44
+ <Style isDefault="true">
45
+ <ows:Identifier>default</ows:Identifier>
46
+ </Style>
47
+ <Format>image/png</Format>
48
+ <TileMatrixSetLink>
49
+ <TileMatrixSet>WebMercatorQuad</TileMatrixSet>
50
+ </TileMatrixSetLink>
51
+ <ResourceURL format="image/png" resourceType="tile" template="https://map-tiles-staging.princeton.edu/mosaicjson/tiles/WebMercatorQuad/{TileMatrix}/{TileCol}/{TileRow}@1x.png?url=s3%3A%2F%2Ffiggy-geo-staging%2F2a%2F91%2Fd8%2F2a91d82c541c426cb787cc62afe8f248%2Fmosaic-6c5b32bfe4cb8e4fb07d32cd6656d024.json&amp;rescale=0%2C255"/>
52
+ </Layer>
53
+ <TileMatrixSet>
54
+ <ows:Identifier>WebMercatorQuad</ows:Identifier>
55
+ <ows:SupportedCRS>EPSG:3857</ows:SupportedCRS>
56
+
57
+
58
+ <TileMatrix>
59
+ <ows:Identifier>8</ows:Identifier>
60
+ <ScaleDenominator>2183915.09386217</ScaleDenominator>
61
+ <TopLeftCorner>-20037508.3427892 20037508.3427892</TopLeftCorner>
62
+ <TileWidth>256</TileWidth>
63
+ <TileHeight>256</TileHeight>
64
+ <MatrixWidth>256</MatrixWidth>
65
+ <MatrixHeight>256</MatrixHeight>
66
+ </TileMatrix>
67
+
68
+
69
+ <TileMatrix>
70
+ <ows:Identifier>9</ows:Identifier>
71
+ <ScaleDenominator>1091957.54693108</ScaleDenominator>
72
+ <TopLeftCorner>-20037508.3427892 20037508.3427892</TopLeftCorner>
73
+ <TileWidth>256</TileWidth>
74
+ <TileHeight>256</TileHeight>
75
+ <MatrixWidth>512</MatrixWidth>
76
+ <MatrixHeight>512</MatrixHeight>
77
+ </TileMatrix>
78
+
79
+
80
+ <TileMatrix>
81
+ <ows:Identifier>10</ows:Identifier>
82
+ <ScaleDenominator>545978.773465544</ScaleDenominator>
83
+ <TopLeftCorner>-20037508.3427892 20037508.3427892</TopLeftCorner>
84
+ <TileWidth>256</TileWidth>
85
+ <TileHeight>256</TileHeight>
86
+ <MatrixWidth>1024</MatrixWidth>
87
+ <MatrixHeight>1024</MatrixHeight>
88
+ </TileMatrix>
89
+
90
+
91
+ <TileMatrix>
92
+ <ows:Identifier>11</ows:Identifier>
93
+ <ScaleDenominator>272989.386732772</ScaleDenominator>
94
+ <TopLeftCorner>-20037508.3427892 20037508.3427892</TopLeftCorner>
95
+ <TileWidth>256</TileWidth>
96
+ <TileHeight>256</TileHeight>
97
+ <MatrixWidth>2048</MatrixWidth>
98
+ <MatrixHeight>2048</MatrixHeight>
99
+ </TileMatrix>
100
+
101
+
102
+ <TileMatrix>
103
+ <ows:Identifier>12</ows:Identifier>
104
+ <ScaleDenominator>136494.693366386</ScaleDenominator>
105
+ <TopLeftCorner>-20037508.3427892 20037508.3427892</TopLeftCorner>
106
+ <TileWidth>256</TileWidth>
107
+ <TileHeight>256</TileHeight>
108
+ <MatrixWidth>4096</MatrixWidth>
109
+ <MatrixHeight>4096</MatrixHeight>
110
+ </TileMatrix>
111
+
112
+
113
+ <TileMatrix>
114
+ <ows:Identifier>13</ows:Identifier>
115
+ <ScaleDenominator>68247.346683193</ScaleDenominator>
116
+ <TopLeftCorner>-20037508.3427892 20037508.3427892</TopLeftCorner>
117
+ <TileWidth>256</TileWidth>
118
+ <TileHeight>256</TileHeight>
119
+ <MatrixWidth>8192</MatrixWidth>
120
+ <MatrixHeight>8192</MatrixHeight>
121
+ </TileMatrix>
122
+
123
+ </TileMatrixSet>
124
+ </Contents>
125
+ <ServiceMetadataURL xlink:href="https://map-tiles-staging.princeton.edu/mosaicjson/WMTSCapabilities.xml?url=s3%3A%2F%2Ffiggy-geo-staging%2F2a%2F91%2Fd8%2F2a91d82c541c426cb787cc62afe8f248%2Fmosaic-6c5b32bfe4cb8e4fb07d32cd6656d024.json&amp;rescale=0%2C255"/>
126
+ </Capabilities>
@@ -0,0 +1,38 @@
1
+ {
2
+ "geoblacklight_version": "1.0",
3
+ "dc_identifier_s": "ark:/99999/fk4544658v",
4
+ "layer_slug_s": "princeton-fk4544658v-tilejson",
5
+ "uuid": "princeton-fk4544658v",
6
+ "dc_title_s": "The Balkans [and] Turkey : G.S.G.S. no. 2097 / War Office. General Staff. Geographical Section (TileJSON Fixture)",
7
+ "solr_geom": "ENVELOPE(19.333333, 29.333333, 43.083333, 39.75)",
8
+ "dct_provenance_s": "Princeton",
9
+ "dc_rights_s": "Public",
10
+ "dc_description_s": "Relief shown by contours approximately 100 feet interval, spot heights, and shading. Title varies; some sheets are titled \"Turkey\". Shows international boundaries, railways, 2 categories of roads, telegraph lines, places of worship, ruins. Constantinople latest edition map has a glossary.",
11
+ "dc_creator_sm": [
12
+ "Great Britain. War Office. General Staff. Geographical Section"
13
+ ],
14
+ "dc_language_s": "eng",
15
+ "dc_publisher_s": "[London] : War Office. General Staff. Geographical Section. General Staff, 1908-25.",
16
+ "dc_subject_sm": [
17
+ "Maps,Topographic",
18
+ "Balkan Peninsula\u2014Maps",
19
+ "Turkey\u2014Maps",
20
+ "Topographic maps"
21
+ ],
22
+ "all_subject_sm": [
23
+ "Maps,Topographic",
24
+ "Balkan Peninsula\u2014Maps",
25
+ "Turkey\u2014Maps",
26
+ "Topographic maps"
27
+ ],
28
+ "dct_spatial_sm": [
29
+ "Balkan Peninsula",
30
+ "Turkey"
31
+ ],
32
+ "solr_year_i": 1908,
33
+ "layer_modified_dt": "2022-02-03T22:13:40Z",
34
+ "layer_id_s": "ark:/99999/fk4544658v",
35
+ "dct_references_s": "{\"http://schema.org/url\":\"https://catalog.princeton.edu/catalog/99125413918506421\",\"http://schema.org/thumbnailUrl\":\"https://figgy-staging.princeton.edu/downloads/6b55d939-7188-4bce-9550-0ac535441f22/file/9042b887-da2e-4aa9-9ca5-d3ba77f440c4\",\"http://iiif.io/api/image\":\"https://iiif-cloud-staging.princeton.edu/iiif/2/05%2F71%2F04%2F0571046f9c7149a3b950899323f70788%2Fintermediate_file/info.json\",\"http://iiif.io/api/presentation#manifest\":\"https://figgy-staging.princeton.edu/concern/scanned_maps/2a91d82c-541c-426c-b787-cc62afe8f248/manifest\",\"https://wiki.openstreetmap.org/wiki/Slippy_map_tilenames\":\"https://map-tiles-staging.princeton.edu/mosaicjson/tiles/WebMercatorQuad/{z}/{x}/{y}@1x.png?id=2a91d82c541c426cb787cc62afe8f248\",\"https://github.com/mapbox/tilejson-spec\":\"https://map-tiles-staging.princeton.edu/mosaicjson/tilejson.json?id=2a91d82c541c426cb787cc62afe8f248\"}",
36
+ "layer_geom_type_s": "Image",
37
+ "suppressed_b": false
38
+ }
@@ -0,0 +1,32 @@
1
+ {
2
+ "geoblacklight_version": "1.0",
3
+ "dc_identifier_s": "ark:/99999/fk4db9hn29",
4
+ "layer_slug_s": "princeton-fk4db9hn29",
5
+ "uuid": "princeton-fk4db9hn29",
6
+ "dc_title_s": "Orthofoto 2016 Wien (WMTS)",
7
+ "solr_geom": "ENVELOPE(16.133423, 16.626434, 48.3348, 48.106056)",
8
+ "dct_provenance_s": "Princeton",
9
+ "dc_rights_s": "Public",
10
+ "dc_description_s": "The Vienna orthophoto from the year 2016 covers the entire city area with a pixel size of 15 centimeters. The aerial images were taken on 18th and 27th of March and 5th of April 2016.",
11
+ "dc_creator_sm": [
12
+ "Magistrat Wien - Magistratsabteilung 41 - Stadtvermessung"
13
+ ],
14
+ "all_subject_sm": [
15
+ "Orthophoto"
16
+ ],
17
+ "dct_spatial_sm": [
18
+ "Vienna",
19
+ "Austria"
20
+ ],
21
+ "dct_temporal_sm": [
22
+ "2016"
23
+ ],
24
+ "solr_year_i": 2022,
25
+ "layer_modified_dt": "2022-02-04T22:13:37Z",
26
+ "layer_id_s": "lb2016",
27
+ "dct_references_s": "{\"http://www.opengis.net/def/serviceType/ogc/wmts\":\"https://maps.wien.gv.at/wmts/1.0.0/WMTSCapabilities.xml\"}",
28
+ "layer_geom_type_s": "Raster",
29
+ "dc_format_s": "GeoTIFF",
30
+ "dct_issued_dt": "2016-01-01T00:00:00Z",
31
+ "suppressed_b": false
32
+ }
@@ -0,0 +1,38 @@
1
+ {
2
+ "geoblacklight_version": "1.0",
3
+ "dc_identifier_s": "ark:/99999/fk4544658v",
4
+ "layer_slug_s": "princeton-fk4544658v-wmts",
5
+ "uuid": "princeton-fk4544658v",
6
+ "dc_title_s": "The Balkans [and] Turkey : G.S.G.S. no. 2097 / War Office. General Staff. Geographical Section (WMTS Fixture)",
7
+ "solr_geom": "ENVELOPE(19.333333, 29.333333, 43.083333, 39.75)",
8
+ "dct_provenance_s": "Princeton",
9
+ "dc_rights_s": "Public",
10
+ "dc_description_s": "Relief shown by contours approximately 100 feet interval, spot heights, and shading. Title varies; some sheets are titled \"Turkey\". Shows international boundaries, railways, 2 categories of roads, telegraph lines, places of worship, ruins. Constantinople latest edition map has a glossary.",
11
+ "dc_creator_sm": [
12
+ "Great Britain. War Office. General Staff. Geographical Section"
13
+ ],
14
+ "dc_language_s": "eng",
15
+ "dc_publisher_s": "[London] : War Office. General Staff. Geographical Section. General Staff, 1908-25.",
16
+ "dc_subject_sm": [
17
+ "Maps,Topographic",
18
+ "Balkan Peninsula\u2014Maps",
19
+ "Turkey\u2014Maps",
20
+ "Topographic maps"
21
+ ],
22
+ "all_subject_sm": [
23
+ "Maps,Topographic",
24
+ "Balkan Peninsula\u2014Maps",
25
+ "Turkey\u2014Maps",
26
+ "Topographic maps"
27
+ ],
28
+ "dct_spatial_sm": [
29
+ "Balkan Peninsula",
30
+ "Turkey"
31
+ ],
32
+ "solr_year_i": 1908,
33
+ "layer_modified_dt": "2022-02-03T22:13:40Z",
34
+ "layer_id_s": "mosaic",
35
+ "dct_references_s": "{\"http://schema.org/url\":\"https://catalog.princeton.edu/catalog/99125413918506421\",\"http://schema.org/thumbnailUrl\":\"https://figgy-staging.princeton.edu/downloads/6b55d939-7188-4bce-9550-0ac535441f22/file/9042b887-da2e-4aa9-9ca5-d3ba77f440c4\",\"http://iiif.io/api/image\":\"https://iiif-cloud-staging.princeton.edu/iiif/2/05%2F71%2F04%2F0571046f9c7149a3b950899323f70788%2Fintermediate_file/info.json\",\"http://iiif.io/api/presentation#manifest\":\"https://figgy-staging.princeton.edu/concern/scanned_maps/2a91d82c-541c-426c-b787-cc62afe8f248/manifest\",\"http://www.opengis.net/def/serviceType/ogc/wmts\":\"https://map-tiles-staging.princeton.edu/mosaicjson/WMTSCapabilities.xml?id=2a91d82c541c426cb787cc62afe8f248\"}",
36
+ "layer_geom_type_s": "Image",
37
+ "suppressed_b": false
38
+ }
data/spec/spec_helper.rb CHANGED
@@ -30,6 +30,10 @@ require 'capybara/rspec'
30
30
  require 'selenium-webdriver'
31
31
  require 'webdrivers'
32
32
 
33
+ # Setup webmock for specific tests
34
+ require 'webmock/rspec'
35
+ WebMock.allow_net_connect!
36
+
33
37
  Capybara.register_driver(:headless_chrome) do |app|
34
38
  Capybara::Selenium::Driver.load_selenium
35
39
  browser_options = ::Selenium::WebDriver::Chrome::Options.new.tap do |opts|
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: geoblacklight
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.5.0
4
+ version: 3.6.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mike Graves
@@ -11,7 +11,7 @@ authors:
11
11
  autorequire:
12
12
  bindir: bin
13
13
  cert_chain: []
14
- date: 2022-01-24 00:00:00.000000000 Z
14
+ date: 2022-02-09 00:00:00.000000000 Z
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency
17
17
  name: rails
@@ -355,6 +355,20 @@ dependencies:
355
355
  - - "~>"
356
356
  - !ruby/object:Gem::Version
357
357
  version: '2.2'
358
+ - !ruby/object:Gem::Dependency
359
+ name: webmock
360
+ requirement: !ruby/object:Gem::Requirement
361
+ requirements:
362
+ - - "~>"
363
+ - !ruby/object:Gem::Version
364
+ version: '3.14'
365
+ type: :development
366
+ prerelease: false
367
+ version_requirements: !ruby/object:Gem::Requirement
368
+ requirements:
369
+ - - "~>"
370
+ - !ruby/object:Gem::Version
371
+ version: '3.14'
358
372
  description: GeoBlacklight provides a world-class discovery platform for geospatial
359
373
  (GIS) holdings. It is an open collaborative project aiming to build off of the successes
360
374
  of the Blacklight Solr-powered discovery interface and the multi-institutional OpenGeoportal
@@ -493,9 +507,11 @@ files:
493
507
  - app/assets/javascripts/geoblacklight/viewers/index_map.js
494
508
  - app/assets/javascripts/geoblacklight/viewers/map.js
495
509
  - app/assets/javascripts/geoblacklight/viewers/oembed.js
510
+ - app/assets/javascripts/geoblacklight/viewers/tilejson.js
496
511
  - app/assets/javascripts/geoblacklight/viewers/tms.js
497
512
  - app/assets/javascripts/geoblacklight/viewers/viewer.js
498
513
  - app/assets/javascripts/geoblacklight/viewers/wms.js
514
+ - app/assets/javascripts/geoblacklight/viewers/wmts.js
499
515
  - app/assets/javascripts/geoblacklight/viewers/xyz.js
500
516
  - app/assets/stylesheets/geoblacklight/geoblacklight.scss
501
517
  - app/assets/stylesheets/geoblacklight/modules/_base.scss
@@ -700,11 +716,16 @@ files:
700
716
  - spec/features/sms_spec.rb
701
717
  - spec/features/split_view.html.erb_spec.rb
702
718
  - spec/features/suppressed_records_spec.rb
719
+ - spec/features/tilejson_spec.rb
703
720
  - spec/features/tms_spec.rb
704
721
  - spec/features/web_services_modal_spec.rb
722
+ - spec/features/wmts_spec.rb
705
723
  - spec/features/xyz_spec.rb
706
724
  - spec/fixtures/fgdc/harvard-g7064-s2-1834-k3.xml
707
725
  - spec/fixtures/iso19139/stanford-cg357zz0321.xml
726
+ - spec/fixtures/manifests/tilejson.json
727
+ - spec/fixtures/manifests/wmts-multiple.xml
728
+ - spec/fixtures/manifests/wmts-single.xml
708
729
  - spec/fixtures/mods/fb897vt9938.mods
709
730
  - spec/fixtures/mods/stanford-cg357zz0321.mods
710
731
  - spec/fixtures/solr_documents/README.md
@@ -744,11 +765,14 @@ files:
744
765
  - spec/fixtures/solr_documents/public_iiif_princeton.json
745
766
  - spec/fixtures/solr_documents/public_polygon_mit.json
746
767
  - spec/fixtures/solr_documents/restricted-line.json
768
+ - spec/fixtures/solr_documents/tilejson.json
747
769
  - spec/fixtures/solr_documents/tms.json
748
770
  - spec/fixtures/solr_documents/umn_metro_result1.json
749
771
  - spec/fixtures/solr_documents/umn_state_result1.json
750
772
  - spec/fixtures/solr_documents/umn_state_result2.json
751
773
  - spec/fixtures/solr_documents/uva_slug_colon.json
774
+ - spec/fixtures/solr_documents/wmts-multiple.json
775
+ - spec/fixtures/solr_documents/wmts-single-layer.json
752
776
  - spec/fixtures/solr_documents/xyz.json
753
777
  - spec/helpers/arcgis_helper_spec.rb
754
778
  - spec/helpers/carto_helper_spec.rb
@@ -841,7 +865,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
841
865
  - !ruby/object:Gem::Version
842
866
  version: 2.5.2
843
867
  requirements: []
844
- rubygems_version: 3.0.3
868
+ rubygems_version: 3.1.6
845
869
  signing_key:
846
870
  specification_version: 4
847
871
  summary: A discovery platform for geospatial holdings
@@ -883,11 +907,16 @@ test_files:
883
907
  - spec/features/sms_spec.rb
884
908
  - spec/features/split_view.html.erb_spec.rb
885
909
  - spec/features/suppressed_records_spec.rb
910
+ - spec/features/tilejson_spec.rb
886
911
  - spec/features/tms_spec.rb
887
912
  - spec/features/web_services_modal_spec.rb
913
+ - spec/features/wmts_spec.rb
888
914
  - spec/features/xyz_spec.rb
889
915
  - spec/fixtures/fgdc/harvard-g7064-s2-1834-k3.xml
890
916
  - spec/fixtures/iso19139/stanford-cg357zz0321.xml
917
+ - spec/fixtures/manifests/tilejson.json
918
+ - spec/fixtures/manifests/wmts-multiple.xml
919
+ - spec/fixtures/manifests/wmts-single.xml
891
920
  - spec/fixtures/mods/fb897vt9938.mods
892
921
  - spec/fixtures/mods/stanford-cg357zz0321.mods
893
922
  - spec/fixtures/solr_documents/README.md
@@ -927,11 +956,14 @@ test_files:
927
956
  - spec/fixtures/solr_documents/public_iiif_princeton.json
928
957
  - spec/fixtures/solr_documents/public_polygon_mit.json
929
958
  - spec/fixtures/solr_documents/restricted-line.json
959
+ - spec/fixtures/solr_documents/tilejson.json
930
960
  - spec/fixtures/solr_documents/tms.json
931
961
  - spec/fixtures/solr_documents/umn_metro_result1.json
932
962
  - spec/fixtures/solr_documents/umn_state_result1.json
933
963
  - spec/fixtures/solr_documents/umn_state_result2.json
934
964
  - spec/fixtures/solr_documents/uva_slug_colon.json
965
+ - spec/fixtures/solr_documents/wmts-multiple.json
966
+ - spec/fixtures/solr_documents/wmts-single-layer.json
935
967
  - spec/fixtures/solr_documents/xyz.json
936
968
  - spec/helpers/arcgis_helper_spec.rb
937
969
  - spec/helpers/carto_helper_spec.rb