forked from PriyaGhosal/BuddyTrail
-
Notifications
You must be signed in to change notification settings - Fork 0
/
script.js
503 lines (407 loc) · 18.8 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
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
// // Get the toggle button and the body element
// const themeToggle = document.getElementById('theme-toggle');
// const bodyElement = document.body;
// // Function to update the button text
// function updateButtonText(isDarkMode) {
// themeToggle.textContent = isDarkMode ? 'Switch to Bright Mode' : 'Switch to Dark Mode';
// }
// // Check if the user has a preferred theme
// const userPrefersDark = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches;
// if (userPrefersDark) {
// bodyElement.classList.add('dark-mode');
// updateButtonText(true);
// }
// // Toggle the theme on button click
// themeToggle.addEventListener('click', () => {
// const isDarkMode = bodyElement.classList.toggle('dark-mode');
// updateButtonText(isDarkMode);
// // Save the user's preference in localStorage
// localStorage.setItem('theme', isDarkMode ? 'dark' : 'bright');
// });
// // Apply the saved theme on page load
// const savedTheme = localStorage.getItem('theme');
// if (savedTheme) {
// const isDarkMode = savedTheme === 'dark';
// bodyElement.classList.toggle('dark-mode', isDarkMode);
// updateButtonText(isDarkMode);
// }
// function initMap() {
// // Initialize the map centered around India
// var map = new google.maps.Map(document.getElementById('map'), {
// zoom: 5, // Zoom level to cover most of India
// center: {lat: 20.5937, lng: 78.9629} // Center of India (lat, lng)
// });
// // Delhi marker
// var delhi = new google.maps.Marker({
// position: {lat: 28.6139, lng: 77.2090},
// map: map,
// title: 'Delhi, India'
// });
// var delhiInfo = new google.maps.InfoWindow({
// content: '<h3>Delhi</h3><p>Capital of India, known for its rich history and monuments.</p>'
// });
// delhi.addListener('click', function() {
// delhiInfo.open(map, delhi);
// });
// // Mumbai marker
// var mumbai = new google.maps.Marker({
// position: {lat: 19.0760, lng: 72.8777},
// map: map,
// title: 'Mumbai, India'
// });
// var mumbaiInfo = new google.maps.InfoWindow({
// content: '<h3>Mumbai</h3><p>The financial capital of India, famous for Bollywood.</p>'
// });
// mumbai.addListener('click', function() {
// mumbaiInfo.open(map, mumbai);
// });
// // Jaipur marker
// var jaipur = new google.maps.Marker({
// position: {lat: 26.9124, lng: 75.7873},
// map: map,
// title: 'Jaipur, India'
// });
// var jaipurInfo = new google.maps.InfoWindow({
// content: '<h3>Jaipur</h3><p>The Pink City, known for its palaces and forts.</p>'
// });
// jaipur.addListener('click', function() {
// jaipurInfo.open(map, jaipur);
// });
// // Goa marker
// var goa = new google.maps.Marker({
// position: {lat: 15.2993, lng: 74.1240},
// map: map,
// title: 'Goa, India'
// });
// var goaInfo = new google.maps.InfoWindow({
// content: '<h3>Goa</h3><p>Famous for its beaches, nightlife, and Portuguese heritage.</p>'
// });
// goa.addListener('click', function() {
// goaInfo.open(map, goa);
// });
// // Kolkata marker
// var kolkata = new google.maps.Marker({
// position: {lat: 22.5726, lng: 88.3639},
// map: map,
// title: 'Kolkata, India'
// });
// var kolkataInfo = new google.maps.InfoWindow({
// content: '<h3>Kolkata</h3><p>Known for its colonial architecture, art galleries, and cultural festivals.</p>'
// });
// kolkata.addListener('click', function() {
// kolkataInfo.open(map, kolkata);
// });
// // Jammu & Kashmir marker
// var jammuKashmir = new google.maps.Marker({
// position: {lat: 34.0837, lng: 74.7973},
// map: map,
// title: 'Jammu & Kashmir, India'
// });
// var jammuKashmirInfo = new google.maps.InfoWindow({
// content: '<h3>Jammu & Kashmir</h3><p>Famous for its stunning landscapes and beautiful valleys.</p>'
// });
// jammuKashmir.addListener('click', function() {
// jammuKashmirInfo.open(map, jammuKashmir);
// });
// // Kerala marker
// var kerala = new google.maps.Marker({
// position: {lat: 10.8505, lng: 76.2711},
// map: map,
// title: 'Kerala, India'
// });
// var keralaInfo = new google.maps.InfoWindow({
// content: '<h3>Kerala</h3><p>Known as "God\'s Own Country," famous for its backwaters and lush greenery.</p>'
// });
// kerala.addListener('click', function() {
// keralaInfo.open(map, kerala);
// });
// // Odisha marker
// var odisha = new google.maps.Marker({
// position: {lat: 20.9517, lng: 85.0985},
// map: map,
// title: 'Odisha, India'
// });
// var odishaInfo = new google.maps.InfoWindow({
// content: '<h3>Odisha</h3><p>Known for its ancient temples and cultural heritage.</p>'
// });
// odisha.addListener('click', function() {
// odishaInfo.open(map, odisha);
// });
// // Gujarat marker
// var gujarat = new google.maps.Marker({
// position: {lat: 22.2587, lng: 71.1924},
// map: map,
// title: 'Gujarat, India'
// });
// var gujaratInfo = new google.maps.InfoWindow({
// content: '<h3>Gujarat</h3><p>Known for its diverse culture, vibrant festivals, and historical sites.</p>'
// });
// gujarat.addListener('click', function() {
// gujaratInfo.open(map, gujarat);
// });
// // Another Indian Place (e.g., Rishikesh)
// var rishikesh = new google.maps.Marker({
// position: {lat: 30.0869, lng: 78.2676},
// map: map,
// title: 'Rishikesh, India'
// });
// var rishikeshInfo = new google.maps.InfoWindow({
// content: '<h3>Rishikesh</h3><p>Known as the Yoga Capital of the World and for its spiritual significance.</p>'
// });
// rishikesh.addListener('click', function() {
// rishikeshInfo.open(map, rishikesh);
// });
// // Add markers for international destinations
// // Dubai marker
// var dubai = new google.maps.Marker({
// position: {lat: 25.276987, lng: 55.296249},
// map: map,
// title: 'Dubai, UAE'
// });
// var dubaiInfo = new google.maps.InfoWindow({
// content: '<h3>Dubai</h3><p>Known for its modern architecture, luxury shopping, and vibrant nightlife.</p>'
// });
// dubai.addListener('click', function() {
// dubaiInfo.open(map, dubai);
// });
// // Paris marker
// var paris = new google.maps.Marker({
// position: {lat: 48.8566, lng: 2.3522},
// map: map,
// title: 'Paris, France'
// });
// var parisInfo = new google.maps.InfoWindow({
// content: '<h3>Paris</h3><p>The City of Light, famous for its art, fashion, and the iconic Eiffel Tower.</p>'
// });
// paris.addListener('click', function() {
// parisInfo.open(map, paris);
// });
// // New York marker
// var newYork = new google.maps.Marker({
// position: {lat: 40.7128, lng: -74.0060},
// map: map,
// title: 'New York, USA'
// });
// var newYorkInfo = new google.maps.InfoWindow({
// content: '<h3>New York</h3><p>The Big Apple, known for its skyscrapers, Broadway, and Central Park.</p>'
// });
// newYork.addListener('click', function() {
// newYorkInfo.open
// newYorkInfo.open(map, newYork);
// });
// // London marker
// var london = new google.maps.Marker({
// position: {lat: 51.5074, lng: -0.1278},
// map: map,
// title: 'London, UK'
// });
// var londonInfo = new google.maps.InfoWindow({
// content: '<h3>London</h3><p>Known for its history, culture, and landmarks like Big Ben and the London Eye.</p>'
// });
// london.addListener('click', function() {
// londonInfo.open(map, london);
// });
// // Bali marker
// var bali = new google.maps.Marker({
// position: {lat: -8.3405, lng: 115.0920},
// map: map,
// title: 'Bali, Indonesia'
// });
// var baliInfo = new google.maps.InfoWindow({
// content: '<h3>Bali</h3><p>A tropical paradise known for its beaches, temples, and vibrant culture.</p>'
// });
// bali.addListener('click', function() {
// baliInfo.open(map, bali);
// });
// // Singapore marker
// var singapore = new google.maps.Marker({
// position: {lat: 1.3521, lng: 103.8198},
// map: map,
// title: 'Singapore'
// });
// var singaporeInfo = new google.maps.InfoWindow({
// content: '<h3>Singapore</h3><p>A global financial hub known for its cleanliness, Marina Bay Sands, and the Merlion.</p>'
// });
// singapore.addListener('click', function() {
// singaporeInfo.open(map, singapore);
// });
// // Sydney marker
// var sydney = new google.maps.Marker({
// position: {lat: -33.8688, lng: 151.2093},
// map: map,
// title: 'Sydney, Australia'
// });
// var sydneyInfo = new google.maps.InfoWindow({
// content: '<h3>Sydney</h3><p>Famous for the Sydney Opera House, Harbour Bridge, and beautiful beaches.</p>'
// });
// sydney.addListener('click', function() {
// sydneyInfo.open(map, sydney);
// });
// // Tokyo marker
// var tokyo = new google.maps.Marker({
// position: {lat: 35.6762, lng: 139.6503},
// map: map,
// title: 'Tokyo, Japan'
// });
// var tokyoInfo = new google.maps.InfoWindow({
// content: '<h3>Tokyo</h3><p>A bustling metropolis known for its skyscrapers, shopping, and cherry blossoms.</p>'
// });
// tokyo.addListener('click', function() {
// tokyoInfo.open(map, tokyo);
// });
// }
document.getElementById('postForm').addEventListener('submit', function (e) {
e.preventDefault();
const postContent = document.getElementById('postContent').value;
if (postContent.trim() === '') return;
const postContainer = document.getElementById('posts');
const newPost = document.createElement('div');
newPost.classList.add('post');
newPost.textContent = postContent;
postContainer.appendChild(newPost);
document.getElementById('postContent').value = ''; // Clear the textarea
});
const fileInput = document.getElementById('file-input');
const uploadForm = document.getElementById('upload-form');
const contentList = document.getElementById('content-list');
uploadForm.addEventListener('submit', async (event) => {
event.preventDefault();
const file = fileInput.files[0];
if (!file) {
alert('Please select a file to upload.');
return;
}
const formData = new FormData();
formData.append('file', file);
try {
const response = await fetch('/upload', {
method: 'POST',
body: formData
});
if (!response.ok) {
throw new Error('Error uploading file: ' + response.statusText);
}
const data = await response.json();
console.log('File uploaded:', data.filename);
// Update content list with the new file
const listItem = document.createElement('li');
listItem.textContent = data.filename;
contentList.appendChild(listItem);
} catch (error) {
console.error('Error uploading file:', error);
alert('An error occurred while uploading the file.');
}
});
window.addEventListener("scroll", function () {
let navbar = document.getElementById("main-head");
if (window.scrollY > 100) navbar.classList.add("shadow");
else navbar.classList.remove("shadow");
});
function initMap() {
var map = new google.maps.Map(document.getElementById('map'), {
zoom: 2,
center: {lat: 20.5937, lng: 78.9629}
});
var destinations = [
{lat: 28.6139, lng: 77.2090, title: 'Delhi, India', content: '<h3>Delhi</h3><p>Capital of India, known for its rich history and monuments.</p>'},
{lat: 19.0760, lng: 72.8777, title: 'Mumbai, India', content: '<h3>Mumbai</h3><p>The financial capital of India, famous for Bollywood.</p>'},
{lat: 26.9124, lng: 75.7873, title: 'Jaipur, India', content: '<h3>Jaipur</h3><p>The Pink City, known for its palaces and forts.</p>'},
{lat: 15.2993, lng: 74.1240, title: 'Goa, India', content: '<h3>Goa</h3><p>Famous for its beaches, nightlife, and Portuguese heritage.</p>'},
{lat: 22.5726, lng: 88.3639, title: 'Kolkata, India', content: '<h3>Kolkata</h3><p>Known for its colonial architecture, art galleries, and cultural festivals.</p>'},
{lat: 34.0837, lng: 74.7973, title: 'Jammu & Kashmir, India', content: '<h3>Jammu & Kashmir</h3><p>Famous for its stunning landscapes and beautiful valleys.</p>'},
{lat: 10.8505, lng: 76.2711, title: 'Kerala, India', content: '<h3>Kerala</h3><p>Known as "God\'s Own Country," famous for its backwaters and lush greenery.</p>'},
{lat: 20.9517, lng: 85.0985, title: 'Odisha, India', content: '<h3>Odisha</h3><p>Known for its ancient temples and cultural heritage.</p>'},
{lat: 22.2587, lng: 71.1924, title: 'Gujarat, India', content: '<h3>Gujarat</h3><p>Known for its diverse culture, vibrant festivals, and historical sites.</p>'},
{lat: 25.276987, lng: 55.296249, title: 'Dubai, UAE', content: '<h3>Dubai</h3><p>Known for its modern architecture, luxury shopping, and vibrant nightlife.</p>'},
{lat: 48.8566, lng: 2.3522, title: 'Paris, France', content: '<h3>Paris</h3><p>The City of Light, famous for its art, fashion, and the iconic Eiffel Tower.</p>'},
{lat: 40.7128, lng: -74.0060, title: 'New York, USA', content: '<h3>New York</h3><p>The Big Apple, known for its skyscrapers, Broadway, and Central Park.</p>'},
{lat: 51.5074, lng: -0.1278, title: 'London, UK', content: '<h3>London</h3><p>Known for its history, culture, and landmarks like Big Ben and the London Eye.</p>'},
{lat: -8.3405, lng: 115.0920, title: 'Bali, Indonesia', content: '<h3>Bali</h3><p>A tropical paradise known for its beaches, temples, and vibrant culture.</p>'},
{lat: 1.3521, lng: 103.8198, title: 'Singapore', content: '<h3>Singapore</h3><p>A global financial hub known for its cleanliness, Marina Bay Sands, and the Merlion.</p>'},
{lat: -33.8688, lng: 151.2093, title: 'Sydney, Australia', content: '<h3>Sydney</h3><p>Famous for the Sydney Opera House, Harbour Bridge, and beautiful beaches.</p>'},
{lat: 35.6762, lng: 139.6503, title: 'Tokyo, Japan', content: '<h3>Tokyo</h3><p>A bustling metropolis known for its skyscrapers, shopping, and cherry blossoms.</p>'}
];
destinations.forEach(function(destination) {
var marker = new google.maps.Marker({
position: {lat: destination.lat, lng: destination.lng},
map: map,
title: destination.title
});
var infoWindow = new google.maps.InfoWindow({
content: destination.content
});
marker.addListener('click', function() {
infoWindow.open(map, marker);
});
});
}
// Toggle dark and bright mode
// modeToggle.addEventListener('click', function() {
// console.log('Toggle clicked'); // Log when the button is clicked
// document.body.classList.toggle('dark-mode');
// document.body.classList.toggle('light-mode');
// if (document.body.classList.contains('dark-mode')) {
// console.log('Switching to dark mode');
// sunIcon.style.display = 'none'; // Hide sun icon
// moonIcon.style.display = 'inline-block'; // Show moon icon
// localStorage.setItem('theme', 'dark');
// } else {
// console.log('Switching to light mode');
// sunIcon.style.display = 'inline-block'; // Show sun icon
// moonIcon.style.display = 'none'; // Hide moon icon
// localStorage.setItem('theme', 'light');
// }
// });
document.getElementById('contactForm').addEventListener('submit', function(e) {
e.preventDefault();
alert('Thank you for your message! We will get back to you soon.');
this.reset();
});
// discount pop_up
document.addEventListener('DOMContentLoaded', function() {
// Show the popup after a slight delay
setTimeout(function() {
document.getElementById('dealsPopup').style.display = 'flex';
}, 1000); // Adjust the delay as needed (1000 ms = 1 second)
// Close the popup when the close button is clicked
document.getElementById('closePopup').addEventListener('click', function() {
document.getElementById('dealsPopup').style.display = 'none';
});
// Close the popup when the user clicks anywhere outside of the popup content
window.addEventListener('click', function(event) {
if (event.target === document.getElementById('dealsPopup')) {
document.getElementById('dealsPopup').style.display = 'none';
}
});
});
// adaptive background
const modeToggle = document.getElementById('modeToggle');
const body = document.body;
modeToggle.addEventListener('click', () => {
body.classList.toggle('dark-mode');
body.classList.toggle('light-mode');
// Toggle the icon
if (body.classList.contains('dark-mode')) {
modeToggle.innerHTML = '<span class="sun-icon"><img src="crescent-moon.png"></span>';
} else {
modeToggle.innerHTML = '<span class="sun-icon glow"><img src="day-mode.png"></span>';
}
});
// google translator
document.getElementById('languageToggle').addEventListener('click', function() {
var translateElement = document.getElementById('google_translate_element');
// Toggle visibility of the Google Translate element
if (translateElement.style.display === 'none' || translateElement.style.display === '') {
translateElement.style.display = 'block';
googleTranslateElementInit(); // Ensure it's initialized
} else {
translateElement.style.display = 'none';
}
});
function googleTranslateElementInit() {
new google.translate.TranslateElement({
pageLanguage: 'en',
includedLanguages: 'en,es,fr,de,it,pt,ja,zh-CN,hi,bn,ml,te,ta,gu,kn,or',
layout: google.translate.TranslateElement.InlineLayout.SIMPLE
}, 'google_translate_element');
}