खास जानकारी
इस ट्यूटोरियल में, Firebase ऐप्लिकेशन प्लैटफ़ॉर्म का इस्तेमाल करके इंटरैक्टिव मैप बनाने का तरीका बताया गया है. हीटमैप बनाने के लिए, नीचे दिए गए मैप पर अलग-अलग जगहों पर क्लिक करें.
नीचे दिए गए सेक्शन में, वह पूरा कोड दिखता है जिसकी ज़रूरत इस ट्यूटोरियल में मैप बनाने के लिए होती है.
/** * Firebase config block. */ var config = { apiKey: 'AIzaSyDX-tgWqPmTme8lqlFn2hIsqwxGL6FYPBY', authDomain: 'maps-docs-team.firebaseapp.com', databaseURL: 'https://maps-docs-team.firebaseio.com', projectId: 'maps-docs-team', storageBucket: 'maps-docs-team.appspot.com', messagingSenderId: '285779793579' }; firebase.initializeApp(config); /** * Data object to be written to Firebase. */ var data = {sender: null, timestamp: null, lat: null, lng: null}; function makeInfoBox(controlDiv, map) { // Set CSS for the control border. var controlUI = document.createElement('div'); controlUI.style.boxShadow = 'rgba(0, 0, 0, 0.298039) 0px 1px 4px -1px'; controlUI.style.backgroundColor = '#fff'; controlUI.style.border = '2px solid #fff'; controlUI.style.borderRadius = '2px'; controlUI.style.marginBottom = '22px'; controlUI.style.marginTop = '10px'; controlUI.style.textAlign = 'center'; controlDiv.appendChild(controlUI); // Set CSS for the control interior. var controlText = document.createElement('div'); controlText.style.color = 'rgb(25,25,25)'; controlText.style.fontFamily = 'Roboto,Arial,sans-serif'; controlText.style.fontSize = '100%'; controlText.style.padding = '6px'; controlText.textContent = 'The map shows all clicks made in the last 10 minutes.'; controlUI.appendChild(controlText); } /** * Starting point for running the program. Authenticates the user. * @param {function()} onAuthSuccess - Called when authentication succeeds. */ function initAuthentication(onAuthSuccess) { firebase.auth().signInAnonymously().catch(function(error) { console.log(error.code + ', ' + error.message); }, {remember: 'sessionOnly'}); firebase.auth().onAuthStateChanged(function(user) { if (user) { data.sender = user.uid; onAuthSuccess(); } else { // User is signed out. } }); } /** * Creates a map object with a click listener and a heatmap. */ function initMap() { var map = new google.maps.Map(document.getElementById('map'), { center: {lat: 0, lng: 0}, zoom: 3, styles: [{ featureType: 'poi', stylers: [{ visibility: 'off' }] // Turn off POI. }, { featureType: 'transit.station', stylers: [{ visibility: 'off' }] // Turn off bus, train stations etc. }], disableDoubleClickZoom: true, streetViewControl: false, }); // Create the DIV to hold the control and call the makeInfoBox() constructor // passing in this DIV. var infoBoxDiv = document.createElement('div'); makeInfoBox(infoBoxDiv, map); map.controls[google.maps.ControlPosition.TOP_CENTER].push(infoBoxDiv); // Listen for clicks and add the location of the click to firebase. map.addListener('click', function(e) { data.lat = e.latLng.lat(); data.lng = e.latLng.lng(); addToFirebase(data); }); // Create a heatmap. var heatmap = new google.maps.visualization.HeatmapLayer({ data: [], map: map, radius: 16 }); initAuthentication(initFirebase.bind(undefined, heatmap)); } /** * Set up a Firebase with deletion on clicks older than expiryMs * @param {!google.maps.visualization.HeatmapLayer} heatmap The heatmap to */ function initFirebase(heatmap) { // 10 minutes before current time. var startTime = new Date().getTime() - (60 * 10 * 1000); // Reference to the clicks in Firebase. var clicks = firebase.database().ref('clicks'); // Listen for clicks and add them to the heatmap. clicks.orderByChild('timestamp').startAt(startTime).on('child_added', function(snapshot) { // Get that click from firebase. var newPosition = snapshot.val(); var point = new google.maps.LatLng(newPosition.lat, newPosition.lng); var elapsedMs = Date.now() - newPosition.timestamp; // Add the point to the heatmap. heatmap.getData().push(point); // Request entries older than expiry time (10 minutes). var expiryMs = Math.max(60 * 10 * 1000 - elapsedMs, 0); // Set client timeout to remove the point after a certain time. window.setTimeout(function() { // Delete the old point from the database. snapshot.ref.remove(); }, expiryMs); } ); // Remove old data from the heatmap when a point is removed from firebase. clicks.on('child_removed', function(snapshot, prevChildKey) { var heatmapData = heatmap.getData(); var i = 0; while (snapshot.val().lat != heatmapData.getAt(i).lat() || snapshot.val().lng != heatmapData.getAt(i).lng()) { i++; } heatmapData.removeAt(i); }); } /** * Updates the last_message/ path with the current timestamp. * @param {function(Date)} addClick After the last message timestamp has been updated, * this function is called with the current timestamp to add the * click to the firebase. */ function getTimestamp(addClick) { // Reference to location for saving the last click time. var ref = firebase.database().ref('last_message/' + data.sender); ref.onDisconnect().remove(); // Delete reference from firebase on disconnect. // Set value to timestamp. ref.set(firebase.database.ServerValue.TIMESTAMP, function(err) { if (err) { // Write to last message was unsuccessful. console.log(err); } else { // Write to last message was successful. ref.once('value', function(snap) { addClick(snap.val()); // Add click with same timestamp. }, function(err) { console.warn(err); }); } }); } /** * Adds a click to firebase. * @param {Object} data The data to be added to firebase. * It contains the lat, lng, sender and timestamp. */ function addToFirebase(data) { getTimestamp(function(timestamp) { // Add the new timestamp to the record data. data.timestamp = timestamp; var ref = firebase.database().ref('clicks').push(data, function(err) { if (err) { // Data was not written to firebase. console.warn(err); } }); }); }
<div id="map"></div>
/* Always set the map height explicitly to define the size of the div * element that contains the map. */ #map { height: 100%; } /* Optional: Makes the sample page fill the window. */ html, body { height: 100%; margin: 0; padding: 0; }
<!-- Replace the value of the key parameter with your own API key. --> <script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyCkUOdZ5y7hMm0yrcCQoCvLwzdM6M8s5qk&libraries=visualization&callback=initMap" defer></script> <script src="https://www.gstatic.com/firebasejs/5.3.0/firebase.js"></script>
खुद आज़माएं
JSFiddle में इस कोड को आज़माने के लिए, कोड विंडो के सबसे ऊपर दाएं कोने में मौजूद <>
आइकॉन पर क्लिक करें.
<!DOCTYPE html>
<html>
<head>
<style>
/* Always set the map height explicitly to define the size of the div
* element that contains the map. */
#map {
height: 100%;
}
/* Optional: Makes the sample page fill the window. */
html, body {
height: 100%;
margin: 0;
padding: 0;
}
</style>
</head>
<body>
<div id="map"></div>
<script src="https://www.gstatic.com/firebasejs/5.3.0/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/5.3.0/firebase-auth.js"></script>
<script src="https://www.gstatic.com/firebasejs/5.3.0/firebase-database.js"></script>
<script>
/**
* Firebase config block.
*/
var config = {
apiKey: 'AIzaSyDX-tgWqPmTme8lqlFn2hIsqwxGL6FYPBY',
authDomain: 'maps-docs-team.firebaseapp.com',
databaseURL: 'https://maps-docs-team.firebaseio.com',
projectId: 'maps-docs-team',
storageBucket: 'maps-docs-team.appspot.com',
messagingSenderId: '285779793579'
};
firebase.initializeApp(config);
/**
* Data object to be written to Firebase.
*/
var data = {sender: null, timestamp: null, lat: null, lng: null};
function makeInfoBox(controlDiv, map) {
// Set CSS for the control border.
var controlUI = document.createElement('div');
controlUI.style.boxShadow = 'rgba(0, 0, 0, 0.298039) 0px 1px 4px -1px';
controlUI.style.backgroundColor = '#fff';
controlUI.style.border = '2px solid #fff';
controlUI.style.borderRadius = '2px';
controlUI.style.marginBottom = '22px';
controlUI.style.marginTop = '10px';
controlUI.style.textAlign = 'center';
controlDiv.appendChild(controlUI);
// Set CSS for the control interior.
var controlText = document.createElement('div');
controlText.style.color = 'rgb(25,25,25)';
controlText.style.fontFamily = 'Roboto,Arial,sans-serif';
controlText.style.fontSize = '100%';
controlText.style.padding = '6px';
controlText.textContent =
'The map shows all clicks made in the last 10 minutes.';
controlUI.appendChild(controlText);
}
/**
* Starting point for running the program. Authenticates the user.
* @param {function()} onAuthSuccess - Called when authentication succeeds.
*/
function initAuthentication(onAuthSuccess) {
firebase.auth().signInAnonymously().catch(function(error) {
console.log(error.code + ', ' + error.message);
}, {remember: 'sessionOnly'});
firebase.auth().onAuthStateChanged(function(user) {
if (user) {
data.sender = user.uid;
onAuthSuccess();
} else {
// User is signed out.
}
});
}
/**
* Creates a map object with a click listener and a heatmap.
*/
function initMap() {
var map = new google.maps.Map(document.getElementById('map'), {
center: {lat: 0, lng: 0},
zoom: 3,
styles: [{
featureType: 'poi',
stylers: [{ visibility: 'off' }] // Turn off POI.
},
{
featureType: 'transit.station',
stylers: [{ visibility: 'off' }] // Turn off bus, train stations etc.
}],
disableDoubleClickZoom: true,
streetViewControl: false,
});
// Create the DIV to hold the control and call the makeInfoBox() constructor
// passing in this DIV.
var infoBoxDiv = document.createElement('div');
makeInfoBox(infoBoxDiv, map);
map.controls[google.maps.ControlPosition.TOP_CENTER].push(infoBoxDiv);
// Listen for clicks and add the location of the click to firebase.
map.addListener('click', function(e) {
data.lat = e.latLng.lat();
data.lng = e.latLng.lng();
addToFirebase(data);
});
// Create a heatmap.
var heatmap = new google.maps.visualization.HeatmapLayer({
data: [],
map: map,
radius: 16
});
initAuthentication(initFirebase.bind(undefined, heatmap));
}
/**
* Set up a Firebase with deletion on clicks older than expiryMs
* @param {!google.maps.visualization.HeatmapLayer} heatmap The heatmap to
*/
function initFirebase(heatmap) {
// 10 minutes before current time.
var startTime = new Date().getTime() - (60 * 10 * 1000);
// Reference to the clicks in Firebase.
var clicks = firebase.database().ref('clicks');
// Listen for clicks and add them to the heatmap.
clicks.orderByChild('timestamp').startAt(startTime).on('child_added',
function(snapshot) {
// Get that click from firebase.
var newPosition = snapshot.val();
var point = new google.maps.LatLng(newPosition.lat, newPosition.lng);
var elapsedMs = Date.now() - newPosition.timestamp;
// Add the point to the heatmap.
heatmap.getData().push(point);
// Request entries older than expiry time (10 minutes).
var expiryMs = Math.max(60 * 10 * 1000 - elapsedMs, 0);
// Set client timeout to remove the point after a certain time.
window.setTimeout(function() {
// Delete the old point from the database.
snapshot.ref.remove();
}, expiryMs);
}
);
// Remove old data from the heatmap when a point is removed from firebase.
clicks.on('child_removed', function(snapshot, prevChildKey) {
var heatmapData = heatmap.getData();
var i = 0;
while (snapshot.val().lat != heatmapData.getAt(i).lat()
|| snapshot.val().lng != heatmapData.getAt(i).lng()) {
i++;
}
heatmapData.removeAt(i);
});
}
/**
* Updates the last_message/ path with the current timestamp.
* @param {function(Date)} addClick After the last message timestamp has been updated,
* this function is called with the current timestamp to add the
* click to the firebase.
*/
function getTimestamp(addClick) {
// Reference to location for saving the last click time.
var ref = firebase.database().ref('last_message/' + data.sender);
ref.onDisconnect().remove(); // Delete reference from firebase on disconnect.
// Set value to timestamp.
ref.set(firebase.database.ServerValue.TIMESTAMP, function(err) {
if (err) { // Write to last message was unsuccessful.
console.log(err);
} else { // Write to last message was successful.
ref.once('value', function(snap) {
addClick(snap.val()); // Add click with same timestamp.
}, function(err) {
console.warn(err);
});
}
});
}
/**
* Adds a click to firebase.
* @param {Object} data The data to be added to firebase.
* It contains the lat, lng, sender and timestamp.
*/
function addToFirebase(data) {
getTimestamp(function(timestamp) {
// Add the new timestamp to the record data.
data.timestamp = timestamp;
var ref = firebase.database().ref('clicks').push(data, function(err) {
if (err) { // Data was not written to firebase.
console.warn(err);
}
});
});
}
</script>
<script defer
src="https://maps.googleapis.com/maps/api/js?key=YOUR_API_KEY&libraries=visualization&callback=initMap">
</script>
</body>
</html>
शुरू करना
इस ट्यूटोरियल में दिए गए कोड का इस्तेमाल करके, Firebase मैप का अपना वर्शन बनाया जा सकता है. ऐसा करने के लिए, टेक्स्ट एडिटर में एक नई फ़ाइल बनाएं और उसे index.html
के तौर पर सेव करें.
इस फ़ाइल में जोड़ा जा सकने वाला कोड समझने के लिए, नीचे दिए गए सेक्शन पढ़ें.
बुनियादी मैप बनाना
इस सेक्शन में, बुनियादी मैप सेट अप करने वाले कोड के बारे में बताया गया है. यह उसी तरह का हो सकता है जिस तरह आपने Maps JavaScript API का इस्तेमाल शुरू करते समय मैप बनाए थे.
नीचे दिया गया कोड अपनी index.html
फ़ाइल में कॉपी करें. यह कोड, Maps JavaScript API को लोड करता है और मैप को फ़ुलस्क्रीन मोड में दिखाता है. यह विज़ुअलाइज़ेशन
लाइब्रेरी भी लोड करती है. इस लाइब्रेरी की ज़रूरत, ट्यूटोरियल में हीटमैप बनाने के लिए पड़ती है.
<!DOCTYPE html>
<html>
<head>
<style>
#map {
height: 100%;
}
html, body {
height: 100%;
margin: 0;
padding: 0;
}
</style>
</head>
<body>
<div id="map"></div>
<script defer
src="https://maps.googleapis.com/maps/api/js?key=YOUR_API_KEY
&libraries=visualization&callback=initMap">
</script>
<script>
// The JavaScript code that creates the Firebase map goes here.
</script>
</body>
</html>
कोड सैंपल में YOUR_API_KEY
पर क्लिक करें या एपीआई कुंजी पाने के लिए निर्देशों का पालन करें. YOUR_API_KEY
को अपने ऐप्लिकेशन की एपीआई कुंजी से बदलें.
यहां दिए गए सेक्शन में, Firebase मैप बनाने वाले JavaScript कोड के बारे में बताया गया है. कोड को कॉपी करके, firebasemap.js
फ़ाइल में सेव किया जा सकता है. साथ ही, नीचे दिए गए स्क्रिप्ट टैग के बीच में इसका रेफ़रंस दिया जा सकता है.
<script>firebasemap.js</script>
इसके अलावा, इस ट्यूटोरियल की शुरुआत में दिए गए पूरे सैंपल कोड की तरह, सीधे स्क्रिप्ट टैग में कोड डाला जा सकता है.
नीचे दिए गए कोड को firebasemap.js
फ़ाइल में जोड़ें या अपनी index.html
फ़ाइल के खाली स्क्रिप्ट टैग के बीच में जोड़ें. यह प्रोग्राम का शुरुआती बिंदु है. यह मैप ऑब्जेक्ट को शुरू करने वाला फ़ंक्शन बनाकर, प्रोग्राम को चलाता है.
function initMap() { var map = new google.maps.Map(document.getElementById('map'), { center: {lat: 0, lng: 0}, zoom: 3, styles: [{ featureType: 'poi', stylers: [{ visibility: 'off' }] // Turn off points of interest. }, { featureType: 'transit.station', stylers: [{ visibility: 'off' }] // Turn off bus stations, train stations, etc. }], disableDoubleClickZoom: true, streetViewControl: false }); }
इस क्लिक किए जा सकने वाले हीटमैप को इस्तेमाल करने में आसान बनाने के लिए, ऊपर दिए गए कोड में मैप स्टाइल का इस्तेमाल किया गया है. इससे, दिलचस्प जगहों और बस, मेट्रो वगैरह के स्टेशनों को बंद किया जा सकता है. ये स्टेशन, क्लिक करने पर जानकारी वाली विंडो दिखाते हैं. यह ज़ूम करने की सुविधा को दो बार क्लिक करने पर भी बंद कर देता है, ताकि अनजाने में ज़ूम न हो जाए. अपने मैप को स्टाइल करने के बारे में ज़्यादा जानें.
एपीआई पूरी तरह से लोड होने के बाद, नीचे दिए गए स्क्रिप्ट टैग में मौजूद कॉलबैक पैरामीटर, एचटीएमएल फ़ाइल में initMap()
फ़ंक्शन को लागू करता है.
<script defer
src="https://maps.googleapis.com/maps/api/js?key=YOUR_API_KEY
&libraries=visualization&callback=initMap">
</script>
मैप में सबसे ऊपर टेक्स्ट कंट्रोल बनाने के लिए, नीचे दिया गया कोड जोड़ें.
function makeInfoBox(controlDiv, map) { // Set CSS for the control border. var controlUI = document.createElement('div'); controlUI.style.boxShadow = 'rgba(0, 0, 0, 0.298039) 0px 1px 4px -1px'; controlUI.style.backgroundColor = '#fff'; controlUI.style.border = '2px solid #fff'; controlUI.style.borderRadius = '2px'; controlUI.style.marginBottom = '22px'; controlUI.style.marginTop = '10px'; controlUI.style.textAlign = 'center'; controlDiv.appendChild(controlUI); // Set CSS for the control interior. var controlText = document.createElement('div'); controlText.style.color = 'rgb(25,25,25)'; controlText.style.fontFamily = 'Roboto,Arial,sans-serif'; controlText.style.fontSize = '100%'; controlText.style.padding = '6px'; controlText.innerText = 'The map shows all clicks made in the last 10 minutes.'; controlUI.appendChild(controlText); }
टेक्स्ट कंट्रोल बॉक्स को लोड करने के लिए, var map
के बाद initMap
फ़ंक्शन में नीचे दिया गया कोड जोड़ें.
// Create the DIV to hold the control and call the makeInfoBox() constructor // passing in this DIV. var infoBoxDiv = document.createElement('div'); var infoBox = new makeInfoBox(infoBoxDiv, map); infoBoxDiv.index = 1; map.controls[google.maps.ControlPosition.TOP_CENTER].push(infoBoxDiv);
कोड से बनाया गया Google मैप देखने के लिए, किसी वेब ब्राउज़र में index.html
फ़ाइल खोलें.
Firebase सेट अप करना
इस ऐप्लिकेशन को सहयोगी बनाने के लिए, आपको क्लिक को किसी ऐसे बाहरी डेटाबेस में सेव करना होगा जिसे सभी उपयोगकर्ता ऐक्सेस कर सकें. Firebase रीयलटाइम डेटाबेस इस काम के लिए सही है. इसके लिए, आपको SQL की जानकारी की ज़रूरत नहीं है.
सबसे पहले, बिना किसी शुल्क के Firebase खाते के लिए साइन अप करें.
अगर Firebase आपके लिए नया है, तो आपको "मेरा पहला ऐप्लिकेशन" नाम का एक नया ऐप्लिकेशन दिखेगा. अगर कोई नया ऐप्लिकेशन बनाया जाता है, तो उसे नया नाम और firebaseIO.com
पर खत्म होने वाला कस्टम Firebase यूआरएल दिया जा सकता है. उदाहरण के लिए, अपने ऐप्लिकेशन का नाम "जैनी का Firebase मैप" और यूआरएल https://janes-firebase-map.firebaseIO.com
रखें. इस यूआरएल का इस्तेमाल करके, डेटाबेस को अपने JavaScript ऐप्लिकेशन से लिंक किया जा सकता है.
Firebase लाइब्रेरी इंपोर्ट करने के लिए, अपनी एचटीएमएल फ़ाइल के <head>
टैग के बाद, यहां दी गई लाइन जोड़ें.
<script src="www.gstatic.com/firebasejs/5.3.0/firebase.js"></script>
अपनी JavaScript फ़ाइल में यह लाइन जोड़ें:
var firebase = new Firebase("<Your Firebase URL here>");
Firebase में क्लिक डेटा सेव करना
इस सेक्शन में, मैप पर माउस क्लिक से जुड़ा डेटा Firebase में सेव करने वाले कोड के बारे में बताया गया है.
मैप पर हर माउस क्लिक के लिए, नीचे दिया गया कोड एक ग्लोबल डेटा ऑब्जेक्ट बनाता है और उसकी जानकारी को Firebase में सेव करता है. यह ऑब्जेक्ट, क्लिक के latLng और टाइमस्टैंप जैसे डेटा को रिकॉर्ड करता है. साथ ही, क्लिक करने वाले ब्राउज़र का यूनीक आईडी भी रिकॉर्ड करता है.
/** * Data object to be written to Firebase. */ var data = { sender: null, timestamp: null, lat: null, lng: null };
यहां दिया गया कोड, हर क्लिक के लिए एक यूनीक सेशन आईडी रिकॉर्ड करता है. इससे Firebase के सुरक्षा नियमों के मुताबिक, मैप पर ट्रैफ़िक की दर को कंट्रोल करने में मदद मिलती है.
/** * Starting point for running the program. Authenticates the user. * @param {function()} onAuthSuccess - Called when authentication succeeds. */ function initAuthentication(onAuthSuccess) { firebase.auth().signInAnonymously().catch(function(error) { console.log(error.code + ", " + error.message); }, {remember: 'sessionOnly'}); firebase.auth().onAuthStateChanged(function(user) { if (user) { data.sender = user.uid; onAuthSuccess(); } else { // User is signed out. } }); }
यहां दिए गए कोड का अगला सेक्शन, मैप पर क्लिक होने का पता लगाता है. इससे आपके Firebase डेटाबेस में एक 'चाइल्ड' जुड़ जाता है. ऐसा होने पर, snapshot.val()
फ़ंक्शन, एंट्री की डेटा वैल्यू पाता है और नया LatLng ऑब्जेक्ट बनाता है.
// Listen for clicks and add them to the heatmap. clicks.orderByChild('timestamp').startAt(startTime).on('child_added', function(snapshot) { var newPosition = snapshot.val(); var point = new google.maps.LatLng(newPosition.lat, newPosition.lng); heatmap.getData().push(point); } );
नीचे दिया गया कोड, Firebase को इनके लिए सेट अप करता है:
- मैप पर क्लिक की आवाज़ सुनें. क्लिक होने पर, ऐप्लिकेशन एक टाइमस्टैंप रिकॉर्ड करता है. इसके बाद, आपके Firebase डेटाबेस में एक 'चाइल्ड' जोड़ता है.
- मैप पर 10 मिनट से ज़्यादा पुराने सभी क्लिक को रीयल-टाइम में मिटाएं.
/** * Set up a Firebase with deletion on clicks older than expirySeconds * @param {!google.maps.visualization.HeatmapLayer} heatmap The heatmap to * which points are added from Firebase. */ function initFirebase(heatmap) { // 10 minutes before current time. var startTime = new Date().getTime() - (60 * 10 * 1000); // Reference to the clicks in Firebase. var clicks = firebase.database().ref('clicks'); // Listen for clicks and add them to the heatmap. clicks.orderByChild('timestamp').startAt(startTime).on('child_added', function(snapshot) { // Get that click from firebase. var newPosition = snapshot.val(); var point = new google.maps.LatLng(newPosition.lat, newPosition.lng); var elapsedMs = Date.now() - newPosition.timestamp; // Add the point to the heatmap. heatmap.getData().push(point); // Request entries older than expiry time (10 minutes). var expiryMs = Math.max(60 * 10 * 1000 - elapsed, 0); // Set client timeout to remove the point after a certain time. window.setTimeout(function() { // Delete the old point from the database. snapshot.ref.remove(); }, expiryMs); } ); // Remove old data from the heatmap when a point is removed from firebase. clicks.on('child_removed', function(snapshot, prevChildKey) { var heatmapData = heatmap.getData(); var i = 0; while (snapshot.val().lat != heatmapData.getAt(i).lat() || snapshot.val().lng != heatmapData.getAt(i).lng()) { i++; } heatmapData.removeAt(i); }); }
इस सेक्शन में मौजूद सभी JavaScript कोड को अपनी firebasemap.js
फ़ाइल में कॉपी करें.
हीटमैप बनाना
अगला चरण, एक हीटमैप दिखाना है. इससे दर्शकों को मैप पर अलग-अलग जगहों पर मिले क्लिक की संख्या के बारे में ग्राफ़िक के ज़रिए जानकारी मिलती है. ज़्यादा जानने के लिए, हीटमैप की गाइड पढ़ें.
हीटमैप बनाने के लिए, initMap()
फ़ंक्शन में नीचे दिया गया कोड जोड़ें.
// Create a heatmap. var heatmap = new google.maps.visualization.HeatmapLayer({ data: [], map: map, radius: 16 });
नीचे दिया गया कोड, initFirebase
, addToFirebase
, और getTimestamp
फ़ंक्शन को ट्रिगर करता है.
initAuthentication(initFirebase.bind(undefined, heatmap));
ध्यान दें कि हीटमैप पर क्लिक करने पर, अभी तक पॉइंट नहीं बनते. मैप पर बिंदु बनाने के लिए, आपको मैप लिसनर सेट अप करना होगा.
हीटमैप पर पॉइंट बनाना
यहां दिया गया कोड, मैप बनाने वाले कोड के बाद, initMap()
में एक लिसनर जोड़ता है. यह कोड हर क्लिक के डेटा को सुनता है,
आपके क्लिक की जगह को Firebase डेटाबेस में सेव करता है, और आपके हीटमैप पर पॉइंट दिखाता है.
// Listen for clicks and add the location of the click to firebase. map.addListener('click', function(e) { data.lat = e.latLng.lat(); data.lng = e.latLng.lng(); addToFirebase(data); });
अपने हीटमैप पर पॉइंट बनाने के लिए, मैप पर जगहों पर क्लिक करें.
अब आपके पास Firebase और Maps JavaScript API का इस्तेमाल करके, पूरी तरह से काम करने वाला रीयल-टाइम ऐप्लिकेशन है.
हीटमैप पर क्लिक करने पर, क्लिक के अक्षांश और देशांतर अब आपके Firebase डेटाबेस में दिखने चाहिए. इसे देखने के लिए, अपने Firebase खाते में लॉग इन करें और अपने ऐप्लिकेशन के डेटा टैब पर जाएं. इस स्थिति में, अगर कोई और व्यक्ति आपके मैप पर क्लिक करता है, तो आपको और उस व्यक्ति को मैप पर पॉइंट दिखेंगे. उपयोगकर्ता के पेज को बंद करने के बाद भी, क्लिक की जगह बनी रहती है. साथ मिलकर काम करने की सुविधा को रीयल-टाइम में आज़माने के लिए, पेज को दो अलग-अलग विंडो में खोलें. मार्कर, दोनों डिवाइसों पर रीयल टाइम में दिखने चाहिए.
ज़्यादा जानें
Firebase एक ऐसा ऐप्लिकेशन प्लैटफ़ॉर्म है जो डेटा को JSON के तौर पर सेव करता है और रीयल टाइम में कनेक्ट किए गए सभी क्लाइंट के साथ सिंक करता है. यह सुविधा, आपके ऐप्लिकेशन के ऑफ़लाइन होने पर भी उपलब्ध होती है. इस ट्यूटोरियल में, रीयलटाइम डेटाबेस का इस्तेमाल किया गया है.