-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathdis.js
212 lines (187 loc) Β· 8.01 KB
/
dis.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
document.addEventListener('DOMContentLoaded', function() {
// Handle disaster report form submission
const disasterForm = document.getElementById('disasterForm');
disasterForm.addEventListener('submit', function(event) {
event.preventDefault();
const disasterName = document.getElementById('disasterName').value;
const location = document.getElementById('location').value;
const description = document.getElementById('description').value;
// Submit the report (you can integrate your backend logic here)
console.log('Disaster Report Submitted:', { disasterName, location, description });
alert('Disaster report submitted successfully!');
disasterForm.reset();
});
// Fetch live disaster updates
async function fetchLiveUpdates() {
try {
const response = await fetch('https://api.example.com/live-disaster-updates'); // Replace with your API endpoint
const data = await response.json();
const newsContainer = document.getElementById('news-container');
newsContainer.innerHTML = '';
data.updates.forEach(update => {
const updateElement = document.createElement('div');
updateElement.className = 'update';
updateElement.innerHTML = `
<h3>${update.title}</h3>
<p>${update.description}</p>
`;
newsContainer.appendChild(updateElement);
});
} catch (error) {
console.error('Error fetching live updates:', error);
}
}
// Initialize Google Map
window.initMap = function() {
const map = new google.maps.Map(document.getElementById('map'), {
center: { lat: 20.5937, lng: 78.9629 }, // Centered on India
zoom: 5
});
// Add a marker on click
map.addListener('click', function(event) {
placeMarker(event.latLng, map);
});
// Get precise location
if (navigator.geolocation) {
navigator.geolocation.getCurrentPosition(function(position) {
const pos = {
lat: position.coords.latitude,
lng: position.coords.longitude
};
map.setCenter(pos);
placeMarker(pos, map);
}, function() {
handleLocationError(true, map.getCenter(), map);
});
} else {
// Browser doesn't support Geolocation
handleLocationError(false, map.getCenter(), map);
}
};
function placeMarker(location, map) {
const marker = new google.maps.Marker({
position: location,
map: map
});
map.panTo(location);
}
function handleLocationError(browserHasGeolocation, pos, map) {
const infoWindow = new google.maps.InfoWindow({ map: map });
infoWindow.setPosition(pos);
infoWindow.setContent(browserHasGeolocation ?
'Error: The Geolocation service failed.' :
'Error: Your browser doesn\'t support geolocation.');
}
// Fetch live updates on page load
fetchLiveUpdates();
});
document.addEventListener("DOMContentLoaded", function () {
const alertBar = document.getElementById("alertBar");
// Sample alerts (Replace with dynamic fetching if needed)
const alerts = [
"π Earthquake detected in Tibet | 3.6 Magnitude",
"π Flood Warning in Myanmar | Stay Alert",
"π Storm approaching Afghanistan | Take Precautions",
"π Landslide risk in Uttarkashi, Uttarakhand"
];
function updateAlerts() {
alertBar.innerHTML = "";
alerts.forEach(alert => {
const alertSpan = document.createElement("span");
alertSpan.classList.add("alert-message");
alertSpan.textContent = alert;
alertBar.appendChild(alertSpan);
});
}
updateAlerts();
});
// Sample data
const mockData = {
alert: {
type: 'Flood Warning',
location: 'Downtown Area',
description: 'Rising water levels observed. Please move to higher ground.',
time: new Date().toLocaleTimeString()
},
resources: [
{ type: 'Shelter', location: 'Central High School', distance: '0.8 km' },
{ type: 'Medical', location: 'City Hospital', distance: '1.2 km' },
{ type: 'Supplies', location: 'Relief Center', distance: '1.5 km' }
],
communityStatus: {
checkedIn: 245,
total: 300
}
};
// Initialize the app
function initApp() {
updateAlert();
updateResources();
updateCommunityStatus();
// Simulate real-time updates
setInterval(updateAlert, 5000);
}
// Update alert banner
function updateAlert() {
const alertMessage = document.getElementById('alertMessage');
alertMessage.innerHTML = `
<strong>${mockData.alert.type}</strong> - ${mockData.alert.location}<br>
${mockData.alert.description}<br>
<small>Last updated: ${mockData.alert.time}</small>
`;
}
// Update resources list
function updateResources() {
const resourceList = document.getElementById('resourceList');
resourceList.innerHTML = mockData.resources.map(resource => `
<div class="resource-item">
<div>
<strong>${resource.type}</strong><br>
<small>${resource.location}</small>
</div>
<div>${resource.distance}</div>
</div>
`).join('');
}
// Update community status
function updateCommunityStatus() {
const { checkedIn, total } = mockData.communityStatus;
document.getElementById('checkedInCount').textContent = `${checkedIn}/${total}`;
document.getElementById('checkedInProgress').style.width = `${(checkedIn/total) * 100}%`;
}
// SOS function
function triggerSOS() {
alert('SOS signal sent! Emergency services have been notified.');
}
// Share location function
function shareLocation() {
if (navigator.geolocation) {
navigator.geolocation.getCurrentPosition(
position => {
alert(`Location shared!\nLat: ${position.coords.latitude}\nLong: ${position.coords.longitude}`);
},
error => {
alert('Error getting location. Please enable location services.');
}
);
} else {
alert('Geolocation is not supported by this browser.');
}
}
// Get help function
function getHelp() {
const helpTypes = ['Medical', 'Supplies', 'Evacuation', 'Other'];
const helpType = prompt(`What type of help do you need?\n${helpTypes.join(', ')}`);
if (helpType) {
alert(`Help request for ${helpType} has been registered. Help is on the way!`);
}
}
// Initialize the app when page loads
window.onload = initApp;
document.getElementById("cta-button").addEventListener("click", function() {
alert("Redirecting to volunteer opportunities...");
window.location.href = "https://www.redcross.org/volunteer"; // Replace with the actual link
});
function redirectToChat() {
window.location.href = "chatbot.html"; // Change this to your chatbot page URL
}