Hello,
I am new to the RadMap and GeoCoding in general and have a question.
The first version of this application will be a thin WPF client, and in this version it will show a map with a route drawn on it. Is it possible to show the current location (where the app is running) on the RadMap by using the Internet connection the host computer is using?
Any suggestions would be great.
Thanks!
Reid
I am new to the RadMap and GeoCoding in general and have a question.
The first version of this application will be a thin WPF client, and in this version it will show a map with a route drawn on it. Is it possible to show the current location (where the app is running) on the RadMap by using the Internet connection the host computer is using?
Any suggestions would be great.
Thanks!
Reid
4 Answers, 1 is accepted
0
Hello Reid,
This task does not concern the regular geocoding. Regular geocoding can detect geographical coordinates (lat/lon) using postal address and vice versa.
In your case you need to detect geographical coordinates by IP address. It is so called geolocation. RadMap doesn't provide this functionality. There are several services in the Internet which could help you. For example:
http://www.maxmind.com/
http://compnetworking.about.com/od/traceipaddresses/f/ip_location.htm
But most of them aren't free. In anyway, you have to create code which will communicate with these services by yourself.
Kind regards,
This task does not concern the regular geocoding. Regular geocoding can detect geographical coordinates (lat/lon) using postal address and vice versa.
In your case you need to detect geographical coordinates by IP address. It is so called geolocation. RadMap doesn't provide this functionality. There are several services in the Internet which could help you. For example:
http://www.maxmind.com/
http://compnetworking.about.com/od/traceipaddresses/f/ip_location.htm
But most of them aren't free. In anyway, you have to create code which will communicate with these services by yourself.
Kind regards,
Andrey Murzov
the Telerik team
Do you want to have your say when we set our development plans?
Do you want to know when a feature you care about is added or when a bug fixed?
Explore the
Telerik Public Issue Tracking
system and vote to affect the priority of the items
0

Reid
Top achievements
Rank 2
answered on 01 Jul 2011, 10:47 PM
Hello Andrey,
Thanks for those links. I have since done more research and realized that you can buy recievers that plug into the com port or USB. It is then a matter of parsing the NMFA packets that they emit to get the current location. Those devices average $70 U.S. Dollars.
Thanks,
Reid
Thanks for those links. I have since done more research and realized that you can buy recievers that plug into the com port or USB. It is then a matter of parsing the NMFA packets that they emit to get the current location. Those devices average $70 U.S. Dollars.
Thanks,
Reid
0
Hello Reid,
You definitely can use any hardware devices to get your current location via GPS. But it's your responsibility to create the communication code which will take packets from it and then pass the coordinates to the RadMap.
Greetings,
You definitely can use any hardware devices to get your current location via GPS. But it's your responsibility to create the communication code which will take packets from it and then pass the coordinates to the RadMap.
Greetings,
Andrey Murzov
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items
0

Reid
Top achievements
Rank 2
answered on 06 Jul 2011, 01:30 PM
Agreed. Thank you.