-1
我一樣有一個justdial.com應用程序,其中每當地址輸入到地址輸入到數據庫,從那裏同一地址用於創建谷歌地圖的形式。動態地添加谷歌地圖在我的應用程序
整個代碼是在轉發標籤即每一個新的地址輸入谷歌地圖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>