Skip to content

OSM Prerequisites§

Public OSM Server Address§

If you allow Internet access for your SmartPTT, use one of the publicly available OSM server.

Official OSM tile servers are available at the following addresses:

http://a.tile.openstreetmap.org/
http://b.tile.openstreetmap.org/
http://c.tile.openstreetmap.org/

Corporate OSM Servers§

If you wish to use corporate OSM server, perform the following actions:

  • Deploy your OSM server.
  • Disable authentication on that server for SmartPTT.

If you require at least minimum security, introduce credentials/tokens into the OSM server URL.

Example

https://your.tile.server/?token=permanent_token_value
https://your.tile.server/?login=user_login&password=user_password

Raster Tiles§

If you wish SmartPTT to use raster tiles as OSM, you are strongly recommended to run a simplest HTTP server in the root directory of those tiles.

Example

Example below is a Python-based HTTP server.

winget install -e --id Python.Python.3.13

python -m http.server 56001

See Also§