The documentation defines X/Y attributes of a JET Thematic Map link's as follows
x
The x coordinate which can represent latitude of the point.
y
The y coordinate which can represent longitude of the point.
But at the same time JET Cookbook > Visualizations > Thematic Map > Links page uses the opposite notation for markers:
<template slot="markerTemplate">
<oj-thematic-map-marker
x="[[$current.data.longitude]]"
y="[[$current.data.latitude]]"
...
</oj-thematic-map-marker>
</template>
So is the statement that X/Y represents latitude/longitude correct for links?