Hi,
I'd like to know if I can use VERouteLocation.Address = value to specify an address. I have a db of addresses and want to use this to add pushpins.
My other choice is some state GIS data that I don't know where to begin with, consisting of tax maps, roads, etc., the usual. None of it provides me with lat/long data, and I have hundreds of locations to map.
Thanks,
zeecue

Beginner Help: VERouteLocation.Address = value
Taniabr
Try calling the map.Find method, passing in nothing for the "what" parameter.
http://msdn.microsoft.com/library/default.asp url=/library/en-us/VEMapControl/HTML/M_Namespace_VEMap_Find.asp
That will return a VEFindResults oblect.
You can reference the VEFindREsults[0].LatLong property which is the VELatLong object that you need to pass in to the map.AddPushpin method to add your pushpins.
http://msdn.microsoft.com/library/en-us/VEMapControl/HTML/T_Namespace_VEFindResult_Properties.asp