-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
88 lines (88 loc) · 3.07 KB
/
about.html
File metadata and controls
88 lines (88 loc) · 3.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About This Project</title>
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.9.4/dist/leaflet.css" />
<style>
body {
background: #333;
color: #fff;
font-family: Arial, sans-serif;
margin: 0;
padding: 20px;
}
h1, h2, h3 {
color: #ff8800;
}
a {
color: #ff8800;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
.section {
margin-bottom: 20px;
}
.feedback {
background: #444;
padding: 15px;
border-radius: 10px;
}
.roadmap ul {
padding-left: 20px;
}
.roadmap ul li {
margin-bottom: 10px;
}
.credits ul {
list-style-type: none;
padding: 0;
}
.credits ul li {
margin-bottom: 10px;
}
</style>
</head>
<body>
<h1>About This Project</h1>
<div class="section">
<h2>Project Overview</h2>
<p>This interactive map project is designed to assist players of <strong>Arma Reforger</strong>, a game developed by Bohemia Interactive, by providing tools to plan and manage activities in-game. The map serves as a companion for strategy, navigation, and team coordination.</p>
</div>
<div class="section credits">
<h2>Credits</h2>
<ul>
<li>Game: <strong>Arma Reforger</strong> by Bohemia Interactive</li>
<li>Leaflet.js - Interactive mapping library</li>
<li>Leaflet Draw - Drawing tools for Leaflet</li>
<li>Leaflet MiniMap - Minimap integration</li>
<li>Map resources - Extracted and customized by Roberto for this project</li>
</ul>
</div>
<div class="section roadmap">
<h2>Roadmap</h2>
<ul>
<li>Version 1.0 - Core map functionality with markers</li>
<li>Version 2.0 - Advanced markers, POI search, and interactive features</li>
<li>Version 3.0 - Drawing tools, compass integration, and zoom control</li>
<li>Version 4.0 - Minimap integration and multi-map support</li>
<li>Future Plans:</li>
<ul>
<li>Mobile application for offline map planning</li>
<li>Send your own custom maps</li>
<li>Maps as tile for fast loads</li>
<li>Real-time synchronization with team members</li>
<li>Customizable themes for personalization</li>
<li>Enhanced feedback and collaboration tools</li>
</ul>
</ul>
</div>
<div class="section feedback">
<h2>Feedback</h2>
<p>We welcome your ideas and feedback to improve this project! Please send your suggestions to: <a href="mailto:sergewint3rs@gmail.com">sergewint3rs@gmail.com</a></p>
</div>
</body>
</html>