Make creating a bbox object from a string work.
This commit is contained in:
parent
6d11673562
commit
9cd29b4721
1 changed files with 1 additions and 1 deletions
|
@ -4,7 +4,7 @@ class BoundingBox
|
|||
end
|
||||
|
||||
def self.from_s(s)
|
||||
BoundingBox.new(s.split(/,/))
|
||||
BoundingBox.new(*s.split(/,/))
|
||||
end
|
||||
|
||||
def min_lon
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue