hiroaki-com / drinking-party-ms

management system for In-house drinking party
0 stars 0 forks source link

飲み会作成時に入力された住所からGoogleマップを表示させる #44

Closed hiroaki-com closed 1 year ago

hiroaki-com commented 1 year ago

概要

参考

https://learning.mihune-web.com/googlemap/

https://stackoverflow.com/questions/72679450/django-how-to-show-a-pointfield-in-a-map-from-a-html-template

- https://qiita.com/hiroki1994/items/01984d7f893e4261fc08

hiroaki-com commented 1 year ago
<iframe
  src="https://maps.google.co.jp/maps?output=embed&q="検索ワード"
  width="800"
  height="450"
  style="border: 0"
  allowfullscreen=""
  loading="lazy"
>
</iframe>

イメージ:

参考サイト: https://chuna.tech/blog/web-application/Vue/reactive-googlemap-no-apikey/

ブラウザ環境: https://codepen.io/pen/

hiroaki-com commented 1 year ago

https://yuukiyg.hatenablog.jp/entry/2020/12/31/122916

hiroaki-com commented 1 year ago

https://qiita.com/sikkim/items/365cb1211a3b8ca7b410#訪問予定リストと地図の連動

現実案 保存済み住所データを使用 作成画面で住所保存→データベース→ビュー→Google map APIで地図取得→詳細テンプレート表示

理想 作成画面で店舗URL保存→保存されたURLからAPIで住所情報取得→住所から地図取得→表示

※htmlからのスクレイピングは禁止

hiroaki-com commented 1 year ago

https://paiza.jp/works/django/primer/beginner-django4/8811