README.md in geojson2image-0.1.0 vs README.md in geojson2image-0.1.1
- old
+ new
@@ -4,11 +4,11 @@
[gem]: https://rubygems.org/gems/geojson2image
Ruby library for generating images from GeoJSON.
-Currently, MultiPolygon and Polygon GeoJSON types should output images properly. Other GeoJSON types have not been thoroughly tested, and properties from the GeoJSON are not being parsed.
+Currently, MultiPolygon and Polygon GeoJSON types should output images properly. Other GeoJSON types have not been thoroughly tested.
## Installation
You will need [ImageMagick](http://imagemagick.org/) installed. Then Add this line to your application's Gemfile:
@@ -44,12 +44,25 @@
```
### Example Output

-### Color Options
+### Stroke and Fill Color Options
-ImageMagick Color Names Reference: https://www.imagemagick.org/script/color.php
+These options can be globally set when initializing a
+new Geojson2image::Convert object, or you can override them by adding properties to
+your GeoJSON that include the desired stroke and fill options per feature. Example:
+
+```json
+"properties": {
+ "fill_color": "rgba(0, 158, 40, 0.3)",
+ "stroke_color": "rgb(0, 107, 27)",
+ "stoke_width": "3",
+},
+```
+
+Valid color values are defined in the ImageMagick Color Names Reference:
+https://www.imagemagick.org/script/color.php
## Development
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.