-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathscript.js
293 lines (241 loc) · 9.63 KB
/
script.js
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
const communities = window.communities;
const countryFlags = {
// 🌍 Europe
"Belgium": "🇧🇪",
"Czech Republic": "🇨🇿",
"Denmark": "🇩🇰",
"France": "🇫🇷",
"Finland": "🇫🇮",
"Germany": "🇩🇪",
"Lithuania": "🇱🇹",
"Netherlands": "🇳🇱",
"Norway": "🇳🇴",
"Poland": "🇵🇱",
"Russia": "🇷🇺",
"Serbia": "🇷🇸",
"Spain": "🇪🇸",
"Sweden": "🇸🇪",
"Switzerland": "🇨🇭",
"United Kingdom": "🇬🇧",
"Ireland": "🇮🇪",
"Slovakia": "🇸🇰",
"Georgia": "🇬🇪",
"Croatia": "🇭🇷",
// 🌎 North America
"USA": "🇺🇸",
"Canada": "🇨🇦",
"Mexico": "🇲🇽",
// 🌏 Australia & New Zealand
"Australia": "🇦🇺",
"New Zealand": "🇳🇿",
// 🌍 South America
"Argentina": "🇦🇷",
"Brazil": "🇧🇷",
"Colombia": "🇨🇴",
"Uruguay": "🇺🇾",
// 🌍 Africa
"Kenya": "🇰🇪",
"Nigeria": "🇳🇬",
"South Africa": "🇿🇦",
"Uganda": "🇺🇬",
// 🌏 Asia
"India": "🇮🇳",
"Indonesia": "🇮🇩",
"Israel": "🇮🇱",
"Japan": "🇯🇵",
"Singapore": "🇸🇬",
"South Korea": "🇰🇷",
"Taiwan": "🇹🇼",
"Uzbekistan": "🇺🇿",
"Vietnam": "🇻🇳"
};
const continentFlags = {
"North America": "🌎",
"South America": "🌎",
"Europe": "🌍",
"Africa": "🌍",
"Asia": "🌏",
"Oceania": "🌏"
};
console.log(communities);
// Sort the communities array: first by continent, then by country, then by name
communities.sort((a, b) => {
if (a.continent !== b.continent) {
return a.continent.localeCompare(b.continent); // Sort continents alphabetically
}
if (a.country !== b.country) {
return a.country.localeCompare(b.country); // Sort countries alphabetically within continents
}
return a.name.localeCompare(b.name); // Sort communities alphabetically within countries
});
// Initialize the MapLibre map
const map = new maplibregl.Map({
container: 'map',
style: 'https://basemaps.cartocdn.com/gl/voyager-gl-style/style.json',
center: [0, 20],
zoom: 2, // Initial zoom level
});
const bounds = new maplibregl.LngLatBounds();
const ferrisIconUrl = 'ferris-crab.png';
// Function to calculate distance using the Haversine formula
function getDistance(lat1, lon1, lat2, lon2) {
const R = 6371; // Radius of Earth in km
const dLat = (lat2 - lat1) * (Math.PI / 180);
const dLon = (lon2 - lon1) * (Math.PI / 180);
const a =
Math.sin(dLat / 2) * Math.sin(dLat / 2) +
Math.cos(lat1 * (Math.PI / 180)) * Math.cos(lat2 * (Math.PI / 180)) *
Math.sin(dLon / 2) * Math.sin(dLon / 2);
const c = 2 * Math.atan2(Math.sqrt(a), Math.sqrt(1 - a));
return R * c; // Distance in km
}
// Function to find the closest community
function findClosestCommunity(userLat, userLng) {
let closestCommunity = null;
let minDistance = Infinity;
communities.forEach(community => {
const [lng, lat] = community.coordinates;
const distance = getDistance(userLat, userLng, lat, lng);
if (distance < minDistance) {
minDistance = distance;
closestCommunity = community;
}
});
return closestCommunity;
}
// Get user's location, zoom into the closest Rust community, and show a popup
if ("geolocation" in navigator) {
navigator.geolocation.getCurrentPosition(position => {
const userLat = position.coords.latitude;
const userLng = position.coords.longitude;
console.log(`User's location: ${userLat}, ${userLng}`);
const closestCommunity = findClosestCommunity(userLat, userLng);
if (closestCommunity) {
const [lng, lat] = closestCommunity.coordinates;
console.log(`Closest Rust Community: ${closestCommunity.name}`);
// Move the map to the closest Rust community
map.flyTo({
center: [lng, lat],
zoom: 10, // Zoom level for a close-up view
speed: 1.5, // Smooth transition speed
curve: 1.2 // Smoother zooming effect
});
// Show a popup on the closest community
new maplibregl.Popup({ offset: 15, closeOnClick: false })
.setLngLat([lng, lat])
.setHTML(`<strong>Closest Rust Community:</strong> <br> ${closestCommunity.name}`)
.addTo(map);
}
}, error => {
console.error("Geolocation error:", error);
});
} else {
console.error("Geolocation is not supported by this browser.");
}
communities.forEach(community => {
const [lng, lat] = community.coordinates;
if (lat < -90 || lat > 90 || lng < -180 || lng > 180) {
console.error(`Skipping ${community.name} due to invalid coordinates: [${lng}, ${lat}]`);
return;
}
const marker = new maplibregl.Marker({
element: createMarkerElement(ferrisIconUrl),
})
.setLngLat([lng, lat])
.addTo(map);
// Add click event to show details in sidebar when clicking on a marker
marker.getElement().addEventListener('click', function() {
const communityItem = document.querySelector(`[data-name="${community.name}"]`);
if (communityItem) {
updateSidebar(community, communityItem);
// Scroll to the selected community smoothly
communityItem.scrollIntoView({ behavior: "smooth", block: "center" });
}
});
bounds.extend([lng, lat]);
// Add community to sidebar
addCommunityToSidebar(community);
});
map.fitBounds(bounds, { padding: 50 });
function createMarkerElement(iconUrl) {
const element = document.createElement('div');
element.className = 'marker';
const img = document.createElement('img');
img.src = iconUrl;
img.alt = "Ferris Crab Icon";
img.style.width = '34px';
img.style.height = '26px';
img.style.cursor = 'pointer';
element.appendChild(img);
return element;
}
function updateSidebar(community, communityItem) {
// Remove any existing community details before adding new ones
document.querySelectorAll(".community-details").forEach(el => el.remove());
// Store original community name to restore later
const originalText = communityItem.textContent;
communityItem.textContent = ""; // Remove text but keep it clickable
// Create a new details container
const detailsDiv = document.createElement("div");
detailsDiv.classList.add("community-details");
// Ensure only "Visit Website" is a link
detailsDiv.innerHTML = `
<div class="community-box">
<h3 class="community-title">${community.name}</h3>
<p class="community-description">${community.description}</p>
<a class="community-link" href="${community.link}" target="_blank">Visit Website</a>
</div>
`;
// Insert the details **in place of the clicked item**
communityItem.appendChild(detailsDiv);
// Restore the community name when clicking outside
function hideDetails(event) {
if (!detailsDiv.contains(event.target)) {
detailsDiv.remove(); // Remove the details box
communityItem.textContent = originalText; // Restore the sidebar name
document.removeEventListener("click", hideDetails); // Clean up event listener
}
}
// Add event listener to close details when clicking outside
setTimeout(() => {
document.addEventListener("click", hideDetails);
}, 100); // Delay to prevent immediate closing when clicking the item
}
function addCommunityToSidebar(community) {
const sidebar = document.getElementById("community-list");
// Get the flag for the continent and country, default to empty if not found
const continentFlag = continentFlags[community.continent] || "";
const countryFlag = countryFlags[community.country] || "";
// Check if the continent section already exists
let continentSection = document.querySelector(`[data-continent="${community.continent}"]`);
if (!continentSection) {
continentSection = document.createElement("div");
continentSection.classList.add("continent-section");
continentSection.setAttribute("data-continent", community.continent);
continentSection.innerHTML = `<h2 class="continent-title">${continentFlag} ${community.continent}</h2>`;
sidebar.appendChild(continentSection);
}
// Check if the country section already exists within this continent
let countrySection = continentSection.querySelector(`[data-country="${community.country}"]`);
if (!countrySection) {
countrySection = document.createElement("div");
countrySection.classList.add("country-section");
countrySection.setAttribute("data-country", community.country);
countrySection.innerHTML = `<h4 class="country-title">${countryFlag} ${community.country}</h4>`;
continentSection.appendChild(countrySection);
}
// Check if this city already exists in the sidebar to prevent duplicate names
if (document.querySelector(`[data-name="${community.name}"]`)) {
console.error(`Duplicate entry detected in sidebar: ${community.name}. Skipping.`);
return;
}
// Create the community item
const communityItem = document.createElement("p");
communityItem.classList.add("community-item");
communityItem.textContent = community.name;
communityItem.setAttribute("data-name", community.name);
communityItem.addEventListener("click", function() {
updateSidebar(community, communityItem);
});
countrySection.appendChild(communityItem);
}