Blame

4d0447 Hargata Softworks 2025-08-05 17:23:55 1
# Vehicle Maps
2
3
## What is a Vehicle Map
4
5
A vehicle map is an image of the vehicle that has interactive clickable elements overlaid on them that will allow the users to view records that are tied to those elements via tags.
6
7
## Creating Vehicle Maps
8
9
### Useful Resources:
10
11
- [Base64-Image](https://www.base64-image.de/) for converting images to base64
12
- [Image-Map](https://www.image-map.net/) for creating coordinates
13
- [Coolors](https://coolors.co/) for generating color templates
91611a Hargata Softworks 2025-09-23 16:14:01 14
- [Vehicle Image Maps Repository](https://github.com/Zeromark30/Lubelogvehiclemap) by [Zeromark30](https://github.com/Zeromark30)
4d0447 Hargata Softworks 2025-08-05 17:23:55 15
16
### Template
17
18
```
19
{
20
"ImageLink": "",
21
"Height": 0,
22
"Width": 0,
23
"Map": [
24
{
25
"Tags": "",
26
"Coordinates": "",
174eb2 Hargata Softworks 2025-08-05 18:40:18 27
"Color": "#",
6070ec Hargata Softworks 2025-09-22 17:16:17 28
"Shape": "",
4d0447 Hargata Softworks 2025-08-05 17:23:55 29
"Opacity": 0.5
30
},
31
{
32
"Tags": "",
33
"Coordinates": "",
174eb2 Hargata Softworks 2025-08-05 18:40:18 34
"Color": "#",
6070ec Hargata Softworks 2025-09-22 17:16:17 35
"Shape": "",
4d0447 Hargata Softworks 2025-08-05 17:23:55 36
"Opacity": 0.5
37
}
38
]
39
}
40
```
299a9a Hargata Softworks 2025-08-05 17:27:43 41
42
- ImageLink refers to the Base64 encoded image, but you can also put a link in there that points to an image
43
- Height refers to the height of the image
44
- Width refers to the width of the image
45
- Map.Tags refers to the tags, separated by an empty space that the records should be filtered with
46
- Map.Coordinates refers to the coordinates of the points generated by an image map creator
47
- Map.Color refers to the color of the overlay
e229e7 Hargata Softworks 2025-09-17 14:41:01 48
- Map.Shape refers to the shape(circle or polygon, optional, defaults to polygon)
299a9a Hargata Softworks 2025-08-05 17:27:43 49
- Map.Opacity refers to the opacity of the overlay(values range from 0.0 to 1.0, 0.0 is completely transparent and 1.0 is completely opaque)
50
- Trailing Commas are not supported and must be truncated
97e09d Hargata Softworks 2025-08-05 18:37:56 51
e229e7 Hargata Softworks 2025-09-17 14:41:01 52
### Circles
53
1c7e30 Hargata Softworks 2025-09-17 14:41:48 54
Starting in version 1.5.2, the vehicle image map supports a circle shape, you must have exactly three coordinates in the following order: x, y, and radius. If you generated your coordinates using circle as the type in [Image-Map](https://www.image-map.net/) then the coordinates are automatically in that order.
e229e7 Hargata Softworks 2025-09-17 14:41:01 55
8261a5 Hargata Softworks 2025-08-18 17:05:21 56
[Sample Vehicle Map](https://github.com/hargata/lubelog_scripts/blob/main/misc/sample_vehicle_map.json)
adf655 Hargata Softworks 2025-08-21 17:32:15 57
58
[7-Minute Video Tutorial](https://www.youtube.com/watch?v=IB-HniEtSyk)