Update links to map libre and kino vega lite libs (#1492)

* Update links to map libre libs

* Updates link to KinoVegaLite
This commit is contained in:
Hugo Baraúna 2022-10-18 10:52:08 -03:00 committed by GitHub
parent 27a7297866
commit 567b7af459
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View file

@ -11,10 +11,10 @@ Mix.install([
To work with maps in Livebook we need two libraries: To work with maps in Livebook we need two libraries:
* The [`maplibre`](https://github.com/cristineguadelupe/maplibre) * The [`maplibre`](https://github.com/livebook-dev/maplibre)
package allows us to define our map style specifications package allows us to define our map style specifications
* The [`kino_maplibre`](https://github.com/cristineguadelupe/Kino_maplibre) package instructs Livebook how to render our specifications and also provides some initial support for [MapLibre Evented API](https://maplibre.org/maplibre-gl-js-docs/api/events/#evented) * The [`kino_maplibre`](https://github.com/livebook-dev/kino_maplibre) package instructs Livebook how to render our specifications and also provides some initial support for [MapLibre Evented API](https://maplibre.org/maplibre-gl-js-docs/api/events/#evented)
We will make extensive use of MapLibre's functions, so it's handy to alias the module to something shorter. We will make extensive use of MapLibre's functions, so it's handy to alias the module to something shorter.

View file

@ -14,7 +14,7 @@ We need two libraries for plotting in Livebook:
* The [`vega_lite`](https://github.com/elixir-nx/vega_lite) * The [`vega_lite`](https://github.com/elixir-nx/vega_lite)
package allows us to define our graph specifications package allows us to define our graph specifications
* The [`kino_vega_lite`](https://github.com/elixir-nx/kino) package * The [`kino_vega_lite`](https://github.com/livebook-dev/kino_vega_lite) package
instructs Livebook how to render our specifications instructs Livebook how to render our specifications
Let's install them by running the setup cell above. Let's install them by running the setup cell above.