View Single Post

  #1 (permalink)  
Old 03-30-2005
Gizz Gizz is offline
Junior Member
White Belt
 
Join Date: Jan 2005
Posts: 4
The real da Vinci Code (Map Point Specific)

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
Reply With Quote