# How to style markers with geoJSON and CSV

**URL:** https://discourse.processing.org/t/how-to-style-markers-with-geojson-and-csv/12667
**Category:** Libraries
**Created:** [July 11, 2019, 1:24pm UTC](https://discourse.processing.org/t/how-to-style-markers-with-geojson-and-csv/12667 "2019-07-11T13:24:34Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![fmS3lect](https://avatars.discourse-cdn.com/v4/letter/f/0ea827/32.png) [@fmS3lect](https://discourse.processing.org/u/fmS3lect)
#### Post date: [July 11, 2019, 1:24pm UTC](https://discourse.processing.org/t/how-to-style-markers-with-geojson-and-csv/12667/1 "2019-07-11T13:24:35Z")

</div>

Hi Guys,

so I am working on project, and I am using Unfolding.  
I am trying to add markers from a geoJSON file on the map. This is working fine. But now i want style those markers based on values from an csv datasheet. I have no idea how or if this is possible.

I only used this command:

```auto
List<Feature> countries = GeoJSONReader.loadData(this, "stationen.geojson");
  List<Marker> countryMarkers = MapUtils.createSimpleMarkers(countries);
  map.addMarkers(countryMarkers);

```

Maybe some can help me, thank you in advance

Sebastian

---

<div class="post-metadata">

### Author: ![kfrajer](https://yyz2.discourse-cdn.com/flex036/user_avatar/discourse.processing.org/kfrajer/32/196_2.png) [@kfrajer](https://discourse.processing.org/u/kfrajer)
#### Post date: [July 15, 2019, 7:58am UTC](https://discourse.processing.org/t/how-to-style-markers-with-geojson-and-csv/12667/2 "2019-07-15T07:58:59Z")

</div>

You can style or even create your own marker as documented [here](http://unfoldingmaps.org/tutorials/markers-simple). Give it a try and see if it works for your purpose.

Kf
