Welcome to mirror list, hosted at ThFree Co, Russian Federation.

mapbox.html « shortcodes « layouts - github.com/dillonzq/LoveIt.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f25f04e45ea50ffa584dff9a53fd109a8fc2aa2f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{{- $mapbox := (.Page.Scratch.Get "params").mapbox | default dict -}}

{{- $lng := cond .IsNamedParams (.Get "lng") (.Get 0) -}}
{{- $lat := cond .IsNamedParams (.Get "lat") (.Get 1) -}}
{{- $zoom := cond .IsNamedParams (.Get "zoom") (.Get 2) | default 10 -}}
{{- $marked := cond .IsNamedParams (.Get "marked") (.Get 3) | ne false -}}
{{- $lightStyle := $mapbox.lightStyle -}}
{{- $darkStyle := $mapbox.darkStyle -}}
{{- $navigation := $mapbox.navigation -}}
{{- $geolocate := $mapbox.geolocate -}}
{{- $scale := $mapbox.scale -}}
{{- $fullscreen := $mapbox.fullscreen -}}
{{- $width := "100%" -}}
{{- $height := "20rem" -}}

{{- if .IsNamedParams -}}
    {{- $lightStyle = .Get "light-style" | default $lightStyle -}}
    {{- $darkStyle = .Get "dark-style" | default $darkStyle -}}
    {{- $navigation = .Get "navigation" | ne false | and $navigation -}}
    {{- $geolocate = .Get "geolocate" | ne false | and $geolocate -}}
    {{- $scale = .Get "scale" | ne false | and $scale -}}
    {{- $fullscreen = .Get "fullscreen" | ne false | and $fullscreen -}}
    {{- $width = .Get "width" | default $width -}}
    {{- $height = .Get "height" | default $height -}}
{{- else -}}
    {{- $lightStyle = .Get 4 | default $lightStyle -}}
    {{- $darkStyle = .Get 5 | default $darkStyle -}}
{{- end -}}
{{- $darkStyle = $darkStyle | default $lightStyle -}}
{{- $options := dict "lng" $lng "lat" $lat "zoom" $zoom "marked" $marked "lightStyle" $lightStyle "darkStyle" $darkStyle "geolocate" $geolocate "navigation" $navigation "scale" $scale "fullscreen" $fullscreen -}}
{{- $id := partial "function/id.html" (dict "content" $options "scratch" .Page.Scratch) -}}
<div class="mapbox" id="{{ $id }}" style="width: {{ $width }}; height: {{ $height }};"></div>
{{- .Page.Scratch.SetInMap "this" "mapbox" true -}}