我試圖根據放置在JSON中的座標放置標記,但我認爲我沒有在做安靜的事情。在Google地圖中放置標記的JSON數據
public class Stadiums
{
public int ID { get; set; }
public string Team { get; set; }
public decimal Latitude { get; set; }
public decimal Longitude { get; set; }
}
public void GetStadiums()
{
var con = ConfigurationManager.ConnectionStrings["NFLConnectionString"].ToString();
List<Stadiums> matchingStadiums = new List<Stadiums>();
using (SqlConnection myConnection = new SqlConnection(con))
{
string oString = "Select * from Stadiums";
SqlCommand oCmd = new SqlCommand(oString, myConnection);
myConnection.Open();
using (SqlDataReader oReader = oCmd.ExecuteReader())
{
while (oReader.Read())
{
matchingStadiums.Add(new Stadiums
{
Team = oReader["Team"].ToString(),
ID = Convert.ToInt32(oReader["ID"]),
Latitude = Convert.ToDecimal(oReader["Latitude"]),
Longitude = Convert.ToDecimal(oReader["Longitude"])
});
}
ResultstoJSON(matchingStadiums);
myConnection.Close();
}
}
}
public void ResultstoJSON(List<Stadiums> stadiums)
{
var jsonSerialiser = new JavaScriptSerializer();
var json = jsonSerialiser.Serialize(stadiums);
this.JSONData = json;
}
我已經驗證了JSONData包含我以JSON格式查找的所有數據。從這裏,我不知道如何獲取數據並在Google地圖中放置針腳。
@{
Layout = null;
}
<!DOCTYPE html>
<html>
<head>
<title>Simple Map</title>
<meta name="viewport" content="initial-scale=1.0, user-scalable=no">
<meta charset="utf-8">
<style>
html, body, #map-canvas {
height: 100%;
margin: 0px;
padding: 0px;
}
</style>
<script src="https://maps.googleapis.com/maps/api/js? v=3.exp&signed_in=true"></script>
<script>
var myLatlng = new google.maps.LatLng(37.09024, -95.712891);
function initialize() {
var mapOptions = {
zoom: 5,
center: new google.maps.LatLng(37.09024, -95.712891)
};
var map = new google.maps.Map(document.getElementById('map-canvas'),
mapOptions);
var marker = new google.maps.Marker({
position: (myLatlng),
map: map,
title: 'Hello World!'
});
}
google.maps.event.addDomListener(window, 'load', initialize);
</script>
</head>
<body>
<div id="map-canvas"></div>
</body>
</html>
鏈接到JSON數據:http://pastebin.com/cJBDi3ti
再次澄清,我試圖把針/根據JSON數據的項目(有座標)在谷歌地圖標記。
請提供更多信息,包括指向JSON數據的鏈接或帶有Json的JSfiddle的字符串變量,並且Ill會幫助您。 – 2015-02-09 21:59:50
除了「我沒有正確地做事情,我沒有任何具體的問題。 ' – EZI 2015-02-09 22:01:16
我在我的文章底部添加了一個pastebin鏈接。 – John 2015-02-09 22:02:59