Swapped X/Y coordinates for player.

This commit is contained in:
Raimund Renkert 2015-03-09 17:50:58 +01:00
parent 28fc4d0734
commit 9523353167

View File

@ -18,7 +18,7 @@ var geoJSONTmpl = template.Must(template.New("geojson").Parse(
`{ "type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [{{.X}}, {{.Z}}]
"coordinates": [{{.Z}}, {{.X}}]
},
"properties": {
"name": "{{.Name | html }}"