**文書の過去の版を表示しています。**
20210927
ejsのインストール
npm install ejs
でインストール。
https://algorithm.joho.info/programming/javascript/node-js-ejs-install/
ejsの利用
viewsディレクトリ以下にejsディレクトリを作成し、index.ejsを作成。
index.jsのルーティングを変更。
https://qiita.com/kamihork/items/1b13d2157979d1837849
https://www.digitalocean.com/community/tutorials/how-to-use-ejs-to-template-your-node-application-ja
javascript関連
try-catch
https://developer.mozilla.org/ja/docs/Web/JavaScript/Reference/Statements/try...catch
isNaN
Leafletでのマーカの表示
https://ktgis.net/service/leafletlearn/index.html#step5
var popup2 = L.popup().setContent("桜区役所です"); L.marker([35.8561, 139.6098]).bindPopup(popup2).bindTooltip("桜区役所").addTo(map);