Skip to content

Releases: geocrystal/geojson

v0.6.0

31 Mar 15:47
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v0.5.0...v0.6.0

v0.5.0

02 Aug 16:28
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v0.4.1...v0.5.0

v0.4.1

16 Jan 16:42
Compare
Choose a tag to compare
v0.4.1

geo_json -> geojson

29 Mar 14:17
Compare
Choose a tag to compare
v0.4.0

v0.4.0

Bounding Box

25 Mar 21:09
Compare
Choose a tag to compare

A GeoJSON object may have a bbox member, the value of which must be a bounding box array

Allow "foreign members" in a GeoJSON Objects

23 Mar 22:15
Compare
Choose a tag to compare

Crystal code:

point = GeoJSON::Point.new([-80.1347334, 25.7663562])

json_unmapped = Hash(String, JSON::Any).new
json_unmapped["title"] = JSON::Any.new("Example Point")

point.json_unmapped = json_unmapped
point.to_json

JSON:

{
  "type": "Point",
  "coordinates": [-80.1347334, 25.7663562],
  "title": "Example Point"
}

First release

22 Mar 16:05
Compare
Choose a tag to compare
v0.1.0

v0.1.0