Tổng quan
Hướng dẫn này trình bày cách tạo bản đồ tương tác bằng nền tảng ứng dụng Firebase. Hãy thử nhấp vào các vị trí khác nhau trên bản đồ bên dưới để tạo bản đồ nhiệt.
Phần bên dưới hiển thị toàn bộ mã bạn cần để tạo bản đồ trong hướng dẫn này.
/** * 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>
Tự thử
Bạn có thể thử nghiệm mã này trong JSFiddle bằng cách nhấp vào biểu tượng <>
ở góc trên cùng bên phải của cửa sổ mã.
<!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>
Bắt đầu
Bạn có thể phát triển phiên bản bản đồ Firebase của riêng mình bằng cách sử dụng mã trong hướng dẫn này. Để bắt đầu làm việc này, hãy tạo một tệp mới trong trình soạn thảo văn bản và lưu tệp đó dưới dạng index.html
.
Hãy đọc các phần sau để hiểu mã mà bạn có thể thêm vào tệp này.
Tạo bản đồ cơ bản
Phần này giải thích mã thiết lập bản đồ cơ bản. Cách này có thể tương tự như cách bạn đã tạo bản đồ khi bắt đầu sử dụng API Maps JavaScript.
Sao chép mã dưới đây vào tệp index.html
. Mã này tải API JavaScript của Maps và hiển thị bản đồ ở chế độ toàn màn hình. Thư viện này cũng tải thư viện hình ảnh mà bạn cần sau này trong hướng dẫn để tạo bản đồ nhiệt.
<!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>
Nhấp vào YOUR_API_KEY
trong mã mẫu hoặc làm theo hướng dẫn để lấy khoá API. Thay thế YOUR_API_KEY
bằng khoá API của ứng dụng.
Các phần sau đây giải thích mã JavaScript tạo bản đồ Firebase. Bạn có thể sao chép và lưu mã trong tệp firebasemap.js
, đồng thời tham chiếu mã đó giữa các thẻ tập lệnh như bên dưới.
<script>firebasemap.js</script>
Ngoài ra, bạn có thể trực tiếp chèn mã vào các thẻ tập lệnh như trong mã mẫu đầy đủ ở đầu hướng dẫn này.
Thêm mã dưới đây vào tệp firebasemap.js
hoặc giữa các thẻ tập lệnh trống của tệp index.html
. Đây là điểm bắt đầu chạy chương trình bằng cách tạo một hàm khởi tạo đối tượng bản đồ.
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 }); }
Để giúp bạn dễ dàng sử dụng bản đồ nhiệt có thể nhấp này, mã ở trên sử dụng kiểu bản đồ để tắt các điểm yêu thích và trạm phương tiện công cộng (hiển thị cửa sổ thông tin khi được nhấp vào). Tính năng này cũng tắt tính năng thu phóng khi nhấp đúp để tránh vô tình thu phóng. Hãy đọc thêm về cách thiết kế bản đồ.
Sau khi API tải xong, tham số gọi lại trong thẻ tập lệnh bên dưới sẽ thực thi hàm initMap()
trong tệp HTML.
<script defer
src="https://maps.googleapis.com/maps/api/js?key=YOUR_API_KEY
&libraries=visualization&callback=initMap">
</script>
Thêm mã bên dưới để tạo thành phần điều khiển văn bản ở đầu bản đồ.
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); }
Thêm mã bên dưới vào bên trong hàm initMap
, sau var map
, để tải hộp điều khiển văn bản.
// 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);
Để xem bản đồ Google mà mã tạo, hãy mở tệp index.html
trong trình duyệt web.
Thiết lập Firebase
Để tạo ứng dụng cộng tác này, bạn phải lưu trữ các lượt nhấp trong một cơ sở dữ liệu bên ngoài mà tất cả người dùng đều có thể truy cập. Cơ sở dữ liệu theo thời gian thực của Firebase phù hợp với mục đích này và không yêu cầu bạn phải có kiến thức về SQL.
Trước tiên, hãy đăng ký tài khoản Firebase mà không mất phí.
Nếu mới sử dụng Firebase, bạn sẽ thấy một ứng dụng mới có tên "My First App" (Ứng dụng đầu tiên của tôi). Nếu tạo một ứng dụng mới, bạn có thể đặt tên mới cho ứng dụng đó và URL Firebase tuỳ chỉnh có đuôi là firebaseIO.com
. Ví dụ: bạn có thể đặt tên ứng dụng là "Bản đồ Firebase của Jane" với URL https://janes-firebase-map.firebaseIO.com
. Bạn có thể sử dụng URL này để liên kết cơ sở dữ liệu với ứng dụng JavaScript.
Thêm dòng bên dưới sau thẻ <head>
của tệp HTML để nhập thư viện Firebase.
<script src="www.gstatic.com/firebasejs/5.3.0/firebase.js"></script>
Thêm dòng sau vào tệp JavaScript:
var firebase = new Firebase("<Your Firebase URL here>");
Lưu trữ dữ liệu lượt nhấp trong Firebase
Phần này giải thích mã lưu trữ dữ liệu trong Firebase về các lượt nhấp chuột trên bản đồ.
Đối với mỗi lần nhấp chuột trên bản đồ, mã bên dưới sẽ tạo một đối tượng dữ liệu toàn cục và lưu trữ thông tin của đối tượng đó trong Firebase. Đối tượng này ghi lại dữ liệu như latLng và dấu thời gian của lượt nhấp, cũng như mã nhận dạng duy nhất của trình duyệt đã tạo lượt nhấp.
/** * Data object to be written to Firebase. */ var data = { sender: null, timestamp: null, lat: null, lng: null };
Mã bên dưới ghi lại một mã phiên duy nhất cho mỗi lượt nhấp, giúp kiểm soát tốc độ lưu lượng truy cập trên bản đồ theo các quy tắc bảo mật của 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. } }); }
Phần mã tiếp theo bên dưới sẽ theo dõi các lượt nhấp trên bản đồ, từ đó thêm một "thành phần con" vào cơ sở dữ liệu Firebase. Khi điều này xảy ra, hàm snapshot.val()
sẽ lấy các giá trị dữ liệu của mục nhập và tạo một đối tượng LatLng mới.
// 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); } );
Mã bên dưới thiết lập Firebase để:
- Nghe các lượt nhấp trên bản đồ. Khi có một lượt nhấp, ứng dụng sẽ ghi lại dấu thời gian, sau đó thêm một "thành phần con" vào cơ sở dữ liệu Firebase.
- Xoá mọi lượt nhấp trên bản đồ cũ hơn 10 phút theo thời gian thực.
/** * 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); }); }
Sao chép tất cả mã JavaScript trong phần này vào tệp firebasemap.js
.
Tạo biểu đồ nhiệt
Bước tiếp theo là hiển thị bản đồ nhiệt để người xem có thể thấy số lượt nhấp tương đối tại nhiều vị trí trên bản đồ. Để tìm hiểu thêm, hãy đọc hướng dẫn về bản đồ nhiệt.
Thêm mã bên dưới vào hàm initMap()
để tạo bản đồ nhiệt.
// Create a heatmap. var heatmap = new google.maps.visualization.HeatmapLayer({ data: [], map: map, radius: 16 });
Mã bên dưới sẽ kích hoạt các hàm initFirebase
, addToFirebase
và getTimestamp
.
initAuthentication(initFirebase.bind(undefined, heatmap));
Lưu ý rằng nếu bạn nhấp vào bản đồ nhiệt, bản đồ này sẽ chưa tạo điểm. Để tạo các điểm trên bản đồ, bạn cần thiết lập trình nghe bản đồ.
Tạo điểm trên bản đồ nhiệt
Mã dưới đây sẽ thêm trình nghe vào bên trong initMap()
, sau mã tạo bản đồ. Mã này theo dõi dữ liệu từ mỗi lượt nhấp, lưu trữ vị trí của lượt nhấp trong cơ sở dữ liệu Firebase và hiển thị các điểm trên bản đồ nhiệt.
// 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); });
Nhấp vào các vị trí trên bản đồ để tạo điểm trên bản đồ nhiệt.
Bây giờ, bạn đã có một ứng dụng theo thời gian thực có đầy đủ chức năng bằng cách sử dụng Firebase và API Maps JavaScript.
Khi bạn nhấp vào bản đồ nhiệt, vĩ độ và kinh độ của lượt nhấp sẽ xuất hiện trong cơ sở dữ liệu Firebase. Bạn có thể xem điều này bằng cách đăng nhập vào tài khoản Firebase và chuyển đến thẻ dữ liệu của ứng dụng. Tại thời điểm này, nếu người khác nhấp vào bản đồ của bạn, thì bạn và người đó đều có thể thấy các điểm trên bản đồ. Vị trí của các lượt nhấp vẫn tồn tại ngay cả sau khi người dùng đóng trang. Để kiểm thử chức năng cộng tác theo thời gian thực, hãy mở trang trong hai cửa sổ riêng biệt. Các điểm đánh dấu sẽ xuất hiện trên cả hai thiết bị theo thời gian thực.
Tìm hiểu thêm
Firebase là một nền tảng ứng dụng lưu trữ dữ liệu dưới dạng JSON và đồng bộ hoá với tất cả ứng dụng đã kết nối theo thời gian thực. Bạn có thể sử dụng tính năng này ngay cả khi ứng dụng của bạn không có kết nối mạng. Phần hướng dẫn này sử dụng cơ sở dữ liệu theo thời gian thực.