To change the GPS location stored in a photo, open the image in a metadata editor, replace the existing GPS latitude and longitude with the coordinates you want, and save a new copy. With a browser tool like GeoTag.world you can do it in under a minute — search for a place, drop a pin, or type exact coordinates — with no software to install and no photo uploaded to a server.
This guide covers every method (browser, command line, phone, desktop), when to use each, and the small mistakes that quietly send your coordinates to the wrong side of the planet.
Why Change a Photo's GPS Location?
There are plenty of legitimate reasons to edit the location baked into a photo:
- Correct wrong coordinates. Phone GPS drifts indoors, in cities, and under tree cover. A photo can land hundreds of metres — sometimes kilometres — from where you actually stood.
- Add a location that was never recorded. Screenshots, scans, and photos from cameras with GPS switched off arrive with no coordinates at all. You can add GPS to a photo that has none.
- Generalise your location for privacy. Before sharing, you can replace your exact home coordinates with a nearby landmark so the photo still has a location without exposing your location.
- Organise an archive. Trip photos, fieldwork, and real-estate shoots map far more usefully when every file carries the right coordinates.
- Business and local SEO. Tag property, listing, or Google Business Profile photos with the correct business address before uploading.
A note on honest use: editing metadata to deceive — fake alibis, fraudulent claims, misleading reporting — is a different matter, and forensic tools can often detect that metadata was altered. This guide is about accuracy, privacy, and organisation.
How GPS Location Is Stored in a Photo
Before you change it, it helps to know what you're changing. Coordinates live in a small set of EXIF GPS fields inside the file:
| Field | What it holds |
|---|---|
GPSLatitude | North–south position, in decimal degrees (e.g. 24.860966) |
GPSLongitude | East–west position, in decimal degrees (e.g. 67.001137) |
GPSLatitudeRef | The hemisphere — N or S |
GPSLongitudeRef | The hemisphere — E or W |
GPSAltitude | Optional height above sea level |
The single most common mistake is changing the number but not the reference — leave GPSLatitudeRef on N when your new spot is south of the equator and your photo now points to the wrong hemisphere. Good tools handle the reference for you. For a deeper look at these fields, see the complete guide to GPS metadata.
The Methods, Compared
| Method | Ease | No install | No upload | Batch | Best for |
|---|---|---|---|---|---|
| GeoTag.world (browser) | Easiest | Yes | Yes | Per session | Most people |
| ExifTool (command line) | Advanced | No | Yes | Yes | Technical / bulk jobs |
| Phone apps | Medium | App install | Varies | Varies | Editing on the go |
| Desktop (Lightroom, GeoSetter) | Medium | No | Yes | Yes | Photographers |
Method 1 — Change GPS in Your Browser (No Software)
This is the fastest route for almost everyone, and your photo never leaves your device.
- Open the geotagging tool and drop in your photo (JPEG, PNG, HEIC, or WebP).
- Set the new location three ways: search a place by name, click the map to drop a pin, or type the latitude and longitude.
- Check the pin on the map. Five to six decimal places places it within a few metres.
- Download the file — the new coordinates are written into the EXIF metadata, and the image quality is untouched.
That's it. No account is needed to view a photo's existing data; geotagging gives you your first photo free on sign-up.
Method 2 — Change GPS with ExifTool (Command Line)
For technical users or large batches, ExifTool is the gold standard. To set a new location on a single file:
exiftool -GPSLatitude=24.860966 -GPSLatitudeRef=N \
-GPSLongitude=67.001137 -GPSLongitudeRef=E \
photo.jpg
A few things worth knowing:
- Always set the
Reftags alongside the numbers, or the hemisphere may be wrong. - ExifTool keeps a backup copy by default; add
-overwrite_originalonce you trust the result. - To geotag every photo in a folder, point it at the directory instead of one file.
- HEIC support depends on your build — converting HEIC to JPEG first is the safe path.
Method 3 — On Your Phone
Mobile apps can rewrite a photo's coordinates directly on the device, which is handy in the field. The trade-offs: you install an app, some upload your photo to their servers, and many gate the export behind a purchase. If you'd rather not install anything, the browser method above works on mobile too.
Mistakes That Quietly Corrupt Your Coordinates
- Forgetting the hemisphere reference — the number is right but the photo lands across the equator or the prime meridian.
- Swapping latitude and longitude — an easy slip that drops the pin in the wrong country.
- Editing a HEIC, then losing the data on conversion — convert first, edit second.
- Mixing decimal degrees with DMS —
24.86, 67.00is not the same as24° 51' 39". Pick one format and stick to it. - Assuming the platform will keep it — see the next section.
Will the New Location Actually Stick?
Here's the catch most guides skip: many platforms strip EXIF on upload. Instagram, Facebook, and most social networks remove GPS data when you post, so your carefully set location vanishes for public viewers — see what Instagram does to your metadata. If you need the geotag to survive, share the original file (not a re-uploaded copy) or use the platform's own location field.
This cuts both ways: if your goal was privacy, that stripping is helpful — and you can remove GPS from a photo entirely instead of changing it.
Frequently Asked Questions
Can I change the GPS location on an iPhone (HEIC) photo?
Yes. A browser tool that supports HEIC lets you set or correct coordinates on iPhone photos without converting them first. With ExifTool, converting HEIC to JPEG before editing avoids build-specific issues.
Does changing the GPS reduce my photo's quality?
No. Coordinates live in the metadata layer, not the pixels. Editing them doesn't recompress or alter the visible image, so resolution and quality stay identical.
Can I change a photo's location without installing any app?
Yes — a browser-based editor runs entirely on your device. You set the location and download the updated file with nothing installed and no upload.
Is it legal to change a photo's GPS data?
Editing your own photos for accuracy, privacy, or organisation is perfectly normal. Altering metadata to deceive — in legal, insurance, or journalistic contexts — can be a serious problem, and edits are often detectable.
How do I change GPS on many photos at once?
ExifTool can rewrite an entire folder in one command. For a no-install option, browser tools let you process photos one after another in a session, with paid plans raising the monthly volume.
What coordinate format should I use?
Decimal degrees (e.g. 24.860966, 67.001137) is the simplest and is read by Google Photos, Lightroom, Apple Photos, and Windows. Six decimal places is accurate to roughly a single building.
Can someone tell that the GPS was edited?
Sometimes. Forensic analysis can flag inconsistencies between metadata fields and the rest of the file. Treat edited metadata as informational, not as tamper-proof evidence.
What if I just want to remove the location instead?
Use a remove-GPS tool to strip the coordinates entirely rather than replacing them — ideal before sharing photos publicly.