Using Virtual Earth in a WPF Application
- Posted: Jun 27, 2008 at 7:52 AM
- 10,794 Views
- 4 Comments
Loading User Information from Channel 9
Something went wrong getting user information from Channel 9
Loading User Information from MSDN
Something went wrong getting user information from MSDN
Loading Visual Studio Achievements
Something went wrong getting the Visual Studio Achievements
Right click “Save as…”
Comments have been closed since this content was published more than 30 days ago, but if you'd like to continue the conversation,
please create a new thread in our Forums,
or
Contact Us and let us know.
Follow the Discussion
Oops, something didn't work.
What does this mean?
Following an item on Channel 9 allows you to watch for new content and comments that you are interested in. You need to be signed in to Channel 9 to use this feature.What does this mean?
Following an item on Channel 9 allows you to watch for new content and comments that you are interested in and view them all on your notifications page.sign up for email notifications?
I played around with Virtual Earth and WPF a while back but ran into Z-Order and DOM issues. Looks like the latest version of the WPF browser control and your "layered window trickery" solves most of the issues.
However, I think the real power in doing something like this would be XAML pushpins with dynamic colors and numbers. I imagine just keeping the hidden top layer buttons visible and using a small transparent gif for the ve pushpin would do it. You'd lose the pushpin mouseover but I guess you could use the button mouseover event at that point. A custom dashboard would be needed to prevent the XAML buttons from covering it as well. Any other thoughts? Thanks!
I actually had WPF pushpins originally, but chose not to go that route. That's not to say you couldn't. In fact, I actually use an invisible (Opacity=".01") WPF button over the pushpin rendered by the map. That's how I chose to implement the ability to hover over the pushpin and get a WPF InfoBox (implemented as a UserControl). If you really want to have WPF based pushpins, just comment out line 387 in VEMap and comment out line 401 which is the call telling VE to add the pushpin.
I chose not to use WPF pushpins for two reasons. First, it seemed like overkill to render such a small UI element as a vector graphic since pushpins are typically fixed width and height. Second, due to the delay in event notification between JavaScript & managed code, the repositioning of the pushpins is a little “jerky.” So I am a bigger fan of drawing your pushpins with a vector drawing tool, and then saving them as bitmaps. You get the same visual experience with better overall perf. Your mileage may vary.
Remove this comment
Remove this thread
close