Bye Bye Moore

PoCソルジャーな零細事業主が作業メモを残すブログ

Node-RedでSVGを描画する その6:HTMLタグを植え込む

shuzo-kino.hateblo.jp
の続き

実際のところ

<svg x="0" y="0" height="300" viewBox="0 0 100 100" width="300" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
  <!-- Add here your SVG shapes (circles, rectangles, ...) -->
  <image x="0" y="0" width="100" height="100" href=""data:image/png;base64,iVBORw0K..." />
  <circle cx="50" cy="50" r={{msg.payload}} fill="red" stroke="red" stroke-width="4px" />
  <foreignObject x="0" y="0" width="100" height="40">
    <input type="number" id="temp_living" min="10" max="25">
    <label for="temp_living" id="temp_living_label">°C</label>
  </foreignObject>
</svg>