-
Notifications
You must be signed in to change notification settings - Fork 47
Infoklick
Infoclick-rutor visas för:
- objekt i kartan som användaren klickar och som returnerar värden
- sökresultat när användaren klickar in sig i ett resultat och visar detaljvyn
För att fånga upp värden från databaskolumner och visa i infoclickrutan ska man hänvisa till kolumnens namn inom curly brackets. Exempelvis hämtas värdet för kolumnen postnr
på följande sätt:
Postnummer: {postnr}
och resulterar i följande ut till användaren:
Postnummer: 123 45
Det är möjligt att använda sig av if-satser för att endast visa en viss text om ett visst villkor uppfylls. Några exempel:
Den här texten visas alltid.
{{if {foo}}}Den här texten visas bara om attributet "foo" har ett värde.{{/if}}
{{if {foo}="bar"}}Den här texten visas bara om "foo"s värde är "bar".{{/if}}
{{if {foo}=bar}}Den här texten visas bara om "foo"s värde är "bar". (Dvs samma som ovan, citattecken runt textsträngar är valfria.){{/if}}
{{if {foo}={anotherFoo}}}Den här texten visas bara om "foo" och "anotherFoo" har samma värde.{{/if}}
// OBS: "!=" är tillgängligt från Hajk 3.11 och senare
{{if {foo}!="bar"}}Den här texten visas bara om "foo"s värde INTE är "bar".{{/if}}
{{if {foo}!=bar}}Den här texten visas bara om "foo"s värde INTE är "bar". (Dvs samma som ovan, citattecken runt textsträngar är valfria.){{/if}}
{{if {foo}!={anotherFoo}}}Den här texten visas bara om "foo" och "anotherFoo" INTE har samma värde.{{/if}}
Det går utmärkt att texten som ska visas om villkoret uppfylls innehåller HTML, MarkDown och/eller andra attributvärden. Ett exempel:
{{if {foo}={anotherFoo}}}
_Värdet på foo är samma som på anotherFoo._
Det är <span style="color: red;">värt att påpeka</span>.
Det kan dessutom vara bra att veta att foo är {foo} och anotherFoo är {anotherFoo}.
{{/if}}
När man klickar i kartan sparas viss information som sedan kan användas i infoclick. Ett användningsområde kan tex vara när du vill länka till en annan instans av Hajk. Dessa värden går att formatera precis som du kan göra med värden från databasen.
{click:x}
{click:y}
{click:zoom}
Formateringen av text som visas för användaren görs med hjälp av Markdown (rekommenderat tillvägagångssätt) eller HTML.
Hajk stödjer hela Markdown enligt specifikationen för GitHub Flavoured Markdown.
Exempel på bra ställen att börja med Markdown är här och här.
Dessutom finns stöd för tabeller, de skapas så här:
| Kolumn 1 | Kolumn 2 |
| -------- | -------- |
| Foo | Bar |
| Bar | Foo |
För ett längre exempel som kan användas rakt av i Hajk, se Appendix A.
Beskrivning: Avrundar ett tal till x antal decimaler.
(v3.13+) Om value ibland är en sträng kan man ange att roundToDecimals tyst ska returnera value.
Exempel 1:
value = '45.32465456'
{value|roundToDecimals(2)}
Resultat: 45,32
Exempel 2: (v3.13+)
value = 'Not a number'
{value|roundToDecimals(2,1)}
Resultat: 'Not a number'
Beskrivning: Multiplicerar värdet. Use case: 0.08 meter görs om till 8 meter.
Exempel:
{'0.08'|multiplyBy(100)}
Resultat: 8
Beskrivning: Ersätter alla förekomster av en stäng med en ny sträng.
Exempel:
value = 'This is working BAD!!'
{value|replace('BAD','GOOD')}
Resultat: This is working GOOD!!
Beskrivning: Om attributet inte har ett värde, returnera då ett specificerat värde.
Exempel:
value = ''
{value|default('No value found')}
Resultat: No value found
Exempel:
propName1 = NULL från db
propName2 = "Fallback value from database!"
{propName1|fallback(propName2)|toUpper}
Resultat: "FALLBACK VALUE FROM DATABASE!"
Description: If value is less than the first argument return the second argument, otherwise return the third argument. The original value will be returned if the second or the third argument is an empty string.
Example:
value = 10.3
{value|lt('11', 'lessThan', 'greaterThan')}
Result: 'lessThan'
Description: If value is greater than the first argument return the second argument, otherwise return the third argument. The original value will be returned if the second or the third argument is an empty string.
Example:
value = 10.3
{value|gt('9.2', 'greaterThan', 'lessThan')}
Result: 'greaterThan'
Description: If value is NaN or undef returns argument as a number, otherwise returns value
Example 1:
value = NaN
{value|naNToNum('-1000')}
Result: -1000
Example 2:
value = 10.3
{value|naNToNum('-1000')}
Result: 10.3
Beskrivning: Om parametern har ett värde, returnera det första argumentet. Annars returnera det andra. Båda argumenten har default-värde av tom sträng, vilket gör det möjligt att hoppa över det andra argumentet och endast ange det som ska skrivas ut om värde finns.
Exempel:
value = 'A text string'
{value|hasValue('There is a value', Sorry, no value here.')}
Resultat: It has a value
Beskrivning: Om värdet är lika med funktionens första argument, returnera då andra argumentet, annars så returneras 3:dje.
Exempel:
value = 'true'
{value|equals('true', 'yes', 'no')}
Resultat: yes
Beskrivning: Om värdet inte är lika med funktionens första argument, returnera då andra argumentet, annars så returneras 3:dje.
Exempel:
value = 'false'
{value|notEquals('true', 'This value is not true', 'This value is true')}
Resultat: This value is not true
Beskrivning: Funktionen formaterar från olika datum & tids-format till lokalt datum & tids-format. I exemplet skickas datum och tid med ISO-formatering in i funtionen.
Exempel:
value = '2021-06-03T13:04:12Z'
{value|datetime}
Resultat: 2021-06-03 13:04:12
Beskrivning: Funktionen formaterar från olika datum & tids-format till lokalt datum-format. I exemplet skickas datum och tid med ISO-formatering in i funtionen.
Exempel:
value = '2021-06-03T13:04:12Z'
{value|date}
Resultat: 2021-06-03
Beskrivning: Funktionen formaterar från olika datum & tids-format till lokalt tids-format. I exemplet skickas datum och tid med ISO-formatering in i funtionen.
Exempel:
value = '2021-06-03T13:04:12Z'
{value|time}
Resultat: 13:04:12
Beskrivning: Lägg till/tar bort x dagar på datumet. I exemplet skickas datum och tid med ISO-formatering in i funtionen.
Exempel:
value = '2021-06-03T13:04:12Z'
{value|dateAddDays(1)|datetime}
Resultat: 2021-06-04 13:04
Notera: Negativt värde flyttar datumet bakåt
Beskrivning: Lägg till/tar bort x timmar på datumet.
Exempel:
value = '2021-06-03T13:04:12Z'
{value|dateAddHours(1)|datetime}
Resultat: 2021-06-03 14:04
Notera: Negativt värde flyttar tiden bakåt
Beskrivning: Lokal formatering av numret. Tusenseparator osv.
Exempel:
value = '98000'
{value|formatNumber}
Resultat: 98 000
Beskrivning: Gör siffror i en sträng till subscript (unicode format)
Exempel:
{'test1'|subscript}
Resultat: test₁
Beskrivning: Gör siffror i en sträng till superscript (unicode format)
Exempel:
{'test1'|subscript}
Resultat: test¹
Beskrivning: Gör texten till VERSALER
Exempel:
value = 'testing'
{value|toUpper}
Resultat: TESTING
Beskrivning: Gör texten till gemener
Exempel:
value = 'TESTING'
{value|toLower}
Resultat: testing
Beskrivning: Gör första bokstaven i texten till versal.
Exempel:
value = 'testing'
{value|capitalize}
Resultat: Testing
Beskrivning: Returnerar specificerad del av texten. De båda parametrarna är start och längd för strängen som ska plockas ut.
Exempel:
value = 'abcdef'
{value|substr(2,4)}
(start index 2, längd 4 tecken)
Resultat: cdef
Beskrivning: Returnerar specificerad del av texten. De båda parametrarna är start och slut för strängen som ska plockas ut.
Exempel:
value = 'abcdef'
{value|substring(2,4)}
(start index 2, slut index 4)
Resultat: cd
Beskrivning: Returnerar allt till vänster om specificerad text.
Exempel:
value = 'probably_useful'
{value|left('_')}
Resultat: probably
Beskrivning: Returnerar allt till höger om specificerad text.
Exempel:
{'probably_useful'|right('_')}
Resultat: useful
Beskrivning: Rensa bort mellanslag etc från början och slutet av texten.
Exempel:
value = ' padded string '
{value|trim}
Resultat: 'padded string'
Beskrivning: Returnerar x eller y i efterfrågan projektion.
Exempel:
{'166198.59821362677'|toProjection('x','xproperty', 'yproperty','EPSG:4326', 4)}
Resultat: 12.2675 (med 4:a decimaler..)
parameters: xOrY, xProp, yProp, targetProjection, numDecimals = 4
Det är även möjligt - dock ej rekommenderat - att tillåta användning av HTML i infoclick. Inställningen hittas i administrationsgränsittet, under Verktyg->Infoclick. Det finns få anledningar att tillåta HTML då all formatering som kan uppnås med den kan lättare uppnås med Markdown.
Vissa plugins, exempelvis DocumentHandler
kan tillhandahålla inforutan med komponenter som skapas inne i pluginet. Varje plugin har ett eget syntax för vad den förväntar sig för att skapa komponenten, se respektive plugins dokumentation. Det som är gemensamt är att den så kallade @@-syntaxen används, exempelvis:
** Länkar från dokumenthanteraren **
{atag@@documenthandler}
Följande Markdown stöds fullt ut i FeatureInfo.
# H1
## H2
### H3
#### H4
##### H5
###### H6
Alternatively, for H1 and H2, an underline-ish style:
Alt-H1
======
Alt-H2
------
Emphasis, aka italics, with *asterisks* or _underscores_.
Strong emphasis, aka bold, with **asterisks** or __underscores__.
Combined emphasis with **asterisks and _underscores_**.
Strikethrough uses two tildes. ~~Scratch this.~~
# Lists
1. First ordered list item
2. Another item
* Unordered sub-list.
1. Actual numbers don't matter, just that it's a number
1. Ordered sub-list
4. And another item.
You can have properly indented paragraphs within list items. Notice the blank line above, and the leading spaces (at least one, but we'll use three here to also align the raw Markdown).
To have a line break without a paragraph, you will need to use two trailing spaces.
Note that this line is separate, but within the same paragraph.
(This is contrary to the typical GFM line break behaviour, where trailing spaces are not required.)
* Unordered list can use asterisks
- Or minuses
+ Or pluses
# Links
[I'm an inline-style link](https://www.google.com)
[I'm an inline-style link with title](https://www.google.com "Google's Homepage")
[I'm a reference-style link][Arbitrary case-insensitive reference text]
[I'm a relative reference to a repository file](../blob/master/LICENSE)
[You can use numbers for reference-style link definitions][1]
Or leave it empty and use the [link text itself].
URLs and URLs in angle brackets will automatically get turned into links.
http://www.example.com or <http://www.example.com> and sometimes
example.com (but not on Github, for example).
Some text to show that the reference links can follow later.
[arbitrary case-insensitive reference text]: https://www.mozilla.org
[1]: http://slashdot.org
[link text itself]: http://www.reddit.com
# Images
Here's our logo (hover to see the title text):
Inline-style:
![alt text](https://github.com/adam-p/markdown-here/raw/master/src/common/images/icon48.png "Logo Title Text 1")
Reference-style:
![alt text][logo]
[logo]: https://github.com/adam-p/markdown-here/raw/master/src/common/images/icon48.png "Logo Title Text 2"
# Code
Inline `code` has `back-ticks around` it.
You can have blocks of code too, just use ``` and ``` on new lines.
# Tables
Colons can be used to align columns.
| Tables | Are | Cool |
| ------------- |:-------------:| -----:|
| col 3 is | right-aligned | $1600 |
| col 2 is | centered | $12 |
| zebra stripes | are neat | $1 |
There must be at least 3 dashes separating each header cell.
The outer pipes (|) are optional, and you don't need to make the
raw Markdown line up prettily. You can also use inline Markdown.
Markdown | Less | Pretty
--- | --- | ---
*Still* | `renders` | **nicely**
1 | 2 | 3
# Quotes
> Blockquotes are very handy in email to emulate reply text.
> This line is part of the same quote.
Quote break.
> This is a very long line that will still be quoted properly when it wraps. Oh boy let's keep writing to make sure this is long enough to actually wrap for everyone. Oh, you can *put* **Markdown** into a blockquote.
# Breakes
Three or more...
---
Hyphens
***
Asterisks
___
Underscores