1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2025-02-22 22:10:03 +00:00
Jeremy Ruston 7fe9a31917 Add dir="auto" to all <p> tags
And fix 182 test files!
2025-01-27 12:36:50 +00:00

45 lines
944 B
Plaintext

title: $:/plugins/tiddlywiki/geospatial/tests/operators/geonearestpoint2
description: geonearestpoint operator
type: text/vnd.tiddlywiki-multiple
tags: [[$:/tags/wiki-test-spec]]
title: Description
geonearestpoint operator
+
title: Output
\whitespace trim
<$let
oxford={{{ [geopoint[51.751944],[-1.257778]jsonset[id],[Oxford]] }}}
winchester={{{ [geopoint[51.0632],[-1.308]jsonset[id],[Winchester]] }}}
new-york={{{ [geopoint[40.730610],[-73.935242]jsonset[id],[New York]] }}}
places="""{
"type": "FeatureCollection",
"features": [
{
"type": "Feature",
"id": "Oxford",
"geometry": {
"type": "Point",
"coordinates": [-1.257778, 51.751944]
}
},{
"type": "Feature",
"id": "Winchester",
"geometry": {
"type": "Point",
"coordinates": [-1.308, 51.0632]
}
}
]
}
"""
>
<$text text={{{ [<places>geonearestpoint<new-york>jsonget[id]] }}}/>
</$let>
+
title: ExpectedResult
<p dir="auto">Oxford</p>