Skip to content

Commit

Permalink
Merge pull request #322 from VandyVRC/mapBugDev
Browse files Browse the repository at this point in the history
Update gojson to fix map bug
  • Loading branch information
wsalesky authored Sep 29, 2024
2 parents a855cd2 + e68fa75 commit 7cd1400
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/content-negotiation/geojson.xqm
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,8 @@ return
<type>Feature</type>
<geometry>
<type>Point</type>
<coordinates json:literal="true">{tokenize($coords,' ')[2]}</coordinates>
<coordinates json:literal="true">{tokenize($coords,' ')[1]}</coordinates>
<coordinates json:literal="true">{normalize-space(tokenize($coords,' ')[2])}</coordinates>
<coordinates json:literal="true">{normalize-space(tokenize($coords,' ')[1])}</coordinates>
</geometry>
<properties>
<uri>{replace(replace($id,$config:base-uri,$config:nav-base),'/tei','')}</uri>
Expand Down

0 comments on commit 7cd1400

Please sign in to comment.