Random Location Generator
Random Location Generator
[... existing content ...]
Visual Representation
To provide a visual context for the generated coordinates, we implement a simple globe icon using SVG. Here's an example of how this can be done:
This SVG creates a simple globe with latitude and longitude lines, and a red dot representing the generated location. The exact position of the dot can be calculated based on the generated coordinates.
[... existing content ...]
Examples
Here are some code examples for generating random coordinates in various programming languages:
import random
def generate_random_coordinates():
latitude = random.uniform(-90, 90)
longitude = random.uniform(-180, 180)
return latitude, longitude
lat, lon = generate_random_coordinates()
print(f"{lat:.4f}° {'N' if lat >= 0 else 'S'}, {abs(lon):.4f}° {'E' if lon >= 0 else 'W'}")
Copy Button Implementation
To implement the Copy Button functionality, we can use the Clipboard API. Here's a simple JavaScript example:
function copyToClipboard(text) {
navigator.clipboard.writeText(text).then(() => {
alert('Coordinates copied to clipboard!');
}, (err) => {
console.error('Could not copy text: ', err);
});
}
// Usage
const copyButton = document.getElementById('copyButton');
copyButton.addEventListener('click', () => {
const coordinates = document.getElementById('coordinates').textContent;
copyToClipboard(coordinates);
});
This function can be called when the Copy Button is clicked, passing the generated coordinates as the text to be copied.
[... rest of the existing content ...]