| | Anonymous 12-06-2004, 04:32 AM Having worked on Mappoint from MP2000 and still reading about people needing to get the Street / Town / Postcode etc from Coords
We have created a DLL that can be called from any application.
It works with Mappoint Europe and Mapoint North America.
The DLL takes Decimal Lat/Long and returns a string to your application with a completly Parsed address (inc nearest street/ Town/postcode/area)
I hope this will help all the people needing those nearest street details.
For more information please message me.
:D diazlaz 12-19-2004, 10:23 PM Hi Iggle,
Can you please send me more information about the DLL.
Thanks,
Laz
diazlaz@hotmail.com Please send more info. I would be very interested in this product. Anonymous 12-28-2004, 02:31 PM please send info on your dll for reverse geocoding. PMACAFEE 12-31-2004, 03:41 PM I am interested in your dll. Can you please provide more informaiton?
Thanks
pmacafee@qstc.net
Philip Macafee Anonymous 01-05-2005, 08:53 AM Can you please send me some more information about your dll? Thx.
Leen@entropia.be Anonymous 01-12-2005, 05:51 AM I am interested too.
Thanks
Stefano
s.marzocchi@isinformatica.com Jsisco 01-12-2005, 08:19 AM Please send me information too.
jsisco@tcunet.com Anonymous 01-12-2005, 09:53 AM Please send information on the dll. Send to: bob@towmanager.com Anonymous 01-12-2005, 10:13 AM I am interested in trying your DLL. Can you provide details of where to obtain it from.
neilh@cs-electronics.co.uk Anonymous 01-12-2005, 12:33 PM Hi,
I am very interested by the reverse geocoding DLL. Could u send me more
information please?
Thanks in Advance
Aurelia
Aure_Chark@yahoo.com Anonymous 01-12-2005, 12:52 PM Please let me have more info about your reverse coding DLL
Thanks
Andrew
andrew@castdpm2.demon.co.uk Eric Frost 01-12-2005, 01:17 PM Iggle,
If you are monitoring this thread, please drop a note in here. You were logged in as Guest and did not leave any contact information so there is no way for people to notify you.
Thanks,
Eric rhgreene 01-12-2005, 05:35 PM Please contact me regarding the dll you metioned, I am very interested in using it and would gladly pay you for it.
AhdisaG
BTW: my e-mail is rhgreene@imhotep-ncs.com Anonymous 01-12-2005, 05:57 PM I would be very interested in a dll with that functionality. Please send info to rob@towmanager.com.
Rob Buntin Anonymous 01-13-2005, 09:30 AM I'm interested as well
ttaylor@sandtsecurity.com Anonymous 01-25-2005, 04:10 AM Has anyone actually received any information about this DLL?. I'm beginining to think it is VapourWare!!!! Anonymous 02-04-2005, 08:24 AM Sorry but I was / am unable to log in to the forum fully, and I have also been away from my office on family business,
Please send an E-mail to nigelafford@btinternet.com and I will get back to you with more details ASAP.
Please note I am away from the office until Thursday 10th Feb as from today(4th Feb), but I promiss to reply to anyone who requests more information.
Sorry again for the delay.
Nigel Afford (Iggle) :) reghu.iyer 06-14-2005, 04:33 AM I'm really interested in your dll. Can you give me more information ? dbatterby 07-13-2005, 12:17 PM Iggle
Very interested in you DLL for reverse geo-coding please send me details.
david@ukcoachsearch.net
Thanks
David posipix 08-11-2005, 07:04 PM I have a large number of imported pushpins (located via lat/long) that I need to obtain addresses for, so.... please send me more details of your program.
br
Tim henkdewolde 08-25-2005, 09:29 AM Can you please send me information on this DLL?
Thanks paragon 09-24-2005, 05:00 AM Hi Iggle,
Can you please send me more information about the DLL.
Thanks,
paragon TimmY 12-06-2005, 04:33 PM Hi Iggle,
Im very intrested in your .dll
If possible, please send me info how to obtain.
temp_AT_e-sit.nl
Thanks in advance !
Regards Tim
Has anyone here ever actually worked with this .dll ? calv1ns 12-07-2005, 08:02 PM Vapor-ware Tim.
Eric you should delete this thread. Eric Frost 12-07-2005, 09:38 PM Someone should just wrap one and take over the thread.
Eric mikica1972 01-22-2006, 07:14 PM Hi guys,
I'm not sure if this is what you're looking for, however here is C# code wrapped in DLL library that I'm using in my apps:
...
using interopMapPoint = MapPoint;
...
public static string GetAddressSuburbNameForLatLong(double latitude, double longitude)
{
string sName = "";
MapPoint.MapClass objMap = new MapPoint.MapClass();
interopMapPoint.Location objLocation = objMap.GetLocation(latitude, longitude, 1);
objLocation.GoTo();
int iCount = 0;
foreach (object obj in (interopMapPoint.FindResults)objMap.ObjectsFromPoi nt(objMap.LocationToX(objLocation), objMap.LocationToY(objLocation)))
{
iCount += 1;
if (iCount == 4)
sName += ((interopMapPoint.Location)obj).Name;
else
sName += ((interopMapPoint.Location)obj).Name + ",";
}
return sName;
}
I'm not using this forum very often, so please accept my appology for not being prompt.
Cheers,
Stjepan Nikolic
Melbourne fsarraj 03-07-2006, 05:37 AM Hi Iggle,
Can you please send me more information about the DLL.
Thanks,
Fari
Farida.elsarraj@gmail.com harrd21 06-22-2006, 11:33 AM Hi Iggle,
I would like more information sent to me about the DLL.
Thanks,
kh harrd21 06-23-2006, 02:26 PM Iggle,
with the address info, can your DLL also pull census tract info from the Long/Lat?
If so, can you send a copy of it to
harrell@delta-21.com
thanks,
kh nigel 07-26-2006, 11:21 AM RE: "Vapor-ware"
Hi All,
The DLL / Code does exist and does work well and fast (average 10 fully reversed locations per second).
I have used it with Mappoint North America and Mappoint Europe with complete success.
I have created a demo application that use the same code, I will happily send out to anyone who wants proof that it functions.
The problem is that people can not call the DLL from their development envioroment as it is writen in Delphi and this does make calling the functions difficult due to the strange way Delphi works with DLLs.
Nigel | |