virtual-earth

Windows Visual Earth query

is it possible to make a mouse click polyline wherein you can set the coordinates using your mouse that may tell that this closed in polyline area is what I selected? ...

Windows Visual Earth query

how can I have a self pointed polygon/polyline in visual earth? I mean You can let say place a point with your mouse or something. Please help me tweak it thanks alot! ...

Why does GetClusterShape return null when the cluster specification was retrieved through the GetClusteredShapes method?

Suppose I have a virtual earth shape layer called shapeLayer1 (my creative energy is apparently at an alltime low). When i call the GetClusteredShapes method I get an array of VEClusterSpecification objects that represent each and every one of my currently visible clusters; no problem there. But when I call the GetClusterShape() method...

Virtual Earth Control - strange floating behavior

I've been working my way through the "NerdDinner" MVC tutorial, and I just reached the part about adding a map control. I've run into some strange behavior of the Virtual Earth control that I just can't seem to figure out: http://img17.imageshack.us/img17/3379/virtualearth.png If you can't see the picture, the Virtual Earth control is...

Interactive polygon editing with Microsoft Virtual Earth

Does Virtual Earth have any kind of built-in support for interactive polygon editing? Something like Google Maps' polygon.enableEditing() would be ideal. ...

Virtual Earth or Google Maps

Simple question, the answer may not be... I'm going to be developing a web app (ASP.NET MVC) for a client. They have asked me for an opinion on whether to use Google Maps or Virtual Earth for providing a mapping solution. Which would you go for and why? Or are there others you can recommend? What else do you need to know? Street vie...

Virtual Earth maps don't show when starting as display:none

I have this code to show a map using the Virtual Earth API: <script type="text/javascript"> function GetMap() { var map = map = new VEMap('myMap'); map.LoadMap(new VELatLong(47.6, -122.33), 10, 'h', false); } $(document).ready(function() { GetMap(); }); </script> <a href="#" onclick="$('#myMap').togg...

Real-time Data Visualization using any Earth API

How to create something like on this video (1-2 minutes http://www.ted.com/index.php/talks/sergey_brin_and_larry_page_on_google.html) using "Google Earth API" or some other? Especially: I have an online game and want to show dynamical data on some "virtual earth". 3 types of objects changing their state in real-time. It's enough to upda...

Attaching and Detaching events to/from Virtual Earth maps

I don't think this is particularly quirky, but in an attempt to control my JavaScript code (if it is possible to really control JavaScript ;-) ) I have been wrapping all of my client-side JavaScript in lovely objects. Or as lovely as I can make them anyway. One of the first issues I came across was attaching events to anything from with...

Plotting Address on Virtual Earth

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. ...

Virtual Earth VEShapeLayer Will Not Render

The goal: Allow user to turn on and off different layers of data; and to dynamically pull the data for the current extent from a database on map move event. This works fine and good if you hard code your VEShapeLayers as done here. My list of layers is coming from a database, I have everything working the way I want except that when I ...

How to send multiple waypoints to a virtual earth routing web service

Hi, I'm trying to use the virtual earth web service: http://staging.dev.virtualearth.net/webservices/v1/routeservice/routeservice.svc?wsdl to return the total journey distance made by a vehicle that has stopped at several points. My code works fine for journeys with 4 waypoints, but anything more than that I get the following error: ...

Bing Maps - how to link to a push pin from a link outside the map

I have a Virtual Earth Maps (Bing Maps??) to which I have added a set of pushpins. Each pushpin is labelled 1 to n. In addition to adding pushpins to the map, I also add text to the web-page that contains the description to each pushpin. I would like to add a link to the text outside the map, that when clicked will open the balloon asso...

Custom Navigation Map Controls for Bing Maps (formerly Virtual Earth) to replace the default MS one

I'd like to jazz up our map interface which uses microsoft's bing maps. I'm tired of the default blue control that you see on every page. I'm not a graphic designer so I was wondering if anyone had created custom map controls which they wouldn't mind sharing with the community for commercial purposes. I really like the one that harley-...

If NerdDinner had ads, would the Bing Maps compoment have licensing costs?

If I hosted NerdDinner and had google ad-sense would I be a commercial user of Bing Maps / Virtual Earth thus have licensing costs? I've looked and found this question: http://stackoverflow.com/questions/828853/virtual-earth-or-google-maps and the TOS: http://www.microsoft.com/maps/product/terms.html but neither answer my question.. I'...

Virtual Earth, VEPolyline problem

In a project of mine which relies on VE API, i face a weird situation. I construct VEPolyline and apply array of VELatLong objects to it, array is generated in jQuery's $.each loop like push = new Array(); $.each(arr,function(index,ele) path.push(ele); }) everything is ok until zoomed, then i get following error: Unexpected value...

Can I integrate Reporting Services and Virtual Earth?

Our system receives status information from fleets of buses. We currently use Reporting Services 2008 to present a list of daily events, such as vehicle breakdowns, speeding, passenger counts, etc. I'd like to add an interactive map to visually indicate the geographic location of each event. Unfortunately, I can't see an easy way to e...

VEMap Pan triggers VEMap.onclick

I'm using the Virtual Earth (or Bing!...) SDK and need to attach an event when someone clicks the map. Unfortunately panning the map also triggers the onclick event. Does anyone know of a work around? function GetMap(){ map = new VEMap('dvMap'); map.LoadMap(new VELatLong(35.576916524038616,-80.9410858154297), 11, 'h',false); mapIsInit...

Is there a restriction on MapPoint GlobeControl objects?

I am trying to make a control that makes use of the MapPoint 3d rendering engine. The control gets a GlobeControl (via the GlobeControl constructor) and then renders a 3D map. The problem is that if I try to get another GlobeControl later the globeControl.Host object of the newly constructed GlobeControl has almost all of its members ...

(VirtualEarth) How do you access the Shape ID from the map?

I have a virtual earth map which loads its Shapes (pushpins) from the Code Behind file (server side). I also have a ticker which runs across the top of the map which shows the cities for which we have a pushpin. I want to add aN "onmouseover" event to the city name within the ticker, so that when the user hovers over the city, the corr...