Quick answer: Not in VE, at least not right now.
You can do this with MWS, and the product team knows this is a very common request for VE.
var saveAP = null;
function findPlaces(what, where)
{
// save the AddPushpin method
saveAP = vemap.AddPushpin;
// change it to do nothing
vemap.AddPushpin = function() {};
// do the find
vemap.Find(what, where, 1, foundPlaces);
}
function foundPlaces(results)
{
// restore the AddPushpin method
vemap.AddPushpin = saveAP;
// process results and add pushpins manually ...
}
Can you please tell me how you can find nearby places using MapPoint web services given the current virtual earth map view
My problem is that i need to display some information on the current map view like schools, hotels, parks and stuffs, how can I achieve this with Mappoint and get data about a specific area.
Thanks,
Csun
How do you know version 5 of Virtual Earth will be released tomorrow
Anyhow,
Do you have any samples for findNearby, basically I don't want a radius search I want a search within the current map view
Thanks
Csun
Thank you I already checked that.
But now I have new version new issues LOL
Did you play with the ShowDetailOnMouseOver and OnMouseOverCallback in Version 5
Chris,
Did you see anything in the v5 documentation that addresses this issue
Also, would you kindly confirm for me that I'm reading the right thread if I need to add more than 20 POI pushpins to a map view
Regards,
Fred