function getLocation() {
if ('geolocation' in navigator) {
navigator.geolocation.getCurrentPosition(position => {
console.log('Latitude:', position.coords.latitude);
console.log('Longitude:', position.coords.longitude);
});
} else {
console.log('Geolocation is not supported by this browser.');
}
}
getLocation();
function shareContent() {
if (navigator.share) {
navigator.share({
title: 'My PWA',
text: 'Check out my Progressive Web App!',
url: window.location.href
}).then(() => {
console.log('Content shared successfully!');
}).catch(error => {
console.error('Error sharing content:', error);
});
} else {
console.log('Web Share API is not supported in this browser.');
}
}
shareContent();