DrawnMapFormat.wiki
author vittorio.giovara@gmail.com
Tue, 29 Jan 2013 23:14:29 +0000
changeset 291 a40772f88335
parent 226 6ca639109e95
child 432 e441f3f51dac
permissions -rw-r--r--
Removed old examples, mentioned presence of internal commands
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
226
6ca639109e95 Created wiki page through web user interface.
unC0Rr@gmail.com
parents:
diff changeset
     1
Drawn map is described by a list of points, which define polylines to draw and format of each polyline.
6ca639109e95 Created wiki page through web user interface.
unC0Rr@gmail.com
parents:
diff changeset
     2
6ca639109e95 Created wiki page through web user interface.
unC0Rr@gmail.com
parents:
diff changeset
     3
Point is defined as
6ca639109e95 Created wiki page through web user interface.
unC0Rr@gmail.com
parents:
diff changeset
     4
|| Big-endian int16 || Big-endian int16 || Byte ||
6ca639109e95 Created wiki page through web user interface.
unC0Rr@gmail.com
parents:
diff changeset
     5
|| *X* coordinate || *Y* coordinate || *flags* ||
6ca639109e95 Created wiki page through web user interface.
unC0Rr@gmail.com
parents:
diff changeset
     6
6ca639109e95 Created wiki page through web user interface.
unC0Rr@gmail.com
parents:
diff changeset
     7
where *flags* are:
6ca639109e95 Created wiki page through web user interface.
unC0Rr@gmail.com
parents:
diff changeset
     8
|| 8th bit || 7th bit || 6th-1st bits ||
6ca639109e95 Created wiki page through web user interface.
unC0Rr@gmail.com
parents:
diff changeset
     9
|| if set, this is a first point of polyline || if set, polyline is erasing || *width*(thickness) of line ||
6ca639109e95 Created wiki page through web user interface.
unC0Rr@gmail.com
parents:
diff changeset
    10
6ca639109e95 Created wiki page through web user interface.
unC0Rr@gmail.com
parents:
diff changeset
    11
where *width* defines `(width * 10) + 6` pixels width line to draw
6ca639109e95 Created wiki page through web user interface.
unC0Rr@gmail.com
parents:
diff changeset
    12
6ca639109e95 Created wiki page through web user interface.
unC0Rr@gmail.com
parents:
diff changeset
    13
Second and further points of polyline have 8th bit of *flags* unset, the content of others doesn't matter.
6ca639109e95 Created wiki page through web user interface.
unC0Rr@gmail.com
parents:
diff changeset
    14
6ca639109e95 Created wiki page through web user interface.
unC0Rr@gmail.com
parents:
diff changeset
    15
Single-point polyline defines a circle (well, that's kinda obvious).