Hi all.
If we can please leave the question of Mr. Nazareth's martian parentage (I personally think he was from Jupiter...but hey) and get back to jolly ol' MapPoint?
Code:
FindSpecification fs = new FindSpecification();
fs.DataSourceName = "MapPoint.EU";
fs.EntityTypeNames = new string[]{"PoliceStation"};
try
{
FindResults results = _findService.Find(fs);
int i = results.NumberFound;
}
Why does this return 0 in the #found?
Or, to re-phrase my question, how can I find the nearest police station to a point in the UK, without (heaven forfend, to keep in the religious tone...) uploading my own database of police stations (please Goddess no...)
:P
Gizz