Places representation API.
npm install @rr0/place --save
Once place are represented using assembled business objects
(City, State, Country, or several Place subtypes), they can be provided as parameters to some Renderer, which
will use a Translator to convert them to text (or HTML markup, etc.).
Say we want to render the timeline of some people:
import{grammar_fr,Translation}from"@rr0/lang"import{messages_fr}from"lang/Messages_fr"import{City,States,HTMLPlaceRenderer}from'@rr0/place';consttranslation=newTranslation('fr',grammar_fr,messages_fr)constrenderer=newHTMLPlaceRenderer(translation)constcity=newCity('Chicago',States.illinois)consthtml=renderer.renderCity(city)will return in html:
Chicago (Illinois, États-Unis)Change the parameters of the Translator to a en locale and to use
messages_en, and grammar_en and change the custom translation to:
then you will get instead:
Chicago (Illinois, USA)