StaticMap/README.md
Alexander Kiryukhin 3ff29e8a4c
Update README.md
2020-08-17 13:37:09 +03:00

24 lines
615 B
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# StaticMap
Генератор статической картинки-карты для заданных географических координат и масштаба.
Может использоваться как сервер, так и отдельная библиотека.
## Библиотека
```go
import "github.com/neonxp/StaticMap/pkg/static"
...
img, err := static.GetMapImage(lat, lon, zoom, width, height)
```
## Сервер
```go
go run *.go
```
В браузере: http://localhost:8000/map?lat=55.798433&lon=49.105191&zoom=16&w=800&h=600
Результат:
![map.png](map.png)