{"id":16731591,"url":"https://github.com/joxit/tile-server-ui","last_synced_at":"2025-06-29T15:37:43.929Z","repository":{"id":72198090,"uuid":"55317899","full_name":"Joxit/tile-server-ui","owner":"Joxit","description":"User Interface for tile servers using leaflet","archived":false,"fork":false,"pushed_at":"2022-04-28T08:05:05.000Z","size":1365,"stargazers_count":7,"open_issues_count":2,"forks_count":1,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-04-10T11:39:26.379Z","etag":null,"topics":["docker","leaflet","openstreetmap","riot","riot-mui","riotjs","tile-server","tile-server-ui","tile-source","user-interface"],"latest_commit_sha":null,"homepage":"https://joxit.dev/tile-server-ui/","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"agpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Joxit.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null},"funding":{"github":"Joxit"}},"created_at":"2016-04-02T21:51:06.000Z","updated_at":"2023-08-22T08:14:59.000Z","dependencies_parsed_at":null,"dependency_job_id":"7e1ccb4c-bc23-4596-81c3-31feeeaa4375","html_url":"https://github.com/Joxit/tile-server-ui","commit_stats":null,"previous_names":[],"tags_count":11,"template":false,"template_full_name":null,"purl":"pkg:github/Joxit/tile-server-ui","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Joxit%2Ftile-server-ui","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Joxit%2Ftile-server-ui/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Joxit%2Ftile-server-ui/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Joxit%2Ftile-server-ui/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Joxit","download_url":"https://codeload.github.com/Joxit/tile-server-ui/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Joxit%2Ftile-server-ui/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":262621353,"owners_count":23338661,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["docker","leaflet","openstreetmap","riot","riot-mui","riotjs","tile-server","tile-server-ui","tile-source","user-interface"],"created_at":"2024-10-12T23:38:01.402Z","updated_at":"2025-06-29T15:37:43.907Z","avatar_url":"https://github.com/Joxit.png","language":"JavaScript","funding_links":["https://github.com/sponsors/Joxit"],"categories":[],"sub_categories":[],"readme":"# Tile Server UI\n\n## Overview\n\nThis project aims to provide a user interface for tile servers.\nThe default tile-server is openstreetmap on this UI and you can add your own according to the leaflet notation (e.g. `https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png`).\nAll tile servers will be stored in the [local storage](https://en.wikipedia.org/wiki/Web_storage#Local_and_session_storage) of your browser.\nThis project uses [Riot](http://riotjs.com/), [riot-mui](http://kysonic.github.io/riot-mui/) and [leaflet](http://leafletjs.com/).\n\n## [GitHub Page](https://joxit.dev/tile-server-ui/) and [Live Demo](https://joxit.dev/tile-server-ui/demo/)\n\n## Content\n\n-   [Features](#features)\n-   [Getting Started](#getting-started)\n    -   [Basic](#basic)\n    -   [Docker](#docker)\n        -   [Get the docker image](#get-the-docker-image)\n        -   [Run the docker](#run-the-docker)\n-   [Screenshots](#screenshots)\n\n## Features\n\n-   Add any tile sources\n-   Remove your added tile sources\n-   Add an overlay (two tiles sources at the same time)\n-   One interface for many tile sources\n-   Show tiles bounds\n-   Show meta-tile bounds\n-   Save settings in local storage (servers URL, tile bounds, meta-tile bounds, meta-tile size)\n-   Coordinates in the URL for position sharing\n\n## Getting Started\n\n### Basic\n\nFirst you need node and npm in order to download dependencies.\n\n```sh\ngit clone https://github.com/Joxit/tile-server-ui.git\ncd tile-server-ui\nnpm install\n```\n\nNow you can open index.html with your browser or use a http-server\n\n```sh\nnpm install -g http-server\nhttp-server\n```\n\n### Docker\n\nThe docker contains the source code and a node webserver in order to serve the tile-server-ui.\n\n#### Get the docker image\n\nYou can get the image in three ways\n\nFrom sources with this command :\n\n```sh\ngit clone https://github.com/Joxit/tile-server-ui.git\ndocker build -t joxit/tile-server-ui tile-server-ui\n```\n\nOr build with the url :\n\n```sh\ndocker build -t joxit/tile-server-ui github.com/Joxit/tile-server-ui\n```\n\nOr pull the image from [docker hub](https://hub.docker.com/r/joxit/tile-server-ui/) :\n\n```sh\ndocker pull joxit/tile-server-ui\n```\n\n#### Run the docker\n\nTo run the docker and see the website on your 80 port, try this :\n\n```sh\ndocker run -d -p 80:80 joxit/tile-server-ui\n```\n\n## Screenshots\n\n![screenshot](https://raw.github.com/Joxit/tile-server-ui/master/screenshot.png \"Screenshot of Tile Server UI\")\n![tiles-bounds](https://raw.github.com/Joxit/tile-server-ui/master/tiles-bounds.png \"Screenshot of Tile Server UI with tiles bounds\")\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjoxit%2Ftile-server-ui","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjoxit%2Ftile-server-ui","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjoxit%2Ftile-server-ui/lists"}