I am working on creating a Day Z map (game) with the JS booklet and want to be able to display objects on the map using the coordinate system of the game, see http://dayz.ollieb.net
In the game, the upper left coordinate is 000 000, then 001, 001, where units of 10 represent the grid, so 010, 010 will be the upper left βgridβ (similar to the mystery survey).
How to create a method for transforming the provided coordinate systems (either by points or by latong) to work along this path. Basically, they just need to go from 000, 000 (top left) to 145, 130 (bottom right). I am currently having a problem using lat / long as it is a curve to compensate for the projection and it seems that the points (x / y) are changing on one computer!
How can I take the point of the game and create a marker on the map while indicating? Presumably I need to tell Leaflet.js that the βnumberβ is at the top left and bottom right of the map?
Sorry for the lack of understanding, I have read all the documents and do not see anything like it!
See an example here: http://dabrothas.net/sei/daisy/index.asp?mode=mark&z=3&x=-109.2294921875&y=73.49222029152183
source share