Share & Deep Links

Share any coordinate or saved favorite as a link. Tapping the link on Android opens the app directly, centers the map on the location, and asks what you want to do with it.

Sharing a location

Two places in the app generate shareable links:

Both fire the system share sheet with a plain-text URL. You can send it via any messaging app, copy it to clipboard, or generate a QR code with a third-party tool.

What happens when the link is opened

  1. The app opens (or comes to the foreground if already running).
  2. The map screen activates and pans to the linked coordinate.
  3. A confirmation sheet appears with these options:
    • Teleport here — instantly move your spoofed position.
    • Walk here — walk to the coordinate at your current speed.
    • Walk here via roads — follow road geometry to the coordinate.
    • Do nothing — dismiss without changing position.

Nothing happens automatically — you always confirm the action.

URL format

The canonical link format is:

https://locationjoystick.shrtcts.fr/?lat=LAT&lon=LON
ParameterTypeValid rangeDescription
latdecimal−90 to 90Latitude
londecimal−180 to 180Longitude

Example:

https://locationjoystick.shrtcts.fr/?lat=35.6762&lon=139.6503

For third-party tools

If you build automation, scripts, or integrations that open coordinates in locationjoystick, construct the URL directly — no API key or authentication required.

A custom URI scheme is also supported for app-to-app workflows:

locationjoystick://open?lat=LAT&lon=LON

Both schemes are parsed identically. Use HTTPS for anything user-facing.