住所がフォームに入力されるたびに住所がデータベースに入力され、そこから同じ住所が Google マップの作成に使用される justdial.com のようなアプリケーションがあります。
コード全体はリピータ タグの下に記述されています。つまり、新しい住所が入力されるたびに、Google マップ API がそれをフェッチし、アプリケーションにマップを表示します。
justdial.comで行ったのと同じです。
このプロジェクトは、n 層の C# .NET フレームワークを使用して行われます。
<asp:Repeater ID="Repeater1" OnItemDataBound="Repeater1_ItemDataBound" runat="server" onitemcommand="Repeater1_ItemCommand">
<ItemTemplate>
<h2>Map</h2>
<div style="width:100%; min-height:250px;">
<iframe width="100%" height="350" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="https://maps.google.com/maps?f=q&source=s_q&hl=en&geocode=&q=<%#Eval("comp_adrs") %>+India&aq=0&oq=<%#Eval("comp_adrs") %>&sll=23.192951,72.6299&sspn=0.024023,0.042014&ie=UTF8&hq=&hnear=<%#Eval("comp_adrs") %>,+Odisha,+India&t=m&z=14&ll=20.344743,85.803818&output=embed"></iframe><br /><small><a href="https://maps.google.com/maps?f=q&source=embed&hl=en&geocode=&q=<%#Eval("comp_adrs") %>,+Odisha,+India&aq=0&oq=<%#Eval("comp_adrs") %>&sll=23.192951,72.6299&sspn=0.024023,0.042014&ie=UTF8&hq=&hnear=<%#Eval("comp_adrs") %>,+Odisha,+India&t=m&z=14&ll=20.344743,85.803818" style="color:#0000FF;text-align:left">View Larger Map</a></small>
</div>
</ItemTemplate>
</asp:Repeater>