views:

209

answers:

1

How can I plot a point of an address on a map?

I want to basically use VEMap.Find(), but simply get the coordinates of the location.

+1  A: 

When you call Find(), pass in true for the showResults parameter. The Microsoft doc has an example of how to do this: Microsoft's VEMap.Find() documentation

If you really only want the lat/long of a result returned from VEMap.Find(), check out this blog post: Getting Coordinates from VEMap.Find(). The coordinates are accessible in the GetCoordinates function as properties of the findPlaceResults object.

Swingley