Térkép Koordináta Választó
Generálj véletlen földrajzi koordinátákat bármely Földi régióban
Kattints "Generálj Koordinátákat" véletlen helyek létrehozásához
Loading map...
Perfect for:
- • Testing location-based apps
 - • Geographic data sampling
 - • Research and analysis
 - • Game development
 - • Educational purposes
 
Coordinate Formats:
- • Decimal degrees (DD)
 - • Degrees, minutes, seconds (DMS)
 - • Google Maps links
 - • Copy individual or all coordinates
 - • Custom region boundaries
 
How accurate are the coordinate formats?
All coordinates are generated with 6 decimal places precision, providing accuracy within about 10 centimeters for most applications.
Can I use these coordinates for navigation?
These are random coordinates for testing purposes only. Never use them for actual navigation or location-based services.
What's the difference between decimal degrees and DMS?
Decimal degrees (DD) use decimal numbers (e.g., 40.7128). DMS uses degrees, minutes, and seconds (e.g., 40°42'46"N). Both represent the same location.
Why do some coordinates point to water?
About 71% of Earth's surface is water, so many random coordinates will naturally fall in oceans, lakes, or rivers. This is mathematically expected.
How do I set custom boundaries?
Use the custom bounds option and enter latitude/longitude values. North/South range from -90 to 90, East/West range from -180 to 180.
GET /api/v1/coordinates
Generate random geographic coordinates
Parameters
Example Request
curl "https://random-generators.com/api/v1/coordinates?region=usa&count=3"Example Response
{
  "coordinates": [
    {
      "latitude": 39.742043,
      "longitude": -104.991531,
      "location": "39.74°N, 104.99°W (United States)"
    },
    {
      "latitude": 34.052235,
      "longitude": -118.243685,
      "location": "34.05°N, 118.24°W (United States)"
    },
    {
      "latitude": 41.878113,
      "longitude": -87.629799,
      "location": "41.88°N, 87.63°W (United States)"
    }
  ],
  "count": 3,
  "region": "usa"
}