geoblacklight 1.5.0 → 1.5.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: e10dd6d136a3f3ba6cd333d076db7c0ee8a49340
4
- data.tar.gz: aa3f3cbdbf4bfeaaa422f8ec8a882d261b9fe0a9
3
+ metadata.gz: 39929d92f69fc2ae2167f47e4d587f16f082ce35
4
+ data.tar.gz: 1b71af84ccfc5da591f39b072a35bf4180e07285
5
5
  SHA512:
6
- metadata.gz: 7be3015337bf7254bf2722ac456f19739801b1a562aedb4b71917b0adc339c47e48ec4f0afafd0501f62715b5ebf7206503f172f2b7fbbffe6659e508a0eecc2
7
- data.tar.gz: ab5dc97ebc3ff07ec86e690715c6e03c2d2fe415b01da9ad28c1c6a498fe1317df7dc164a977bdf339f827e194f3ab94c4a62689be0e7125d197a9e4142c44c7
6
+ metadata.gz: 72578066955f12d215d6e0f1734d124d7affeeee831f2ac823d489b48af8b3e53bc32712aba80343db5043bdac9d94ab1106677c5ca653e4edf0db98f1c74aec
7
+ data.tar.gz: 72973c1fd525117a395aaf9ac5b3d81d05573346cabb4f1dfc337838918d5be52648e90d9e84aa606cec20bc04337f4f37dbfbe7996907bc017a42623da4bebb
data/.travis.yml CHANGED
@@ -9,8 +9,6 @@ rvm:
9
9
 
10
10
  matrix:
11
11
  include:
12
- - rvm: 2.3.4
13
- env: "RAILS_VERSION=4.2.8"
14
12
  - rvm: 2.3.4
15
13
  env: "RAILS_VERSION=5.0.3"
16
14
 
data/README.md CHANGED
@@ -9,7 +9,7 @@ of the Blacklight Solr-powered discovery interface and the
9
9
  multi-institutional OpenGeoportal federated metadata sharing
10
10
  communities. We're actively looking for community input and development partners.
11
11
 
12
- ###[Installation](https://github.com/geoblacklight/geoblacklight/wiki/Installation)
12
+ ### [Installation](https://github.com/geoblacklight/geoblacklight/wiki/Installation)
13
13
 
14
14
  Creating a new GeoBlacklight application from the template
15
15
 
@@ -30,7 +30,7 @@ For more information see the [installation guide](https://github.com/geoblacklig
30
30
  ### Contributing
31
31
  Interested in contributing to GeoBlacklight? Please see our [contributing](CONTRIBUTING.md) guide.
32
32
 
33
- ###[Development](https://github.com/geoblacklight/geoblacklight/wiki/Development)
33
+ ### [Development](https://github.com/geoblacklight/geoblacklight/wiki/Development)
34
34
 
35
35
  See the [development guide](https://github.com/geoblacklight/geoblacklight/wiki/Development) on our wiki for more information about setting up your development environment.
36
36
 
@@ -11,10 +11,14 @@ Blacklight.onLoad(function() {
11
11
  $('[data-map="index"]').each(function() {
12
12
  var data = $(this).data(),
13
13
  opts = { baseUrl: data.catalogPath },
14
- geoblacklight;
15
- var bbox = [[-180, -90], [180, 90]];
14
+ geoblacklight, bbox;
16
15
 
17
- var parseableBbox = /(-?[0-9]{2})\s(-?[0-9]{3})\s(-?[0-9]{2})\s(-?[0-9]{3})/;
16
+ var lngRe = '(-?[0-9]{1,2}(\\.[0-9]+)?)';
17
+ var latRe = '(-?[0-9]{1,3}(\\.[0-9]+)?)';
18
+
19
+ var parseableBbox = new RegExp(
20
+ [lngRe,latRe,lngRe,latRe].join('\\s+')
21
+ );
18
22
 
19
23
  if (typeof data.mapBbox === 'string') {
20
24
  bbox = L.bboxToBounds(data.mapBbox);
@@ -23,10 +27,14 @@ Blacklight.onLoad(function() {
23
27
  var currentBbox = $(this).data().bbox;
24
28
  if (parseableBbox.test(currentBbox)) {
25
29
  if (typeof bbox === 'undefined') {
26
- bbox = L.bboxToBounds($(this).data().bbox);
30
+ bbox = L.bboxToBounds(currentBbox);
27
31
  } else {
28
- bbox.extend(L.bboxToBounds($(this).data().bbox));
32
+ bbox.extend(L.bboxToBounds(currentBbox));
29
33
  }
34
+ } else {
35
+ // bbox not parseable, use default value.
36
+ // [[-180, -90], [180, 90]];
37
+ bbox = L.bboxToBounds("-180 -90 180 90");
30
38
  }
31
39
  });
32
40
  }
@@ -9,7 +9,7 @@ GeoBlacklight.Viewer.Map = GeoBlacklight.Viewer.extend({
9
9
  bbox: [[-80, -195], [80, 185]],
10
10
  opacity: 0.75
11
11
  },
12
-
12
+
13
13
  overlay: L.layerGroup(),
14
14
 
15
15
  load: function() {
@@ -17,6 +17,12 @@ GeoBlacklight.Viewer.Map = GeoBlacklight.Viewer.extend({
17
17
  this.options.bbox = L.bboxToBounds(this.data.mapBbox);
18
18
  }
19
19
  this.map = L.map(this.element).fitBounds(this.options.bbox);
20
+
21
+ // Add initial bbox to map element for easier testing
22
+ if (this.map.getBounds().isValid()) {
23
+ this.element.setAttribute('data-js-map-render-bbox', this.map.getBounds().toBBoxString());
24
+ }
25
+
20
26
  this.map.addLayer(this.selectBasemap());
21
27
  this.map.addLayer(this.overlay);
22
28
  if (this.data.map !== 'index') {
@@ -19,8 +19,8 @@ Gem::Specification.new do |spec|
19
19
  spec.require_paths = ['lib']
20
20
  spec.required_rubygems_version = '>= 2.5.2'
21
21
 
22
- spec.add_dependency 'rails', '>= 4.2.0', '< 5.1'
23
- spec.add_dependency 'blacklight', '~> 6.3', '< 6.10'
22
+ spec.add_dependency 'rails', '~> 5.0'
23
+ spec.add_dependency 'blacklight', '~> 6.10'
24
24
  spec.add_dependency 'leaflet-rails', '~> 0.7.3'
25
25
  spec.add_dependency 'font-awesome-rails'
26
26
  spec.add_dependency 'config'
@@ -7,6 +7,7 @@ module Geoblacklight
7
7
  geojson: 'http://geojson.org/geojson-spec.html',
8
8
  html: 'http://www.w3.org/1999/xhtml',
9
9
  iiif: 'http://iiif.io/api/image',
10
+ iiif_manifest: 'http://iiif.io/api/presentation#manifest',
10
11
  iso19139: 'http://www.isotc211.org/schemas/2005/gmd/',
11
12
  mods: 'http://www.loc.gov/mods/v3',
12
13
  shapefile: 'http://www.esri.com/library/whitepapers/pdfs/shapefile.pdf',
@@ -1,3 +1,3 @@
1
1
  module Geoblacklight
2
- VERSION = '1.5.0'.freeze
2
+ VERSION = '1.5.1'.freeze
3
3
  end
@@ -0,0 +1,55 @@
1
+ require 'spec_helper'
2
+
3
+ feature 'search results map', js: true do
4
+ scenario 'present on a search result page' do
5
+ visit search_catalog_path(q: 'Minnesota')
6
+ expect(page).to have_css '#map'
7
+ end
8
+ scenario 'present on a search result page' do
9
+ visit root_path
10
+ click_link 'Minnesota, United States'
11
+ results = page.all(:css, 'div.document')
12
+ expect(results.count).to equal(4)
13
+ end
14
+ scenario 'view is scoped to Minnesota' do
15
+ visit root_path
16
+ click_link 'Minnesota, United States'
17
+ expect(page).to have_css '#map'
18
+ bbox = page.find('#map')['data-js-map-render-bbox']
19
+
20
+ # Example bbox for Place > Minnesota, United States:
21
+ # "-101.90917968749999,38.75408327579141,-83.27636718749999,53.27835301753182"
22
+ left, bottom, right, top = bbox.split(',')
23
+ expect(left.to_f).to be_within(2).of(-101)
24
+ expect(bottom.to_f).to be_within(2).of(38)
25
+ expect(right.to_f).to be_within(2).of(-83)
26
+ expect(top.to_f).to be_within(2).of(53)
27
+ end
28
+ scenario 'view is scoped to Twin Cities metro area' do
29
+ visit search_catalog_path(q: 'Minneapolis')
30
+ expect(page).to have_css '#map'
31
+ bbox = page.find('#map')['data-js-map-render-bbox']
32
+
33
+ # Example bbox for q: Minneapolis
34
+ # "-94.537353515625,44.004669106432225,-92.208251953125,45.87088761346192"
35
+ left, bottom, right, top = bbox.split(',')
36
+ expect(left.to_f).to be_within(1).of(-94)
37
+ expect(bottom.to_f).to be_within(1).of(44)
38
+ expect(right.to_f).to be_within(1).of(-92)
39
+ expect(top.to_f).to be_within(1).of(45)
40
+ end
41
+ scenario 'view is scoped to NYC' do
42
+ visit root_path
43
+ click_link 'New York, New York, United States'
44
+ expect(page).to have_css '#map'
45
+ bbox = page.find('#map')['data-js-map-render-bbox']
46
+
47
+ # Example bbox for Place > New York, New York, United States
48
+ # "-74.26895141601562,40.455307212131494,-73.68667602539061,40.95501133048621"
49
+ left, bottom, right, top = bbox.split(',')
50
+ expect(left.to_f).to be_within(2).of(-74)
51
+ expect(bottom.to_f).to be_within(2).of(40)
52
+ expect(right.to_f).to be_within(2).of(-73)
53
+ expect(top.to_f).to be_within(2).of(40)
54
+ end
55
+ end
@@ -0,0 +1,37 @@
1
+ {
2
+ "geoblacklight_version": "1.0",
3
+ "layer_geom_type_s": "Mixed",
4
+ "layer_modified_dt": "2017-01-20T18:38:47Z",
5
+ "solr_geom": "ENVELOPE(-94.012, -92.732, 45.415, 44.471)",
6
+ "dct_references_s": "{\"http://schema.org/downloadUrl\":\"ftp://ftp.gisdata.mn.gov/pub/gdrs/data/pub/us_mn_state_metc/plan_frmwrk2030dev_plan_ar2011/shp_plan_frmwrk2030dev_plan_ar2011.zip\",\"http://schema.org/url\":\"https://gisdata.mn.gov/dataset/us-mn-state-metc-plan-frmwrk2030dev-plan-ar2011\",\"http://www.isotc211.org/schemas/2005/gmd/\":\"https://opengeometadata.github.io/edu.umn/4a/d4/13/49035c4bd391a777b99afbf550/iso19139.xml\"}",
7
+ "dc_rights_s": "Public",
8
+ "dct_provenance_s": "Minnesota",
9
+ "dc_subject_sm": [
10
+ "Planning and Cadastral",
11
+ "Urban planning and development"
12
+ ],
13
+ "dc_format_s": "Shapefile",
14
+ "dc_description_s": "The 2030 Regional Development Framework Planning Areas - 2011 updates the 2030 Regional Development Framework Planning Areas initially adopted on January 14, 2004 and ammended in 2006. This dataset reflect the agreed upon planning areas between a community and the Metropolitan Council and defined in the communities' 2030 Comprehensive Plan Update and is intended to supplement the 2030 Regional Development Framework - the planning guide for the 7-county Twin Cities metropolitan area of Minneapolis and Saint Paul, Minnesota. Planning area definitions and strategies for the planning areas are available in the 2030 Regional Development Framework document at http://www.metrocouncil.org/Planning/Planning/2030-Regional-Development-Framework.aspx (See Chapter 3). For questions about how decisions were made regarding individual communities' geographic planning areas, please contact the Metropolitan Council Regional Framework Development staff, Dan Marckel, 651-602-1548. See Currentness Reference and Lineage in Data Quality Section of this metadata for more information.",
15
+ "dct_issued_s": "2014-05-23",
16
+ "dct_temporal_sm": [
17
+ "2011"
18
+ ],
19
+ "dc_creator_sm": [
20
+ "Metropolitan Council"
21
+ ],
22
+ "dc_identifier_s": "4ad41349-035c-4bd3-91a7-77b99afbf550",
23
+ "solr_year_i": 2011,
24
+ "dct_spatial_sm": [
25
+ "Minnesota, United States",
26
+ "Minneapolis-St. Paul-Bloomington, United States"
27
+ ],
28
+ "dc_publisher_sm": [
29
+ "Metropolitan Council"
30
+ ],
31
+ "layer_id_s": "4ad41349-035c-4bd3-91a7-77b99afbf550",
32
+ "dc_title_s": "2030 Regional Development Framework Planning Areas: Twin Cities Metro, Minnesota, 2011",
33
+ "layer_slug_s": "4ad41349-035c-4bd3-91a7-77b99afbf550",
34
+ "dct_isPartOf_sm": [
35
+ "Minnesota Geospatial Commons"
36
+ ]
37
+ }
@@ -0,0 +1,35 @@
1
+ {
2
+ "layer_geom_type_s": "Mixed",
3
+ "layer_modified_dt": "2017-01-20T18:39:22Z",
4
+ "solr_geom": "ENVELOPE(-94.012, -92.732, 45.415, 44.471)",
5
+ "dct_references_s": "{\"http://schema.org/downloadUrl\":\"ftp://ftp.gisdata.mn.gov/pub/gdrs/data/pub/us_mn_state_metc/society_census_trt_comb1990_2000/shp_society_census_trt_comb1990_2000.zip\",\"http://schema.org/url\":\"https://gisdata.mn.gov/dataset/us-mn-state-metc-society-census-trt-comb1990-2000\",\"http://www.isotc211.org/schemas/2005/gmd/\":\"https://opengeometadata.github.io/edu.umn/e9/71/49/88c3074135b7a7a1d521949f5d/iso19139.xml\"}",
6
+ "dc_rights_s": "Public",
7
+ "dct_provenance_s": "Minnesota",
8
+ "dc_subject_sm": [
9
+ "Society"
10
+ ],
11
+ "dc_format_s": "Shapefile",
12
+ "dc_description_s": "This dataset consists of a correspondence table and shape file of the combined 1990 and 2000 Census tracts. Note: Census tracts from 1990 and 2000 do not match in all areas. This dataset is an attempt to match them. Some combining and splitting of tracts was necessary. See the Lineage in Section 2 of the metadata for more information.",
13
+ "dct_issued_s": "2003-01-27",
14
+ "dct_temporal_sm": [
15
+ "1990-2000"
16
+ ],
17
+ "dc_creator_sm": [
18
+ "Metropolitan Council"
19
+ ],
20
+ "dc_identifier_s": "e9714988-c307-4135-b7a7-a1d521949f5d",
21
+ "solr_year_i": 1990,
22
+ "dct_spatial_sm": [
23
+ "Minnesota, United States",
24
+ "Minneapolis-St. Paul-Bloomington, United States"
25
+ ],
26
+ "dc_publisher_sm": [
27
+ "Metropolitan Council"
28
+ ],
29
+ "layer_id_s": "e9714988-c307-4135-b7a7-a1d521949f5d",
30
+ "dc_title_s": "1990 to 2000 Census Tract Correspondence and Combined Tracts: Twin Cities Metro, Minnesota, 2003",
31
+ "layer_slug_s": "e9714988-c307-4135-b7a7-a1d521949f5d",
32
+ "dct_isPartOf_sm": [
33
+ "Minnesota Geospatial Commons"
34
+ ]
35
+ }
@@ -0,0 +1,31 @@
1
+ {
2
+ "layer_geom_type_s": "Mixed",
3
+ "layer_modified_dt": "2017-01-20T18:38:45Z",
4
+ "solr_geom": "ENVELOPE(-97.612501, -88.842351, 49.464145, 42.906949)",
5
+ "dct_references_s": "{\"http://schema.org/downloadUrl\":\"ftp://gdrs.dnr.state.mn.us/gdrs/data/pub/us_mn_state_dnr/tif_base_usgs_scanned_topo_100k_drg.zip\",\"http://schema.org/url\":\"https://gisdata.mn.gov/dataset/base-usgs-scanned-topo-100k-drg\",\"http://www.isotc211.org/schemas/2005/gmd/\":\"https://opengeometadata.github.io/edu.umn/08/32/9e/9637794cea9fa85d9939b6276f/iso19139.xml\"}",
6
+ "dc_rights_s": "Public",
7
+ "dct_provenance_s": "Minnesota",
8
+ "dc_subject_sm": [
9
+ "Imagery and Base Maps"
10
+ ],
11
+ "dc_format_s": "GeoTIFF",
12
+ "dc_description_s": "A digital raster graphic (DRG) is a scanned image of an U.S. Geological Survey (USGS) standard series topographic map, including all map collar information. The image inside the map neatline is georeferenced to the surface of the earth and fit to the Universal Transverse Mercator projection. The horizontal positional accuracy and datum of the DRG matches the accuracy and datum of the source map. The map is scanned at a minimum resolution of 250 dots per inch. DRG's are created by scanning published paper maps on high-resolution scanners. The raster image is georeferenced and fit to the UTM projection. Colors are standardized to remove scanner limitations and artifacts. The average data set size is about 6 megabytes in Tagged Image File Format (TIFF) with PackBits compression. DRG's can be easily combined with other digital cartographic products such as digital elevation models (DEM) and digital orthophoto quadrangles (DOQ). DRG's are stored as rectified TIFF files in geoTIFF format. GeoTIFF is a relatively new TIFF image storage format that incorporates georeferencing information in the header. This allows software, such as ArcView, ARC/INFO, or EPPL7 to reference the image without an additional header or world file. Within the Minnesota Department of Natural Resources Core GIS data set the DRG's have been processed to be in compliance with departmental data standards (UTM Extended Zone 15, NAD83 datum) and the map collar information has been removed to facilitate the display of the DRG's in a seamless fashion. These DRG's were clipped and transformed to UTM Zone 15 using EPPL7 Raster GIS.",
13
+ "dct_issued_s": "2010-04-22T06:00:00.000ZZ",
14
+ "dc_creator_sm": [
15
+ "U.S. Geological Survey (USGS) and Minnesota Department of Natural Resources (DNR)"
16
+ ],
17
+ "dc_identifier_s": "08329e96-3779-4cea-9fa8-5d9939b6276f",
18
+ "dct_isPartOf_sm": [
19
+ "Minnesota Geospatial Commons"
20
+ ],
21
+ "solr_year_i": 2010,
22
+ "dct_spatial_sm": [
23
+ "Minnesota, United States"
24
+ ],
25
+ "dc_publisher_sm": [
26
+ "Minnesota Department of Natural Resources"
27
+ ],
28
+ "layer_id_s": "08329e96-3779-4cea-9fa8-5d9939b6276f",
29
+ "dc_title_s": "1:100k Digital Raster Graphic, Collars Removed: Minnesota, 2010",
30
+ "layer_slug_s": "08329e96-3779-4cea-9fa8-5d9939b6276f"
31
+ }
@@ -0,0 +1,36 @@
1
+ {
2
+ "layer_geom_type_s": "Mixed",
3
+ "layer_modified_dt": "2017-01-20T18:40:36Z",
4
+ "solr_geom": "ENVELOPE(-97.991522, -87.177541, 49.892443, 42.891013)",
5
+ "dct_references_s": "{\"http://schema.org/downloadUrl\":\"ftp://ftp.gisdata.mn.gov/pub/gdrs/data/pub/us_mn_state_dnr/base_usgs_scanned_topo_250k_drg/fgdb_base_usgs_scanned_topo_250k_drg.zip\",\"http://schema.org/url\":\"https://gisdata.mn.gov/dataset/base-usgs-scanned-topo-250k-drg\",\"http://www.isotc211.org/schemas/2005/gmd/\":\"https://opengeometadata.github.io/edu.umn/18/63/6f/2f3d0a470e82bf26f9ceb4ea43/iso19139.xml\"}",
6
+ "dc_rights_s": "Public",
7
+ "dct_provenance_s": "Minnesota",
8
+ "dc_subject_sm": [
9
+ "Imagery and Base Maps",
10
+ "Imagerybasemapsearthcover",
11
+ "Drg"
12
+ ],
13
+ "dc_format_s": "GeoTIFF",
14
+ "dc_description_s": "A digital raster graphic (DRG) is a scanned image of an U.S. Geological Survey (USGS) standard series topographic map, including all map collar information. The image inside the map neatline is georeferenced to the surface of the earth and fit to the Universal Transverse Mercator projection. The horizontal positional accuracy and datum of the DRG matches the accuracy and datum of the source map. The map is scanned at a minimum resolution of 250 dots per inch. DRG's are created by scanning published paper maps on high-resolution scanners. The raster image is georeferenced and fit to the UTM projection. Colors are standardized to remove scanner limitations and artifacts. The average data set size is about 6 megabytes in Tagged Image File Format (TIFF) with PackBits compression. DRG's can be easily combined with other digital cartographic products such as digital elevation models (DEM) and digital orthophoto quadrangles (DOQ). DRG's are stored as rectified TIFF files in geoTIFF format. GeoTIFF is a relatively new TIFF image storage format that incorporates georeferencing information in the header. This allows software, such as ArcView, ARC/INFO, or EPPL7 to reference the image without an additional header or world file. Within the Minnesota Department of Natural Resources Core GIS data set the DRG's have been processed to be in compliance with departmental data standards (UTM Extended Zone 15, NAD83 datum) and the map collar information has been removed to facilitate the display of the DRG's in a seamless fashion. These DRG's were clipped and transformed to UTM Zone 15 using EPPL7 Raster GIS.",
15
+ "dct_issued_s": "1998-01-01",
16
+ "dct_temporal_sm": [
17
+ "1998"
18
+ ],
19
+ "dc_creator_sm": [
20
+ "U.S. Geological Survey and Minnesota DNR"
21
+ ],
22
+ "dc_identifier_s": "18636f2f-3d0a-470e-82bf-26f9ceb4ea43",
23
+ "solr_year_i": 1998,
24
+ "dct_spatial_sm": [
25
+ "Minnesota, United States"
26
+ ],
27
+ "dc_publisher_sm": [
28
+ "Minnesota Department of Natural Resources"
29
+ ],
30
+ "layer_id_s": "18636f2f-3d0a-470e-82bf-26f9ceb4ea43",
31
+ "dc_title_s": "1:250k Digital Raster Graphic, Collars Removed: Minnesota, 1998",
32
+ "layer_slug_s": "18636f2f-3d0a-470e-82bf-26f9ceb4ea43",
33
+ "dct_isPartOf_sm": [
34
+ "Minnesota Geospatial Commons"
35
+ ]
36
+ }
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: 1.5.0
4
+ version: 1.5.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mike Graves
@@ -11,36 +11,27 @@ authors:
11
11
  autorequire:
12
12
  bindir: bin
13
13
  cert_chain: []
14
- date: 2017-06-03 00:00:00.000000000 Z
14
+ date: 2017-07-06 00:00:00.000000000 Z
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency
17
17
  name: rails
18
18
  requirement: !ruby/object:Gem::Requirement
19
19
  requirements:
20
- - - ">="
21
- - !ruby/object:Gem::Version
22
- version: 4.2.0
23
- - - "<"
20
+ - - "~>"
24
21
  - !ruby/object:Gem::Version
25
- version: '5.1'
22
+ version: '5.0'
26
23
  type: :runtime
27
24
  prerelease: false
28
25
  version_requirements: !ruby/object:Gem::Requirement
29
26
  requirements:
30
- - - ">="
31
- - !ruby/object:Gem::Version
32
- version: 4.2.0
33
- - - "<"
27
+ - - "~>"
34
28
  - !ruby/object:Gem::Version
35
- version: '5.1'
29
+ version: '5.0'
36
30
  - !ruby/object:Gem::Dependency
37
31
  name: blacklight
38
32
  requirement: !ruby/object:Gem::Requirement
39
33
  requirements:
40
34
  - - "~>"
41
- - !ruby/object:Gem::Version
42
- version: '6.3'
43
- - - "<"
44
35
  - !ruby/object:Gem::Version
45
36
  version: '6.10'
46
37
  type: :runtime
@@ -48,9 +39,6 @@ dependencies:
48
39
  version_requirements: !ruby/object:Gem::Requirement
49
40
  requirements:
50
41
  - - "~>"
51
- - !ruby/object:Gem::Version
52
- version: '6.3'
53
- - - "<"
54
42
  - !ruby/object:Gem::Version
55
43
  version: '6.10'
56
44
  - !ruby/object:Gem::Dependency
@@ -464,6 +452,7 @@ files:
464
452
  - spec/features/relations_spec.rb
465
453
  - spec/features/saved_searches_spec.rb
466
454
  - spec/features/search_bar_spec.rb
455
+ - spec/features/search_results_map_spec.rb
467
456
  - spec/features/show_page_metadata_spec.rb
468
457
  - spec/features/split_view.html.erb_spec.rb
469
458
  - spec/features/web_services_modal_spec.rb
@@ -486,6 +475,10 @@ files:
486
475
  - spec/fixtures/solr_documents/public_iiif_princeton.json
487
476
  - spec/fixtures/solr_documents/public_polygon_mit.json
488
477
  - spec/fixtures/solr_documents/restricted-line.json
478
+ - spec/fixtures/solr_documents/umn_metro_result1.json
479
+ - spec/fixtures/solr_documents/umn_metro_result2.json
480
+ - spec/fixtures/solr_documents/umn_state_result1.json
481
+ - spec/fixtures/solr_documents/umn_state_result2.json
489
482
  - spec/helpers/carto_helper_spec.rb
490
483
  - spec/helpers/geoblacklight_helpers_spec.rb
491
484
  - spec/javascripts/geoblacklight_spec.js
@@ -580,6 +573,7 @@ test_files:
580
573
  - spec/features/relations_spec.rb
581
574
  - spec/features/saved_searches_spec.rb
582
575
  - spec/features/search_bar_spec.rb
576
+ - spec/features/search_results_map_spec.rb
583
577
  - spec/features/show_page_metadata_spec.rb
584
578
  - spec/features/split_view.html.erb_spec.rb
585
579
  - spec/features/web_services_modal_spec.rb
@@ -602,6 +596,10 @@ test_files:
602
596
  - spec/fixtures/solr_documents/public_iiif_princeton.json
603
597
  - spec/fixtures/solr_documents/public_polygon_mit.json
604
598
  - spec/fixtures/solr_documents/restricted-line.json
599
+ - spec/fixtures/solr_documents/umn_metro_result1.json
600
+ - spec/fixtures/solr_documents/umn_metro_result2.json
601
+ - spec/fixtures/solr_documents/umn_state_result1.json
602
+ - spec/fixtures/solr_documents/umn_state_result2.json
605
603
  - spec/helpers/carto_helper_spec.rb
606
604
  - spec/helpers/geoblacklight_helpers_spec.rb
607
605
  - spec/javascripts/geoblacklight_spec.js