我正在做一个学校项目,我需要制作一个简单的网站,在其上添加谷歌地图,从文本文件中读取 100 个不同的地址,并用标记在谷歌地图上显示这些位置。
现在我正在尝试使用我在谷歌地图教程上看到的 javascript 将谷歌地图添加到我的 ASP.net 页面。还有一个问题,我必须将地址转换为坐标。所以为此我正在使用
function addAddressToMap(response) {
if (!response || response.Status.code != 200) {
alert("Sorry, we were unable to geocode that address");
}
else {
place = response.Placemark[0];
point = new GLatLng(place.Point.coordinates[1],place.Point.coordinates[0]);
marker = new GMarker(point);
map.addOverlay(marker);
marker.openInfoWindowHtml(place.address + '<br>' + '<b>Country code:</b> ' + place.AddressDetails.Country.CountryNameCode);
}
}
// showLocation() is called when you click on the Search button
// in the form. It geocodes the address entered into the form
// and adds a marker to the map at that location.
function showLocation() {
var address = "izmit";
var address2 = "ağrı";
geocoder.getLocations(address, addAddressToMap);
geocoder.getLocations(address2, addAddressToMap);
}
这些功能,它们工作正常。但我的问题是,我需要从文本文件中获取这些地址信息。但要获得它们,我需要使用一些不同的代码。我想用 C# 代码在服务器端实现它。但我不知道如何在服务器端编写一些代码,然后将一些东西作为地址返回到 HTML 端。我希望你明白。谢谢你的帮助。
更新:
Server code:
public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
Page.ClientScript.RegisterArrayDeclaration("Skills", "'asa'");
Page.ClientScript.RegisterArrayDeclaration("Skills", "'bell'");
Page.ClientScript.RegisterArrayDeclaration("Skills", "'C'");
Page.ClientScript.RegisterArrayDeclaration("Skills", "'C++'");
}
}
Client side:
function showLocation()
{
var address = "izmit";
var address2 = "ağrı";
geocoder.getLocations(Skills[0], addAddressToMap);
}
现在,如果我使用“asa”而不是 Skills[0],它将显示位置和标记,但使用 Skills[0] 则不起作用。感谢您的回答,这正是我正在寻找的。
即使我尝试 var MyValue = Skills[0]; 然后使用 MyValue 而不是 Skills[0] 它仍然无法正常工作