elm-community / typed-svg / TypedSvg.Extra.InPx

Typed SVG elements that default to px units

Helpers

centeredImage : String -> Basics.Float -> Basics.Float -> Basics.Float -> Basics.Float -> TypedSvg.Core.Svg msg

Centers an image (png, svg, etc.) referenced by an url string and with a given image width and height on the given x, y coordinate. Usage example:

let
    width =
        50.5

    height =
        50.5

    x =
        150

    y =
        200
in
centeredImage "/images/example.png" width height x y