blob: c485a7a3f9a6d2890c5c904869072726afdb0b07 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
module Example02 exposing (main)
import Browser
import Html exposing (div)
import Html.Attributes
import Mapbox.Element exposing (..)
import Styles.SatelliteStreets exposing (style)
main =
div [ Html.Attributes.style "height" "100vh" ]
[ map [] style ]
|