This forum is closed. Thank you for your contributions.
doublelat1 = selecteditem.geometry.location.lat;
doublelng1 = selecteditem.geometry.location.lng;
if I write like above it show the null reference exception for this any solutions is there
Regards
Sateesh .B
Off-topic for this forum, please aks this in the correct (MSDN) Foru
You can use WHERE clause expression to filter on angular distance from an origion.
SELECT ... FROM ...
WHERE (Latitude-x0)*(Latitude-x0) + (Longitude-y0)*(Longitude-y0) < r*r;
thanks for your replay Rihann