Jekyll Geocode

Encode addresses from a YAML file and export them to a JSON or another YAML for drawing maps

Example of map generated with Jekyll Geocode and Jekyll Map

Take a Yaml


- name: "Bertrand Keller"
  street: "place du vieux marché"
  postcode: "76000"
  city: "Rouen"
  region: "normandy"
  country: "france" 
- name: "John Doe"
  street: "rue Mendès France"
  postcode: "76190"
  city: "Yvetot" 
  region: "normandy"
  country: "france"  
- name: "Samuel Le Bihan"
  street: "Place Niemeyer" 
  city: "Le Havre"
  postcode: "76600"
  region: "normandy"
  country: "france"

Configurate Jekyll

_config.yml

jekyll_geocode:
  file-name: members.yml
  file-path: _data
  name: name
  address: street
  city: city
  region: region
  country: country
  postcode: postalcode
  outputfile: places.yml

gems:
  - jekyll-geocode
  - jekyll-maps

exclude:
    - _data/places.yml # Maybe stop watching this file

Index.html

{% google_map data_set:01 width:100% id:places %}

It will generate another Yaml which can be called by Jekyll Map

Discover Jekyll Map : Jekyll Map Github repositery

For more information : Visit the repository for more information