I am getting index was outside the bounds of the array exception on this line
string strLat = myCoordenates.Results[0].Geometry.Location.Lat.ToString();
This is supposed to pull the latitude from a geocode request and turn it into a string.
Here is the class I am using to Geocode, I got it from here:How to store geocoded address information into the database
using System.Net;
using System.Runtime.Serialization;
using System.Runtime.Serialization.Json;
using System.Web;
public class GoogleMapsDll
{
public class GoogleMaps
{
/// <summary>
///
/// </summary>
/// <param name="address"></param>
/// <returns></returns>
public static GeoResponse GetGeoCodedResults(string address)
{
string url = string.Format(
"http://maps.google.com/maps/api/geocode/json?address={0}®ion=dk&sensor=false",
HttpUtility.UrlEncode(address)
);
var request = (HttpWebRequest)HttpWebRequest.Create(url);
request.Headers.Add(HttpRequestHeader.AcceptEncoding, "gzip,deflate");
request.AutomaticDecompression = DecompressionMethods.GZip | DecompressionMethods.Deflate;
DataContractJsonSerializer serializer = new DataContractJsonSerializer(typeof(GeoResponse));
var res = (GeoResponse)serializer.ReadObject(request.GetResponse().GetResponseStream());
return res;
}
}
[DataContract]
public class GeoResponse
{
[DataMember(Name = "status")]
public string Status { get; set; }
[DataMember(Name = "results")]
public CResult[] Results { get; set; }
[DataContract]
public class CResult
{
[DataMember(Name = "geometry")]
public CGeometry Geometry { get; set; }
[DataContract]
public class CGeometry
{
[DataMember(Name = "location")]
public CLocation Location { get; set; }
[DataContract]
public class CLocation
{
[DataMember(Name = "lat")]
public double Lat { get; set; }
[DataMember(Name = "lng")]
public double Lng { get; set; }
}
}
}
public GeoResponse()
{ }
}
}
I have read this whole thing (What is an IndexOutOfRangeException / ArgumentOutOfRangeException and how do I fix it?) and parts of it multiple times but I still am not sure how to fix this. I feel like maybe it might be because I am not getting any results from my api request but I am not sure how to tell this for sure.
It's obvious that you get outside the bounds of the array exception because you try to access
myCoordenates.Results[0]
butmyCoordenates.Results
has no elements. Always check ifmyCoordenates.Results
is null and ifmyCoordenates.Results
contains any elements before accessingmyCoordenates.Results[0]
. You also need to check ifmyCoordenates.Results[0].Geometry
is null and ifmyCoordenates.Results[0].Geometry.Location
is null to avoid NullReferenceException, which is also explained here: What is a NullReferenceException and how do I fix it?Generally speaking, when
myCoordenates.Results
is not null you must always check ifmyCoordenates.Results.Length
is larger thann
if you want to accessmyCoordenates.Results[n]
. Below is the example if you want to access the fourth element ofmyCoordenates.Results