2016-08-05 77 views
0

這是我用來顯示地圖的iframe的代碼基礎上的地址內創建的iFrame一個地圖:使用Mapquest服務

<iframe 
    src="@("http://media.littlecaesars.com/store/mapdev.html?address="+Model.StoreInfo.StoreInfo[0].ShortAddress.City +", "+ Model.StoreInfo.StoreInfo[0].ShortAddress.State +" "+ Model.StoreInfo.StoreInfo[0].ShortAddress.Zip)" 
    style="width: 100%; height: 400px" 
></iframe> 

OR

<iframe 
    src="@("http://media.littlecaesars.com/store/mapdev.html?address=Troy,Michigan 48083")" 
    style="width: 100%; height: 400px" 
></iframe>` 

但這使得地圖縮小完全如下。

Zoomout Image

我懷疑有不對的「@(,因爲我沒有這個嘗試用它向我展示確切位置的靜態地址。由於我是基於輸入參數我想變量地址假設使用「@(可能有人在這方面的幫助

[注:此代碼寫在CSHTML頁]。

回答

0

該iframe似乎做工精細,所以它可能是一些錯誤的CS HTML。

<iframe 
 
src="http://media.littlecaesars.com/store/mapdev.html?address=Troy,Michigan%2048083" 
 
style="width: 100%; height: 100%;"> 
 
</iframe

嘗試在您的iframe右擊並選擇 「檢查元素」。向上滾動,直到找到iframe並查看它在src中的含義。

+0

是的,和我上面提到的一樣。它的工作原理完全類似於這樣的