Address
View code
New in v3.6.0! The addresses feature from Blaze CSS is early beta!
Use
- The recipient field is the owner, person or company
- The settings for road, district, town, state, code, country attach a class of 'c-address--{marker}' to each line.
- The map functions will be in the next release of the address.
HTML
<rg-address></rg-address>
JavaScript
var tags = riot.mount('rg-address', {
address: {
recipient: "The Simpsons",
lines: [
{line: "742 Evergreen Terrace", road: true},
{line: "Lone Pine Estate", district: true},
{line: "Springfield", town: true},
{line: "IL.", state: true},
{line: "80085", code: true},
{line: "USA", country: true}
],
showmap: true,
maplocation: "left|top|bottom|right"
}
});