Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dkuku/mbtiles
elixir library to work with mbtiles files
https://github.com/dkuku/mbtiles
elixir hacktoberfest openstreetmap
Last synced: 2 months ago
JSON representation
elixir library to work with mbtiles files
- Host: GitHub
- URL: https://github.com/dkuku/mbtiles
- Owner: dkuku
- Created: 2021-01-09T15:56:20.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2021-11-29T22:47:58.000Z (about 3 years ago)
- Last Synced: 2024-10-01T14:59:28.425Z (3 months ago)
- Topics: elixir, hacktoberfest, openstreetmap
- Language: Elixir
- Homepage:
- Size: 5.6 MB
- Stars: 5
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Mbtiles
you need a mbtils file for this package to work
to specify the location add an entry in your config.exs file```
config :mbtiles,
ecto_repos: [Mbtiles.Repo]config :mbtiles, Mbtiles.Repo,
database: "priv/united_kingdom.mbtiles"
```## Example repository
[dkuku/tile_server](https://github.com/dkuku/tile_server)## Installation
If [available in Hex](https://hex.pm/docs/publish), the package can be installed
by adding `mbtiles` to your list of dependencies in `mix.exs`:```elixir
def deps do
[
{:mbtiles, "~> 0.4.2"}
]
end
```