aqila-mapas 0.4.11 → 0.4.12

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
  SHA256:
3
- metadata.gz: 9c9e1d8e70be51bb5f48d4fb73140edd93cb22a4112d2b59071b1698896ceb85
4
- data.tar.gz: e8e651ab10791e46223cfc6b139a504a61ebddfb646f1a1bc694df9ebadbb884
3
+ metadata.gz: 72c6f84a78b023c2c57b124b34f183350ab5f3acc3113113b7565193aa0e4b22
4
+ data.tar.gz: cefdac641effd3c03419c503375d7e327ea15c389a25d68397e86d4e2d2cea05
5
5
  SHA512:
6
- metadata.gz: 9efc2b843eaff4d8ea84096ba665e99f594828aaaebb9adfcd72b94642961852fa2d90f29b6b94e06c32ce6774c7bab878d5c83b20e6f2eef6408196c5351924
7
- data.tar.gz: f3b9c08c8b6efe7e66d6978fca20b5ab61efce0ccd921f7daf5b32af4d1e88cfb46344dd20f82c244b9e7d6302673d05832f902dbf895a2a7d7ae03acdcdcd41
6
+ metadata.gz: 22045a00fecccd91b964226d5f1a5afd34565e64606a239444cab759779c6c8447e39e81d0f27f6c66a4ac5e54cf341857d3ad2069667aeaa9b79d4bbc68db1e
7
+ data.tar.gz: '040885feda3d4c63c32e2faa067e1d439842414f34bf24c0cba0304e6cd5d113df2014d0f3b6cb361220990c07f9f35ed1a640cf976b3f474008aed2c16b862f'
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- aqila-mapas (0.4.11)
4
+ aqila-mapas (0.4.12)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Aqila
4
4
  module Mapas
5
- VERSION = '0.4.11'
5
+ VERSION = '0.4.12'
6
6
  end
7
7
  end
@@ -31,8 +31,10 @@ class Map::DownloadTilesService
31
31
  tile_NE = Map::TileService.new(@boundary_ne.second, @boundary_ne.first, zoom).points
32
32
  tile_SW = Map::TileService.new(@boundary_sw.second, @boundary_sw.first, zoom).points
33
33
 
34
- (tile_SW[:x]-TILES_OVERHEAD..tile_NE[:x]+TILES_OVERHEAD).each do |point_x|
35
- (tile_NE[:y]-TILES_OVERHEAD..tile_SW[:y]+TILES_OVERHEAD).each do |point_y|
34
+ tile_x = [tile_SW[:x] - TILES_OVERHEAD, 0].max # avoid negative values
35
+ tile_y = [tile_SW[:y] - TILES_OVERHEAD, 0].max # avoid negative values
36
+ (tile_x..tile_NE[:x]+TILES_OVERHEAD).each do |point_x|
37
+ (tile_y..tile_SW[:y]+TILES_OVERHEAD).each do |point_y|
36
38
  ret << {
37
39
  x: point_x,
38
40
  y: point_y,
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aqila-mapas
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.11
4
+ version: 0.4.12
5
5
  platform: ruby
6
6
  authors:
7
7
  - lucasferronato
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-06-06 00:00:00.000000000 Z
11
+ date: 2023-07-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler