Handles specific HTTP requests to omaps.app domain
For example, these formats are supported: https://omaps.app/12.345,-2.654 https://omaps.app/12.345/-2.654/18 https://omaps.app/-12.345_2.654_Some%20Name https://omaps.app/12.345,-2.654,14,Some_Name Note that any other delimiter can be used instead of a comma, excluding digit, '.', '#' and '?' Signed-off-by: Alexander Borsuk <me@alex.bio> |
||
---|---|---|
.github/workflows | ||
public | ||
src | ||
workers-site | ||
.eslintrc.yml | ||
.gitignore | ||
.nvmrc | ||
.prettierrc | ||
LICENSE | ||
metadata.json | ||
package-lock.json | ||
package.json | ||
README.md | ||
tsconfig.json | ||
wrangler.toml |
Static resources and short links (ge0) decoder for Organic Maps
Root domain redirects to https://organicmaps.app/.
URLs like http(s)://omaps.app/ENCODEDCOORDINATES/PINNAME
are decoded to lat, lon and zoom level. Then the OSM
map is displayed and url schemes are opened on mobile apps.
Add some query parameters to test:
Requirements
Install CloudFlare's wrangler and other dev dependencies using npm:
npm i
Development
Use npx wrangler dev
for development using Cloudflare, or npx wrangler dev --local
for localhost development.
Deployment
All pushes to master automatically deploy dev version to https://url-processor.omaps.workers.dev/
Deploy to prod manually using npx wrangler publish --env omaps
or this
action.
Known issues
- Hidden directories and symlinks in worker site assets are ignored by wrangler.
- Cloudflare's free Flexible SSL certificates does not support 4-th level subdomains like a.b.example.com, so you can see strange SSL errors.
- HTTPS
fetch
requests from Workers are converted to HTTP ones if the target host is in the same Cloudflare zone, see here for more details.