Hi,
I have an XML file with sample data as below in windows store apps..
<Exchanges>
<Exchange DistrictIDFullName="TREPS" DistrictID="TR" ExchangeGroupCode="ASB" Latitude="55.8533" Longitude="-2.38732" />
<Exchange DistrictIDFullName="DESCTR" DistrictID="DE" ExchangeGroupCode="ABT" Latitude="54.8411" Longitude="-3.28524" />
</Exchanges>
I have two requirements.
1. Need to read all DistrictID's and store it in a list.
2. Need to make another list with DistrictID's based on the latitude and longitude co-ordinates which lie in within 10 degree wrt my current latitude coordinates. Of course my app has the code to find current co-ordinates.
Can somebody help me with code snippets or idea to go ahead. It is little urgent for my work.