| Re: Drawing Multiple Radius Circles
You will need to do this with custom programming.
For each location, you need a call to AddShape, eg. in VB6:
myMap.Shapes.AddShape geoShapeCircle, oLoc, 30,30
where myMap is your Map object, oLoc is your location object.
If you have the pins already, you would also need code to loop over the pushpins getting their locations (=oLoc).
Richard |