防災検索の作成方法について記載します。

1. テンプレートの利用開始

2. メッセージを編集

3. 避難所テンプレートの編集

メッセージ名「避難所テンプレート」に関してはJSON形式で編集可能です。

Untitled

{
    "specialScenarioTalk": "防災検索",
    "type": "bubble",
    "body": {
        "layout": "vertical",
        "spacing": "md",
        "type": "box",
        "contents": [
            {
                "weight": "bold",
                "text": "${name}",
                "type": "text",
                "align": "start"
            },
            {
                "type": "text",
                "color": "#AEAEAEFF",
                "text": "${status}"
            },
            {
                "text": "${address}",
                "type": "text",
                "align": "start",
                "wrap": true
            },
            {
                "type": "separator",
                "margin": "xl"
            },
            {
                "layout": "vertical",
                "spacing": "md",
                "type": "box",
                "contents": [
                    {
                        "type": "text",
                        "weight": "bold",
                        "text": "避難所種別 "
                    }
                ]
            },
            {
                "type": "separator",
                "margin": "xl"
            },
            {
                "layout": "vertical",
                "spacing": "md",
                "type": "box",
                "contents": [
                    {
                        "type": "text",
                        "weight": "bold",
                        "text": "災害種別 "
                    }
                ]
            },
            {
                "type": "separator",
                "margin": "xl"
            },
            {
                "layout": "vertical",
                "spacing": "md",
                "type": "box",
                "contents": [
                    {
                        "type": "text",
                        "weight": "bold",
                        "text": "サービス"
                    }
                ]
            }
        ]
    },
    "footer": {
        "type": "box",
        "layout": "vertical",
        "contents": [
            {
                "type": "button",
                "action": {
                    "type": "uri",
                    "uri": "<https://www.google.com/maps/dir/?api=1&travelmode=walking&origin=${user_coordinates}&destination=${shelter_coordinates}>",
                    "label": "地図を開く"
                }
            }
        ]
    },
    "direction": "ltr"
}

4. テンプレートの削除