我試圖從Bing地圖獲取圖釘的靜態圖像並顯示某些個人的位置。我正在使用bing提供的圖像api,並且基本上使用他們的簡單示例代碼,但我得到的是";?>
而不是圖像。爲什麼不顯示圖像?
<html>
<head>
<title>Driver Locations</title>
</head>
<body>
<?php
$latitude = "40.59507828";
$longitude = "-73.78302689";
$key = "";
$imageryBaseURL = "http://dev.virtualearth.net/REST/v1/Imagery/Map";
$pushpins = "&pp=";
$mapsize = "?mapSize=800,600";
$ppStyle = ";47;";
$imagerySet = "Road";
$JulieCP = $latitude.",".$longitude;
$JuliePP = $JulieCP.$ppStyle."JULIE";
$zoomLevel = "15";
$latitude = "40.90421779";
$longitude = "-73.86591633";
$MarkCP = $latitude.",".$longitude;
$MarkPP = $MarkCP.$ppStyle."MARK";
//http://dev.virtualearth.net/REST/v1/Imagery/Map/Road?mapSize=800,600&pp=40.59507828,-73.78302689;47;JULIE&pp=40.90421779,-73.86591633;47;MARK&key=$key
echo "<img src='".$imageryURL = $imageryBaseURL."/".$imagerySet."?mapSize=800,600".$pushpins.$MarkPP.$pushpins.$JuliePP."&key=".$key."'>";
?>
</body>
</html>
這是一個'.php'文件?瀏覽器的全部源代碼是什麼樣的? – chris85
這是完整的數據源。我想要的只是顯示圖像。是的,這是一個'.php'文件。我也有一個html版本,但它是相同的代碼並返回相同的結果。 – Haru
什麼是'$ longtiude'?你拼錯它... 什麼是'$ imageryURL'?你錯了嗎? –