C#(Windows Phoneの場合)のXMLファイルからデータを読み取ろうとしています。 私は、次のXMLファイルを返す:私はここにありますXMLファイルから緯度と経度の最初のインスタンスを取得しようとしていますC#のXMLファイルからデータを読み取る
private async void GetCoords2()
{
string requestURI = "https://maps.googleapis.com/maps/api/geocode/xml?address=Donegal%20Town&key=XXX";
HttpWebRequest request = HttpWebRequest.Create(requestURI) as HttpWebRequest;
WebResponse response = await request.GetResponseAsync();
using (var reader = new StreamReader(response.GetResponseStream()))
{
responseContent = reader.ReadToEnd();
// Do anything with you content. Convert it to xml, json or anything.
ParseContent();
}
}
:私はオンラインからいくつかのサンプルを踏襲しているhttps://maps.googleapis.com/maps/api/geocode/xml?address=Donegal%20Town&key=XXX
、以前に私が取り組んでいたプロジェクトはありましたが、うまく動作していないようです。
latとlonの最初のインスタンスを取得するにはどうすればよいですか?
ありがとうございました。
編集:URLからキーを削除して、代わりに画像のスクリーンショットを投稿する必要がありました。
更新:現在のコードです。
void ParseContent()
{
XmlReader xmlReader = XmlReader.Create(responseContent);
List<string> aTitle = new List<string>();
// Add as many as attributes you have in your "stop" element
XmlReader reader = XmlReader.Create(responseContent);
reader.ReadToDescendant("location");
while (reader.Read())
{
reader.MoveToFirstAttribute();
reader.ReadToFollowing("lat");
string latX = reader.ReadElementContentAsString();
reader.ReadToFollowing("lng");
string lngX = reader.ReadElementContentAsString();
//reader.ReadToFollowing("Subcategory");
//string subcategory = reader.ReadElementContentAsString();
//reader.ReadToFollowing("Favourited");
//Boolean favourited = Boolean.Parse(reader.ReadElementContentAsString());
//basketxml.Add(new Pets(name, category, subcategory, description, dob, stock, price, image, id, favourited));
MessageBox.Show(latX + "/" + lngX);
}
}
ここで見つけるANSWER: http://www.superstarcoders.com/blogs/posts/geocoding-in-c-sharp-using-google-maps.aspx
あなたが試したことを私たちに見せて、何を示唆しているのかわからない、あるいは誤りを見つけることができます。 – Frecklefoot
@Frecklefootは現在imにコードを掲載しています。いくつかの繰り返しは、hahaを動かさないためにこの段階で削除されました。 – user3102785
@ user3102785このソリューションは、ユーザーが必要とする場所がジオコードから返された結果のリストの最初の結果である場合にのみ機能します。複数の場所が返された場合(例のように)、彼らは私の答えからあなたの 'キー'を削除しても、最初に気づいていない.... :)から選択することができます場所のリスト – Monty