Releases: geocrystal/geojson
Releases · geocrystal/geojson
v0.6.0
What's Changed
- Bump actions/checkout from 2 to 4 by @dependabot in #10
- Bump crazy-max/ghaction-github-pages from 2 to 4 by @dependabot in #9
- Calculate the bounding box for any GeoJSON object by @mamantoha in #11
New Contributors
- @dependabot made their first contribution in #10
Full Changelog: v0.5.0...v0.6.0
v0.5.0
What's Changed
- Add class and method documentation by @RespiteSage in #7
- Develop by @mamantoha in #8
New Contributors
- @RespiteSage made their first contribution in #7
Full Changelog: v0.4.1...v0.5.0
v0.4.1
geo_json -> geojson
v0.4.0 v0.4.0
Bounding Box
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
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
v0.1.0 v0.1.0