Vote count:
0
I am having 2 lists: latitude and longitude.
List<double> latitude = new List<double>();
List<double> longitude = new List<double>();
As the name, each element in these lists is a double value represents for latitude (in latitude list) and longitude (in longitude list).
Is there anyway that I can create another List called PointLatLng
that each element is a pairs of one latitude and one longitude from the corresponding list?
For example: PointLatLng[0] = (latitude[0], longitude[0])
Knowing that GMap.NET has the method public PointLatLng(double lat, double lng)
asked 23 secs ago
Aucun commentaire:
Enregistrer un commentaire