osmshortlink-go: Go module and command-line tool for creating, encoding & decoding of OpenStreetMap shortlinks
Specification: https://wiki.openstreetmap.org/wiki/Shortlink
package main
import "github.com/stefanb/osmshortlink-go"
func main() {
shortlink, err := osmshortlink.Create(46.05141, 14.50604, 17)
if err != nil {
panic(err)
}
print(shortlink)
}
Prints: https://osm.org/go/0Ik3VNr_A-?m
$ go run github.com/stefanb/osmshortlink-go/cmd@main 46.05141 14.50604 17
https://osm.org/go/0Ik3VNr_A-?m
You can download pre-built binaries for various platforms from latest release.
Usage: osmshortlink [latitude] [longitude] [zoom]
For example:
$ osmshortlink 46.05141 14.50604 17
https://osm.org/go/0Ik3VNr_A-?m