<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress.com" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	>

<channel>
	<title>virtual-earth &amp;laquo; WordPress.com Tag Feed</title>
	<link>http://en.wordpress.com/tag/virtual-earth/</link>
	<description>Feed of posts on WordPress.com tagged "virtual-earth"</description>
	<pubDate>Tue, 01 Dec 2009 16:05:29 +0000</pubDate>

	<generator>http://en.wordpress.com/tags/</generator>
	<language>en</language>

<item>
<title><![CDATA[Poll Results: GIS Web Application Development Platform]]></title>
<link>http://geochalkboard.wordpress.com/2009/11/12/poll-results-gis-web-application-development-platform/</link>
<pubDate>Thu, 12 Nov 2009 22:44:02 +0000</pubDate>
<dc:creator>epimpler</dc:creator>
<guid>http://geochalkboard.wordpress.com/2009/11/12/poll-results-gis-web-application-development-platform/</guid>
<description><![CDATA[Our recent poll (it&#8217;s not too late to vote) concerning current and future plans regarding your]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Our <a href="http://geochalkboard.wordpress.com/2009/10/29/poll-gis-web-development-platform/" target="_self">recent poll</a> (it&#8217;s not too late to vote) concerning current and future plans regarding your development platform for web mapping applications resulted in some interesting patterns.   You can <a href="http://answers.polldaddy.com/poll/2184478/?view=results" target="_blank">view the results here</a>.  We&#8217;ve had 643 as of now.</p>
<ul>
<li>ArcGIS Server and it&#8217;s many developer choices accounted for <strong>208 votes</strong> or <strong>32%</strong>.</li>
<li>The ArcGIS Server JavaScript API appears to be the #1 choice among ArcGIS Server developers with 63 votes.</li>
<li>The Flex API is running second behind the JavaScript API</li>
<li>Interestingly, more people are still developing on ArcIMS than are using the ArcGIS Server Java ADF</li>
<li>Open Source development platforms including OpenLayers,  MapServer, and GeoDjango are increasingly popular with<strong> 221 votes</strong> between them or <strong>34% of the vote</strong>.</li>
<li>OpenLayers was the leader of the pack&#8230;.no surprise there.</li>
<li>The Google Maps API continues to be a popular choice with <strong>82 votes or 13%</strong>.</li>
<li>Bing Maps remains far behind Google Maps</li>
<li>A fair amount of votes in the &#8220;Other&#8221; category with <strong>70 votes</strong>.</li>
</ul>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Databinding shapes with the Bing Maps control for Silverlight]]></title>
<link>http://davidburela.wordpress.com/2009/11/02/databinding-shapes-with-the-bing-maps-control-for-silverlight/</link>
<pubDate>Mon, 02 Nov 2009 04:53:47 +0000</pubDate>
<dc:creator>David Burela</dc:creator>
<guid>http://davidburela.wordpress.com/2009/11/02/databinding-shapes-with-the-bing-maps-control-for-silverlight/</guid>
<description><![CDATA[The March 2009 release of the Virtual Earth control for Silverlight (now known as the bing map contr]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>The March 2009 release of the Virtual Earth control for Silverlight (now known as the bing map control) was a great release. Up until then, projects like Deep Earth were trying to provide us with a way to use deep zoom + the virtual earth tiling to allow us to build Silverlight apps. Now Microsoft have given us an official control to play with.</p>
<p>One of the big downsides of the official control was the lack of databinding. You still had to add / remove your pushpins &#38; shapes manually just like you would with the AJAX version. There is code available on the Microsoft website that adds dependency properties to the Bing Maps control which expose ItemsCollection, ready for you to databind to. If you combine this with some custom datatemplates, you are able to databind directly to the map as you would expect.</p>
<h3>Step 1. Install the Bing Maps control</h3>
<p>The CTP of the control is available from Microsoft connect <a href="https://connect.microsoft.com/silverlightmapcontrolctp">https://connect.microsoft.com/silverlightmapcontrolctp</a></p>
<p> <!--more--><br />
<h3>Step 2. Download the databinding enabler</h3>
<p>You just need to download this single .cs file and include it in your project <a href="http://code.msdn.microsoft.com/VESLBindingProps">http://code.msdn.microsoft.com/VESLBindingProps</a></p>
<h3>Step 3. Add the Bing maps control to your .xaml page</h3>
<p>Add the virtual earth namespace for the control, the ve namespace for the dependency properties, and then the grid. It should look something like this</p>
<pre class="csharpcode"><span class="kwrd">&#60;</span><span class="html">UserControl</span> <span class="attr">x:Class</span><span class="kwrd">=&#34;SDDNTestRun.MainPage&#34;</span>
    <span class="attr">xmlns</span><span class="kwrd">=&#34;http://schemas.microsoft.com/winfx/2006/xaml/presentation&#34;</span>
    <span class="attr">xmlns:x</span><span class="kwrd">=&#34;http://schemas.microsoft.com/winfx/2006/xaml&#34;</span>
    <span class="attr">xmlns:d</span><span class="kwrd">=&#34;http://schemas.microsoft.com/expression/blend/2008&#34;</span>
    <span class="attr">xmlns:mc</span><span class="kwrd">=&#34;http://schemas.openxmlformats.org/markup-compatibility/2006&#34;</span>
    <span class="attr">xmlns:VirtualEarth</span><span class="kwrd">=&#34;clr-namespace:Microsoft.VirtualEarth.MapControl;assembly=Microsoft.VirtualEarth.MapControl&#34;</span>
    <span class="attr">xmlns:ve</span><span class="kwrd">=&#34;clr-namespace:Synergist.VE&#34;</span>
    <span class="attr">mc:Ignorable</span><span class="kwrd">=&#34;d&#34;</span> <span class="attr">d:DesignWidth</span><span class="kwrd">=&#34;640&#34;</span> <span class="attr">d:DesignHeight</span><span class="kwrd">=&#34;480&#34;</span><span class="kwrd">&#62;</span>
    <span class="kwrd">&#60;</span><span class="html">Grid</span> <span class="attr">x:Name</span><span class="kwrd">=&#34;LayoutRoot&#34;</span> <span class="kwrd">&#62;</span>
        <span class="kwrd">&#60;</span><span class="html">VirtualEarth:Map</span> <span class="attr">x:Name</span><span class="kwrd">=&#34;MyMap&#34;</span>
                <span class="attr">CopyrightVisibility</span><span class="kwrd">=&#34;Collapsed&#34;</span> <span class="attr">LogoVisibility</span><span class="kwrd">=&#34;Collapsed&#34;</span> <span class="attr">Mode</span><span class="kwrd">=&#34;Aerial&#34;</span><span class="kwrd">&#62;</span>
        <span class="kwrd">&#60;/</span><span class="html">VirtualEarth:Map</span><span class="kwrd">&#62;</span>
    <span class="kwrd">&#60;/</span><span class="html">Grid</span><span class="kwrd">&#62;</span>
<span class="kwrd">&#60;/</span><span class="html">UserControl</span><span class="kwrd">&#62;</span></pre>
<h3>Step 4. Add the data template for shapes and the map layer</h3>
<p>This data template to databind polyshapes is fairly easy. You just need to set the polyshape style (thickness, colour, etc.) and then databind the points to the locations collection</p>
<pre class="csharpcode">&#60;DataTemplate x:Key=<span class="str">&#34;MapShape&#34;</span>&#62;
    &#60;VirtualEarth:MapPolygon Fill=<span class="str">&#34;Orange&#34;</span> Stroke=<span class="str">&#34;Green&#34;</span> StrokeThickness=<span class="str">&#34;2&#34;</span> Opacity=<span class="str">&#34;0.4&#34;</span> Locations=<span class="str">&#34;{Binding}&#34;</span> /&#62;
&#60;/DataTemplate&#62;</pre>
<p>And here is how you add the layer to the map</p>
<pre class="csharpcode">&#60;VirtualEarth:Map x:Name=<span class="str">&#34;MyMap&#34;</span>
    CopyrightVisibility=<span class="str">&#34;Collapsed&#34;</span> LogoVisibility=<span class="str">&#34;Collapsed&#34;</span> Mode=<span class="str">&#34;Aerial&#34;</span>&#62;
    &#60;VirtualEarth:MapLayer x:Name=<span class="str">&#34;ShapeLayer&#34;</span>
        ve:Properties.ItemsSource=<span class="str">&#34;{Binding}&#34;</span>
        ve:Properties.ItemTemplate=<span class="str">&#34;{StaticResource MapShape}&#34;</span> /&#62;
&#60;/VirtualEarth:Map&#62;</pre>
<h3>Step 5. Add some data to the layer</h3>
<p>This is the fun bit, figure out what the coordinates for your shape are and create a collection for it. Myself, i’m going to use the site of the Microsoft office here in Melbourne. I’m just going to do this in the page constructor in the code behind</p>
<pre class="csharpcode">MyMap.Center = <span class="kwrd">new</span> Location(-37.8222600730785, 144.962552763317);
MyMap.ZoomLevel = 17;

var shapeList = <span class="kwrd">new</span> ObservableCollection&#60;LocationCollection&#62;
{
<span class="kwrd">new</span> LocationCollection
    {
        <span class="kwrd">new</span> Location(-37.8217176782418, 144.961662269924),
        <span class="kwrd">new</span> Location(-37.8214041044085, 144.962391830776),
        <span class="kwrd">new</span> Location(-37.8222346484096, 144.963314510677),
        <span class="kwrd">new</span> Location(-37.8228194135791, 144.962638594005),
        <span class="kwrd">new</span> Location(-37.8223617716666, 144.961887575481),
        <span class="kwrd">new</span> Location(-37.8220397256568, 144.962005592678),
    }
};
ShapeLayer.DataContext = shapeList;</pre>
<h3>Step 6. Hit run and see your databinding in action!</h3>
<p>Because we are databinding to an observable list, we can just add new items to it and watch the new shapes appear. It is also possible to add extra points to an existing shape, and see it update live on the map.</p>
<p>If you want to add an extra shape, add this to a click event to see the databinding happening interactively</p>
<pre class="csharpcode">shapeLists.Add(<span class="kwrd">new</span> LocationCollection()
{
    <span class="kwrd">new</span> Location(-37.8207645163828, 144.961630711604),
    <span class="kwrd">new</span> Location(-37.8200356576319, 144.96164144044),
    <span class="kwrd">new</span> Location(-37.8197136014726, 144.96321857934),
    <span class="kwrd">new</span> Location(-37.8206882408042, 144.962092051554)
});</pre>
<h3>Step 7. Pushpins</h3>
<p>Pushpins are a little more involved. Here i have created a “Point of Interest” class, that has the location and extra details. Here i’m just going to use the location property to databind to. The good thing is that you can use any control as your pushpin. In the included sample my PushPin control expands out when you hover, and collapses when you move off it.</p>
<pre class="csharpcode"><span class="kwrd">&#60;</span><span class="html">DataTemplate</span> <span class="attr">x:Key</span><span class="kwrd">=&#34;MicrosoftPushPin&#34;</span><span class="kwrd">&#62;</span>
    <span class="kwrd">&#60;</span><span class="html">Controls:PushPin</span> <span class="attr">VirtualEarth:MapLayer</span>.<span class="attr">MapPosition</span><span class="kwrd">=&#34;{Binding Loc}&#34;</span>
        <span class="attr">VirtualEarth:MapLayer</span>.<span class="attr">MapPositionMethod</span><span class="kwrd">=&#34;Center&#34;</span>  <span class="kwrd">/&#62;</span>
<span class="kwrd">&#60;/</span><span class="html">DataTemplate</span><span class="kwrd">&#62;</span></pre>
<pre class="csharpcode"><span class="kwrd">public</span> <span class="kwrd">class</span> POI
{
    <span class="kwrd">public</span> <span class="kwrd">string</span> Loc { get; set; }
    <span class="kwrd">public</span> <span class="kwrd">string</span> Description { get; set; }
}

<span class="rem">//In the class constructor</span>
PushPinLayer.DataContext = <span class="kwrd">new</span> ObservableCollection&#60;POI&#62;
{
   <span class="kwrd">new</span> POI() { Loc = <span class="str">&#34;-37.8222600730785, 144.962552763317&#34;</span> }
};</pre>
<h3>Sample app</h3>
<p><a href="http://davidburela.files.wordpress.com/2009/11/image.png"><img style="display:inline;border-width:0;" title="image" border="0" alt="image" src="http://davidburela.files.wordpress.com/2009/11/image_thumb.png?w=223&#038;h=244" width="223" height="244" /></a></p>
<p>In case you just want to see it working, I’ve included the demo I built live at the Melbourne Silverlight Desiginer &#38; Developer Network. Good luck!</p>
<p><a href="http://cid-fc3a2c38819e3e29.skydrive.live.com/self.aspx/Blog/VirtualEarthBindingDemo.zip">http://cid-fc3a2c38819e3e29.skydrive.live.com/self.aspx/Blog/VirtualEarthBindingDemo.zip</a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Integrate Virtual Earth with SharePoint 2007]]></title>
<link>http://jbarkes.wordpress.com/2009/10/28/integrate-virtual-earth-bing-with-sharepoint/</link>
<pubDate>Wed, 28 Oct 2009 05:14:10 +0000</pubDate>
<dc:creator>Jason Barkes</dc:creator>
<guid>http://jbarkes.wordpress.com/2009/10/28/integrate-virtual-earth-bing-with-sharepoint/</guid>
<description><![CDATA[While there are a variety of WebParts out there for embedding Virtual Earth into your SharePoint sit]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><img class="alignnone" style="border:0;margin:0;" src="http://jbarkes.wordpress.com/files/2009/10/v-earth011.jpg" alt="SharePoint and Virtual Earth" width="488" height="339" /></p>
<p>While there are a variety of WebParts out there for embedding Virtual Earth into your SharePoint site, there is a much quicker and easier solution that only requires out-of-the-box features &#8211; namely the Content Editor WebPart and the EMBED tag.</p>
<p>The next quick clip shows Virtual Earth embedded in a public site that I created that uses XML to dynamically control the LONG and LAT of the points of interest (known as pushpins).</p>
<p><span style='text-align:center; display: block;'><object width='425' height='350'><param name='movie' value='http://www.youtube.com/v/_ybUvRzXBmw&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;hd=0' /><param name='allowfullscreen' value='true' /><param name='wmode' value='transparent' /><embed src='http://www.youtube.com/v/_ybUvRzXBmw&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;hd=0' type='application/x-shockwave-flash' allowfullscreen='true' width='425' height='350' wmode='transparent'></embed></object></span></p>
<p>So what are the quick steps?</p>
<p><strong>Step 1</strong>:  create a custom SharePoint ASPX page to host the map.  The easiest way to accomplish this (and what&#8217;s demo&#8217;ed in the next video clip) is with SharePoint Designer.  The code that is pasted in the clip is contained in the source zip.  Make sure you paste the code inside the &#60;form&#62;&#60;/form&#62; tag.</p>
<p><span style='text-align:center; display: block;'><object width='425' height='350'><param name='movie' value='http://www.youtube.com/v/7kA67tP45aI&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;hd=0' /><param name='allowfullscreen' value='true' /><param name='wmode' value='transparent' /><embed src='http://www.youtube.com/v/7kA67tP45aI&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;hd=0' type='application/x-shockwave-flash' allowfullscreen='true' width='425' height='350' wmode='transparent'></embed></object></span></p>
<p><strong>Next Steps: </strong>if you would like a data-driven dynamic map (either XML or a SharePoint list), check out <a href="http://blogs.msdn.com/sharepointdesigner/archive/2007/05/23/plotting-your-data-using-virtual-earth.aspx">Microsoft SharePoint Designer Team Blog</a>.</p>
<p><a href="http://click.officeliveemail.com/?ju=fe4d1c78706303747411&#38;ls=fdf1177370660475731d7570&#38;m=fef012797d6206&#38;l=fec51c7677610478&#38;s=fe1f13737263007d771d79&#38;jb=fef617747c6207&#38;t=">Source: MOSS-VEarth-Simple.zip</a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Bing Maps on Microsoft Surface]]></title>
<link>http://surfaceatsiemens.wordpress.com/2009/10/19/bing-maps-on-microsoft-surface/</link>
<pubDate>Mon, 19 Oct 2009 19:39:54 +0000</pubDate>
<dc:creator>Friedl</dc:creator>
<guid>http://surfaceatsiemens.wordpress.com/2009/10/19/bing-maps-on-microsoft-surface/</guid>
<description><![CDATA[Christmas hasn&#8217;t started yet but I start it now &#8211; with a free piece of software from Sie]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Christmas hasn&#8217;t started yet but I start it now &#8211; with a free piece of software from Siemens.  It&#8217;s called <strong>POIBrowser</strong> (&#8220;Point Of Interest Browser&#8221;) and it&#8217;s more than a Bing Maps showcase!</p>
<p><img class="size-full wp-image-37 " title="POIBrowser" src="http://surfaceatsiemens.wordpress.com/files/2009/10/poibrowser.png" alt="POIBrowser" width="300" height="200" /></p>
<p>POIBrowser offers Bing Maps on a Surface and lets you quickly navigate to preconfigured Points Of Interest (tourist attractions, subway stations, offices of your company, etc&#8230;). For demonstration purposes the default configuration shows a bunch of Siemens offices in Vienna, Austria. However, you can easily put your own targets onto the map and add a thumbnail picture plus text.</p>
<p>After installation check out the <em>Data</em> folder and find the Sites.xml. Each site has a set of properties including the site name, address, description, picture and last but not least the site coordinates!</p>
<p>POIBrowser includes a <a title="Geocoding?" href="http://en.wikipedia.org/wiki/Geocoding">geocoding</a> module. This module connects to a <a title="Microsoft MapPoint" href="http://www.microsoft.com/maps/developers/">Microsoft MapPoint</a> Web Service to translate a specified address into coordinates. The geocoding module requires a <a title="MapPoint Developer Account" href="https://mappoint-css.live.com/mwssignup/Default.aspx">MapPoint Developer Account</a> which you supply via the <em>POIBrowser.exe.config</em> file. If you don&#8217;t have such an account and you don&#8217;t want to create one (<a title="Terms Of Use" href="http://www.microsoft.com/maps/assets/docs/mappoint-developer-terms.aspx">it&#8217;s free!</a>), you have to supply the site coordinates manually for each site. For more details please read the <em>Readme</em> file included in the download package.</p>
<p>Download Siemens POIBrowser <a title="Download Siemens POIBrowser" href="http://uploaded.to/file/g6og16" target="_blank">here</a>!</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Echemos un vistazo al Bing Map Control]]></title>
<link>http://trytocatch.wordpress.com/2009/09/18/echemos-un-vistazo-al-bing-map-control/</link>
<pubDate>Fri, 18 Sep 2009 20:05:03 +0000</pubDate>
<dc:creator>Fernando Sanchez</dc:creator>
<guid>http://trytocatch.wordpress.com/2009/09/18/echemos-un-vistazo-al-bing-map-control/</guid>
<description><![CDATA[Estoy hablando del control que Microsoft tiene para representar el mapa del mundo, sus provincias,  ]]></description>
<content:encoded><![CDATA[Estoy hablando del control que Microsoft tiene para representar el mapa del mundo, sus provincias,  ]]></content:encoded>
</item>
<item>
<title><![CDATA[The Technology Corner: Integrating Silverlight and Virtual Earth with Dynamics GP]]></title>
<link>http://dynamicsgpblogster.wordpress.com/2009/09/07/the-technology-corner-integrating-silverlight-and-virtual-earth-with-dynamics-gp/</link>
<pubDate>Mon, 07 Sep 2009 12:00:00 +0000</pubDate>
<dc:creator>Mariano Gomez</dc:creator>
<guid>http://dynamicsgpblogster.wordpress.com/2009/09/07/the-technology-corner-integrating-silverlight-and-virtual-earth-with-dynamics-gp/</guid>
<description><![CDATA[Starting today, I will introduce a weekly series dedicated to explore other Microsoft technologies t]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Starting today, I will introduce a weekly series dedicated to explore other Microsoft technologies that may seem totally unrelated to Dynamics GP. These articles are based on experiences acquired through <em>pet projects. </em>These are projects that have not made it beyond my computing lab and have become a true passion of mine. My intention is to present them to you the reader with only one goal in mind: <em>show how the use of technology can enhance user interaction with data</em>. The articles will present practical samples of these technologies and how they could perhaps be incorporated into your Dynamics GP development efforts.</p>
<p><span style="font-size:180%;"><strong><em>Part I: The Virtual Earth Silverlight Map Interface<br /></em></strong></span><br />Today we will explore <strong>Silverlight</strong> and <strong>Microsoft Virtual Earth</strong>.</p>
<p>Silverlight was originally introduced as a video streaming plug in, but has rapidly evolved into a feature-rich interactive web applications development framework. In turn, Microsoft Virtual Earth, now Bing Maps for Enterprise, is a set of controls and APIs that allow organizations to take advantage of the latest mapping technology to create unique customer experiences by delivering locally relevant information.</p>
<p><strong>The project</strong></p>
<p>As simple as it may sound, this project allows a user, say for example an account executive traveling to see a customer, to obtain not only geographical location information about the customer, but also view important account information on the map interface.</p>
<p><strong>Getting Started</strong></p>
<p>For this project you will need the following laundry list of development tools and technology components:
<ul>
<li><a href="http://www.microsoft.com/express/vwd/">Microsoft Visual Studio 2008</a></li>
<li><a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=333325FD-AE52-4E35-B531-508D977D32A6&#38;displaylang=en">Microsoft .NET Framework 3.5</a></li>
<li><a href="http://www.microsoft.com/downloads/details.aspx?familyid=9442b0f2-7465-417a-88f3-5e7b5409e9dd&#38;displaylang=en">Microsoft Silverlight 3 Tools for Visual Studio 2008 SP1</a></li>
<li><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=e82db5e2-7106-419e-80b0-65cce89f06bb&#38;displaylang=en">Microsoft Expression Blend 3 + SketchFlow Trial</a> </li>
<li><a href="https://connect.microsoft.com/silverlightmapcontrolctp/Downloads">Microsoft Virtual Earth Silverlight Map Control CTP</a></li>
</ul>
<p>That&#8217;s it!</p>
<p>For having no prior Silverlight or Virtual Earth development experience, this first part of the project went extremely smooth. Of first order, was the creation of the <strong>Silverlight Application</strong> project in Visual Studio.</p>
<p><a href="http://dynamicsgpblogster.wordpress.com/files/2009/09/vesilverlight011.png"><img border="0" alt="" src="http://dynamicsgpblogster.wordpress.com/files/2009/09/vesilverlight011.png?w=300" /></a><br />After entering the project name, and clicking Ok, I was presented with the option of hosting my Silverlight application in a new Web site and to define the project type of my new Web application. These seemed like logical choices, so I sticked to the defaults. Another option (topic of a future article) is the ability to enable .NET RIA services for my Silverlight application.</p>
<p><a href="http://dynamicsgpblogster.wordpress.com/files/2009/09/vesilverlight021.png"><img border="0" alt="" src="http://dynamicsgpblogster.wordpress.com/files/2009/09/vesilverlight021.png?w=300" /></a><br />Following Microsoft&#8217;s definition:</p>
<blockquote><p><em>Microsoft .NET RIA Services simplifies the traditional n-tier application pattern by bringing together the ASP.NET and Silverlight platforms. The RIA Services provides a pattern to write application logic that runs on the mid-tier and controls access to data for queries, changes and custom operations. It also provides end-to-end support for common tasks such as data validation, authentication and roles by integrating with Silverlight components on the client and ASP.NET on the mid-tier.</em></p></blockquote>
<p>However, for this project, I was going to keep it simple and work with <a href="http://msdn.microsoft.com/en-us/library/bb386976.aspx">LINQ to SQL</a> to provide data access to my Silverlight application.</p>
<p>After clicking on the OK button, the solution was setup. In reviewing the Solution Explorer, I had a Silverlight client application and a web application as part of the overall solution.</p>
<p><a href="http://dynamicsgpblogster.wordpress.com/files/2009/09/vesilverlight031.png"><img border="0" alt="" src="http://dynamicsgpblogster.wordpress.com/files/2009/09/vesilverlight031.png?w=241" /></a><br />Silverlight client applications also make use of a <a href="http://msdn.microsoft.com/en-us/library/ms752059.aspx">XAML</a> (pronounced &#8220;zamel&#8221;) page to define and build user interface elements. XAML is an XML-based language that may be used to define graphical assets, user interfaces, behaviors, animations, and more. It was introduced by Microsoft as the markup language used in Windows Presentation Foundation, a desktop-oriented technology that is part of the .NET Framework 3.0. It was designed to help bridge the work between designers and developers in creating applications. In the case of the application, a <strong>MainPage.XAML</strong> was added.</p>
<p>Of second order, I needed to add a reference to my Microsoft Virtual Earth Map Control. Since this is part of the UI, it was clear enough that a References was needed on the Silverlight client application.</p>
<p><a href="http://dynamicsgpblogster.wordpress.com/files/2009/09/vesilverlight051.png"><img border="0" alt="" src="http://dynamicsgpblogster.wordpress.com/files/2009/09/vesilverlight051.png?w=300" /></a><br />With a reference to the assembly, I could now add two lines of code &#8212; literally &#8212; to the XAML page to incorporate a map interface to my application: one to reference the map control assembly, and the other to give the map some startup parameters.</p>
<p><strong>MainPage.XAML</strong>
<div style="border-bottom:gray 1px solid;border-left:gray 1px solid;background-color:#f4f4f4;width:650px;font:12px Georgia, Garamond, Serif;height:200px;color:#3333ff;overflow:scroll;border-top:gray 1px solid;border-right:gray 1px solid;">
<pre>

&#38;ltUserControl x:Class="VESilverlight.MainPage"    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"     xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"    xmlns:m="clr-namespace:Microsoft.VirtualEarth.MapControl;assembly=Microsoft.VirtualEarth.MapControl"    xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"     mc:Ignorable="d" d:DesignWidth="640" d:DesignHeight="480"&#38;gt    &#38;ltGrid x:Name="LayoutRoot"&#38;gt        &#38;ltm:Map Name="custMap" Center="41.900632,-87.629631"&#38;gt&#38;lt/m:Map&#38;gt    &#38;lt/Grid&#38;gt&#38;lt/UserControl&#38;gt</pre>
</div>
<p>I then compiled the code and ran it in debug mode and to my surprise, I had a fully working map solution! Talking about productivity! Wow!</p>
<p><a href="http://dynamicsgpblogster.wordpress.com/files/2009/09/vesilverlight061.png"><img border="0" alt="" src="http://dynamicsgpblogster.wordpress.com/files/2009/09/vesilverlight061.png?w=300" /></a><br />But, while I could make use of the map, this was only the beginning of the work ahead. For now, enjoy this first part. Try it out and let me know what you think.</p>
<p>I leave you with this <a href="http://videos.visitmix.com/MIX09/T34F">MIX09 video presentation of <strong>Chris Pendleton</strong></a>, Virtual Earth Technical Evangelist at Microsoft, who explains the Virtual Earth Map Control in more detail.</p>
<p align="center">
<p>Until next post!</p>
<p>MG.-<br />Mariano Gomez, MVP<br />Maximum Global Business, LLC<br /><a href="http://www.maximumglobalbusiness.com/">http://www.maximumglobalbusiness.com/</a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Bhuvan beta]]></title>
<link>http://arunbluebrain.wordpress.com/2009/08/29/bhuvan-beta/</link>
<pubDate>Sat, 29 Aug 2009 05:02:43 +0000</pubDate>
<dc:creator>arunbluebrain</dc:creator>
<guid>http://arunbluebrain.wordpress.com/2009/08/29/bhuvan-beta/</guid>
<description><![CDATA[Basic features of Bhuvan: Access, explore and visualise 2D and 3D image data along with rich themati]]></description>
<content:encoded><![CDATA[Basic features of Bhuvan: Access, explore and visualise 2D and 3D image data along with rich themati]]></content:encoded>
</item>
<item>
<title><![CDATA[misc 005 - design absolutes ]]></title>
<link>http://underworldmmo.wordpress.com/2009/08/23/misc-005-design-absolutes/</link>
<pubDate>Sun, 23 Aug 2009 07:06:01 +0000</pubDate>
<dc:creator>pandoranyc</dc:creator>
<guid>http://underworldmmo.wordpress.com/2009/08/23/misc-005-design-absolutes/</guid>
<description><![CDATA[this article will discuss some of the game specific methods of dealing with pre-release design issue]]></description>
<content:encoded><![CDATA[this article will discuss some of the game specific methods of dealing with pre-release design issue]]></content:encoded>
</item>
<item>
<title><![CDATA['Bing' oh! - ArcGIS, Flex, WMS and Bing]]></title>
<link>http://geoux.wordpress.com/2009/07/31/bing-oh/</link>
<pubDate>Fri, 31 Jul 2009 04:45:26 +0000</pubDate>
<dc:creator>geoux</dc:creator>
<guid>http://geoux.wordpress.com/2009/07/31/bing-oh/</guid>
<description><![CDATA[Last night I was struggling to overlay a set of WMS layers on top of Bing Maps and was driven to the]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Last night I was struggling to overlay a set of WMS layers on top of Bing Maps and was driven to the point of frustration. The layers simply did not overlay. It always took me to a point on the sea near Africa which meant that the Coordinate Systems did not match. It takes you to the center of the earth (Latitude: 0.oo, Longitude:0.00) if you have layers in different SRS. Could not find any solution in the blogs as well as the ArcGIS Flex API resource center. Maybe because it is a pretty new feature released a few months back in API Version 1.2.</p>
<p>After some research found out that Bing Maps serves their tiles using EPSG 102113 whereas the other services are in EPSG 4326 which is the standard. EPSG 102113 is the same as EPSG 900913 used by Google Map tiles.</p>
<p>So to overlay, you will have to reproject your layers in EPSG 4326 to EPSG 102113. This is how you do it in Flex API.</p>
<p>In your Extent definition:<br />
<code>&#60;esri:SpatialReference wkid="102113"/&#62;</code></p>
<p>In your Query and GeoProcessor definitions, add<br />
<code>outSpatialReference="{new SpatialReference(102113)}"</code></p>
<p>The WMS looked like this:<br />
<code>&#60;rmsi:WMSMapServiceLayer<br />
id="mywmsLayer"<br />
url="http://www.myserver.com/geoserver173/wms"<br />
wmsLayer="TheWMSLayerName"<br />
format="image/png"<br />
transparentBG="true"<br />
srs="EPSG:102113"/&#62;</code></p>
<p>Everything set, I fired up the application only to find that the WMS layers failed!.</p>
<p>The WMS layers are being served from Geoserver and Geoserver does not seem to recognize EPSG 102113. So to get it working I tried changing the SRS of the query from 102113 to 900913. So the new code looked like this:<br />
<code>&#60;rmsi:WMSMapServiceLayer<br />
id="mywmsLayer"<br />
url="http://www.myserver.com/geoserver173/wms"<br />
wmsLayer="TheWMSLayerName"<br />
format="image/png"<br />
transparentBG="true"<br />
srs="EPSG:900913"/&#62;</code></p>
<p>Bing&#8217;o! All my WMS layers are now overlaid properly on Bing Maps.</p>
<p>I&#8217;ll have to try overlaying the ArcGIS Online Mapserver services on this now! That should be a cakewalk. But you never know.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Innovation Day Curitiba (Cobertura do evento)]]></title>
<link>http://sqlfromhell.wordpress.com/2009/07/07/innovation-day/</link>
<pubDate>Wed, 08 Jul 2009 01:47:26 +0000</pubDate>
<dc:creator>Paulo R. Pereira</dc:creator>
<guid>http://sqlfromhell.wordpress.com/2009/07/07/innovation-day/</guid>
<description><![CDATA[Como não fui, eu não posso falar nada do evento, mas segue os links com a cobertura do evento: Cober]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Como não fui, eu não posso falar nada do evento, mas segue os links com a cobertura do evento:</p>
<p>Cobertura By DevBR:<br />
<a href="http://devbr.blogspot.com/2009/07/innovation-day.html" target="_blank"><strong>http://devbr.blogspot.com/2009/07/innovation-day.html</strong></a></p>
<p>Cobertura By Zavaschi (Ensinando como eliminar o Acre por SQL):<br />
<a href="http://thiagozavaschi.spaces.live.com/blog/cns!8DE5A8EFC1819ECA!335.entry" target="_blank"><strong>http://thiagozavaschi.spaces.live.com/blog/cns!8DE5A8EFC1819ECA!335.entry</strong></a></p>
<p>Cobertura By Ordine (Vídeos):<br />
<a rel="nofollow" href="http://eordine.blogspot.com/2009/07/cobertura-do-evento-microsoft.html"><strong>http://eordine.blogspot.com/2009/07/cobertura-do-evento-microsoft.html</strong></a></p>
<p> </p>
<h6><img class="alignnone size-full wp-image-519" title="innovation.day" src="http://sqlfromhell.wordpress.com/files/2009/07/innovation-day.jpg" alt="innovation.day" width="380" height="248" /><br />
Zavaschi e Márcio Gomes no Innovation Day Curitiba</h6>
<p><span style="text-decoration:line-through;">O Márcio Gomes (MCT) do DevBR disse que irá disponibilizar alguns vídeos do evento, mas ainda sem data para publicação.</span></p>
<p>Se alguem fez alguma cobertura do evento e não vi, me avisem!</p>
<p>Valeu Cleibson por ajudar divulgar o evento!</p>
<p>Pessoal, até o próximo post!</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Innovation Day Curitiba (04/07/2009)]]></title>
<link>http://sqlfromhell.wordpress.com/2009/06/29/innovation-day-curitiba/</link>
<pubDate>Tue, 30 Jun 2009 02:24:50 +0000</pubDate>
<dc:creator>Paulo R. Pereira</dc:creator>
<guid>http://sqlfromhell.wordpress.com/2009/06/29/innovation-day-curitiba/</guid>
<description><![CDATA[Pessoal, Evento (gratuito) muito bom neste sábado. Mas só pelo nome dos caras já dá para perceber qu]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Pessoal,</p>
<p>Evento (<strong>gratuito</strong>) muito bom neste sábado. Mas só pelo nome dos caras já dá para perceber que vai ser muito bom! Indico a palestra do Márcio Gomes e Thiago Zavaschi sobre &#8220;Virtual Earth + Silverlight + SQL Server 2008&#8243;, também a do Marcelo D’Ávila de Pauli sobre &#8220;Linguagens Dinâmicas&#8221;!</p>
<p>Abaixo o convite:</p>
<p><img class="alignnone size-full wp-image-494" title="InnovationDayCtba" src="http://sqlfromhell.wordpress.com/files/2009/06/innovationdayctba.jpg" alt="InnovationDayCtba" width="457" height="212" /><br />
<!--more--></p>
<p><strong>É tempo de inovar com seu currículo!!!</strong></p>
<p>O Centro de Inovação Microsoft de Curitiba, através de sua iniciativa de desenvolvimento da economia local de software, tem o prazer de convidá-lo para o Innovation Day, um evento técnico sobre as mais novas tecnologias Microsoft e informações sobre o mercado de TI.</p>
<p><strong>Data:</strong> 04/07 (Sábado)</p>
<p><strong>Horário:</strong> 10h00min às 17h30min</p>
<p><strong>Local: </strong>Centro Tecnológico da Universidade Positivo</p>
<p>Rua Alf. Ângelo Sampaio,2300 – Auditório</p>
<p><strong>Programação</strong></p>
<p><strong>10:10h  Abertura</strong></p>
<p><strong>10:10h  Palestra:</strong> Gerenciamento do Ciclo de Vida de Aplicações com Visual Studio 2010.</p>
<p><strong>Palestrante: </strong>Daniel Oliveira (MVP), Supervisor de Qualidade da TechResult.</p>
<p><strong>11:00h</strong> <strong>Palestra:</strong>  Apresentação do Centro de Inovação Microsoft Curitiba.</p>
<p><strong>Palestrante: </strong>Thiago Henrique Zen, Coordenador Administrativo do MIC Curitiba.</p>
<p><strong>11:15h  Palestra: </strong>Apresentação do Microsoft Partner Program.</p>
<p><strong>Palestrante:</strong> Galileu Vieira, Gerente de novas tecnologias da Microsoft.</p>
<p><strong>11:50h  Intervalo</strong></p>
<p><strong>12:10h  Palestra: </strong>“Virtual Earth + Silverlight + SQL Server 2008 – Uma combinação Poderosa”.</p>
<p><strong>Palestrantes: </strong>Márcio Gomes (MCPD/MCT), Supervisor de Desenvolvimento e Thiago Zavaschi (MCPD/MCT), Desenvolvedor da TechResult.</p>
<p><strong> </strong><strong>13:00h  Intervalo</strong></p>
<p><strong>14:30h  Palestra: </strong>Linguagens Dinâmicas e o Browser.</p>
<p><strong>Palestrante: </strong>Marcelo D’Ávila de Pauli (MVP), Diretor Executivo da TechResult.</p>
<p><strong>15:20h  Palestra: </strong>SMS Machine-To-Machine, XPEmbededd em Micro-Terminais, Monitorando Performance no WinCe/Mobile.</p>
<p><strong>Palestrante: </strong>Claudenir C. Andrade (MVP), Gerente de Integração e Desenvolvimento da Daruma.</p>
<p><strong>16:10h  Intervalo</strong></p>
<p><strong>16:30h  Palestra: </strong>Novidades da .NET Framework 4.0</p>
<p><strong>Palestrante: </strong>Diego Rodrigo Neufert (MVP), Coordenador de Sistemas Operacionais da ALL &#8211; América Latina Logística</p>
<p><strong>17:20h  Encerramento: </strong>Sorteio de Brindes</p>
<p>O Evento será <strong>gratuito</strong> para todo o público. Não perca essa oportunidade!</p>
<p>Vagas limitadas.</p>
<p>Confirme sua presença até o dia 03/07 pelo telefone (41) 3335-7612, com Cláudia, ou pelo e-mail <a href="http://189.58.137.162/owa/redir.aspx?C=0c57585ee96344fe8cfd1bd856a85463&#38;URL=mailto:mic@techresult.com.br">mic@techresult.com.br</a>.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Adding airport locations to VirtualEarth, Part 2]]></title>
<link>http://andrewwhitten.wordpress.com/2009/06/11/adding-airport-locations-to-virtualearth-part-2/</link>
<pubDate>Thu, 11 Jun 2009 11:29:14 +0000</pubDate>
<dc:creator>andrewwhitten</dc:creator>
<guid>http://andrewwhitten.wordpress.com/2009/06/11/adding-airport-locations-to-virtualearth-part-2/</guid>
<description><![CDATA[I went to Remix today and found out that the well regarded VirtualEarth brand is now known as ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>I went to Remix today and found out that the well regarded VirtualEarth brand is now known as &#8216;<a href="http://maps.live.com.au/">Bing Maps</a>&#8216;. I prefer Virtual Earth, but Microsoft were right to bring all their online services together as Bing, if only for the fact it makes it easier to explain.</p>
<p>Yesterday I added 6,000 pushpins to a layer on top of my map. This seemed to be way too much for Silverlight, and performance suffered.</p>
<p>I didn&#8217;t actually require every single airport code in the world, and I found this list of <a href="http://www.nationsonline.org/oneworld/IATA_Codes/airport_code_list.htm">1900 codes from this website</a>. There was no location data, but I was able to filter my origional list of 6,000 against it with good success. The smaller list was clearer and performance much improved.</p>
<p>I also added some extra data as a tooltip with each pushpin, such as the Airport name, code and associated city.</p>
<p><img class="alignnone size-full wp-image-146" title="mapsv2" src="http://andrewwhitten.wordpress.com/files/2009/06/mapsv2.jpg" alt="mapsv2" width="460" height="406" /></p>
<p>Creating a tooltip is really easy. First I defined a really simple control to display these vales:</p>
<pre class="brush: xml;">

&lt;UserControl 

xmlns:controls=&quot;clr-namespace:System.Windows.Controls;assembly=System.Windows.Controls&quot;

x:Class=&quot;FlightTracks.Controls.AirportTooltip&quot;

xmlns=&quot;http://schemas.microsoft.com/winfx/2006/xaml/presentation&quot;

xmlns:x=&quot;http://schemas.microsoft.com/winfx/2006/xaml&quot;

Width=&quot;125&quot; Height=&quot;50&quot;&gt;

&lt;Grid x:Name=&quot;LayoutRoot&quot; Background=&quot;White&quot;&gt;

&lt;StackPanel&gt;

&lt;TextBlock Text=&quot;{Binding Name}&quot;&gt;&lt;/TextBlock&gt;

&lt;TextBlock Text=&quot;{Binding Code}&quot;&gt;&lt;/TextBlock&gt;

&lt;TextBlock Text=&quot;{Binding City}&quot;&gt;&lt;/TextBlock&gt;

&lt;/StackPanel&gt;

&lt;/Grid&gt;

&lt;/UserControl&gt;
</pre>
<p>I then bound it to each &#8216;Airport&#8217; object I had, and then made it part of the Tooltips content. Finally I set the tooltip to the pushpin image:</p>
<pre class="brush: csharp;">

private Image CreateImage(BitmapImage bmp, Airport airport)

{

           // Picture of pushpin

            Image image = new Image();

            image.Source = bmp;

            image.Opacity = 0.8;

            image.Stretch = Stretch.None;

            // Content of Tooltip

            Controls.AirportTooltip at = new Controls.AirportTooltip();

            at.DataContext = airport;

            // Tooltip

            ToolTip toolTip = new ToolTip();

            toolTip.Content = at;

            // Add tooltip to Image

            ToolTipService.SetToolTip(image, toolTip);

            return image;

}
</pre>
<p>It is a pity I only get an hour or so to play with this each night! When I finished I&#8217;ll release the code on Codeplex and write a large article about all the steps ^-^</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Adding airport locations to VirtualEarth, Part 1]]></title>
<link>http://andrewwhitten.wordpress.com/2009/06/10/adding-airport-locations-to-virtualearth-part-1/</link>
<pubDate>Wed, 10 Jun 2009 12:42:33 +0000</pubDate>
<dc:creator>andrewwhitten</dc:creator>
<guid>http://andrewwhitten.wordpress.com/2009/06/10/adding-airport-locations-to-virtualearth-part-1/</guid>
<description><![CDATA[I am playing with the Virtual Earth Silverlight control, and I wondered how hard it would be to make]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>I am playing with the Virtual Earth Silverlight control, and I wondered how hard it would be to make a quick application that could record my flights around the world? </p>
<p>It turns out the major task is getting a decent list of airport codes with locations! These <a href="http://www.halfgaar.net/localized-world-airport-codes">guys from Holland</a> have a really comprehensive list of airports in a CSV file that I converted to XML and included in my Silverlight project.</p>
<p>(I considered using a WCF service to provide my airports from a DB, but how many new airports are there exactly in these economic times? Instead I embedded the 6K file in the Silverlight app)</p>
<p>I used LinQ to create a pin in a seperate layer on top of the map and here is the result:</p>
<div id="attachment_142" class="wp-caption alignnone" style="width: 470px"><a href="http://www.halfgaar.net/localized-world-airport-codes"><img class="size-full wp-image-142" title="virtualearthWithAirports" src="http://andrewwhitten.wordpress.com/files/2009/06/virtualearthwithairports1.jpg" alt="Way too many airports in this world" width="460" height="326" /></a><p class="wp-caption-text">Way too many airports in this world</p></div>
<p>Having 6000+ pins in your map is not great for responsiveness, and anyway you can&#8217;t find your desired airport anyhow ^-^</p>
<p>What is the answer? I think some smarter rendering of layers.. that is the challenge for the next post</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Microsoft Surface BI]]></title>
<link>http://abubberman.wordpress.com/2009/06/09/microsoft-surface-bi/</link>
<pubDate>Tue, 09 Jun 2009 08:12:26 +0000</pubDate>
<dc:creator>Arie Bubberman</dc:creator>
<guid>http://abubberman.wordpress.com/2009/06/09/microsoft-surface-bi/</guid>
<description><![CDATA[In deze video wordt er door een medewerker van het Microsoft BI Team de applicatie Falcon Eye getoon]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>In deze video wordt er door een medewerker van het Microsoft BI Team de applicatie Falcon Eye getoond. Dit is een applicatie die gebruik maakt van Microsoft surface, Virtual Earth en Business Intelligence. Het ziet er erg gaaf uit en het geeft een aardig beeld van wat er met deze combinatie allemaal gedaan kan worden.</p>
<p>Voor meer informatie over Microsoft surface: <a href="http://www.microsoft.com/surface/" target="_new">Klik hier </a><br />
Voor meer informatie over Microsoft BI : <a href="http://www.microsoft.com/bi/" target="_new">Klik hier</a></p>
<p><a href="http://go.microsoft.com/fwlink/?LinkID=124807" style="text-decoration:none;"><br />
<img src="http://go.microsoft.com/fwlink/?LinkId=108181" alt="Get Microsoft Silverlight"><br />
</a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Microsoft Bing ve xRank]]></title>
<link>http://alkankoray.wordpress.com/2009/06/08/microsoft-bing-ve-xrank/</link>
<pubDate>Mon, 08 Jun 2009 09:25:30 +0000</pubDate>
<dc:creator>Koray</dc:creator>
<guid>http://alkankoray.wordpress.com/2009/06/08/microsoft-bing-ve-xrank/</guid>
<description><![CDATA[Microsoft Bing Anasayfa E-posta adresime birkac gun arayla gelen Bing! konulu maili Apple Mail de Sp]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><div id="attachment_43" class="wp-caption alignleft" style="width: 306px"><img class="size-medium wp-image-43" title="Microsoft Bing Anasayfa" src="http://alkankoray.wordpress.com/files/2009/06/picture-42.png?w=296" alt="Microsoft Bing Anasayfa" width="296" height="300" /><p class="wp-caption-text">Microsoft Bing Anasayfa</p></div>
<p>E-posta adresime birkac gun arayla gelen Bing! konulu maili Apple Mail de Spam klasorune atinca, acmak aklimin ucundan bile gecmedi. Ardindan <a title="NTVMSNBC" href="http://www.ntvmsnbc.com" target="_blank">NTVMSNBC</a>&#8216;de haberleri okurken Bing&#8217;in aslinda Microsoft&#8217;un bir servisinin oldugunu gordum ve meraklandim.</p>
<p>Hemen <a title="bing.com" href="http://www.bing.com" target="_blank">bing.com</a> adresine girdim. Karsima bir tur arama motoru cikti. Biraz Google&#8217;dan esinlenilmis, sade bir arayuz ve arkaplanda &#8220;mavi&#8221; temali bir resim. Hemen birkac arama yaptim, sonuc arayuzu cok da farkli degildi.</p>
<p>Degisik bir ozelligi ise Resimler&#8217;de gordum. Google&#8217;in aksine Kisilerde Ara konseptini biraz daha gelistirmis ve &#8220;yuz&#8221;, &#8220;bas ve omuz&#8221; ve &#8220;diger&#8221; secenekleri koymus. Ne kadar inovatif bilemiyorum ama Microsoft&#8217;un boyle bir arama motoru atilimini yapmasi zaten gerekiyordu. En basindan beri Spaces, Live, Virtual Earth, MSDN gibi servisleri saglayan Microsoft&#8217;un genis kapsamli ve efektif bir arama motorunun olmasi sart idi. WWW&#8217;de degil ancak Microsoft kaynaklari icinde arama yapmak isteyen birisinin Bing&#8217;de secenekler arasindan ornegin MSDN&#8217;de Ara gibi bir opsiyon gormesi gerek diye dusunuyorum. Bu sekilde belki oldukca yuksek yerlere gelebilir Bing. Ne de olsa hala dunyanin cok buyuk bir kesimi Microsoft urunleri kullaniyor; Windows, Pocket PC&#8217;ler, Xbox gibi. Pocket PC&#8217;si icin uygulama arayan bir kisiyi dogrudan kendi arama motoruna yonlendirmesi gerek Microsoft&#8217;un.</p>
<h3><strong>xRank</strong></h3>
<div id="attachment_44" class="wp-caption alignleft" style="width: 310px"><img class="size-medium wp-image-44" title="xRank" src="http://alkankoray.wordpress.com/files/2009/06/picture-51.png?w=300" alt="xRank" width="300" height="235" /><p class="wp-caption-text">xRank</p></div>
<p>Bu servis Google Trends&#8217;in neredeyse aynisi diyebiliriz, ancak &#8220;kisi&#8221; bazli. Su anda xRank anasayfasina girdiginizde Arama alaninda Hadise&#8217;nin ismini goruyorsunuz ve altinda populerlik chart&#8217;i ile isaretlenmis 1, 2, 3 gibi noktalar ve bu noktalarin temsil ettigi peak noktalar ile bu noktalarin nedenlerini aciklayan haberlerle.</p>
<p>Daha cok &#8220;magazin&#8221; agirlikli oldugunu dusunuyorum, taniminda da soyle diyor neticede:</p>
<blockquote><p><em>&#8220;xRank önemli kişileri izler ve sizin için bunları düzenler. Film yıldızları, müzisyenler ve diğer ünlüler için yapılan Live Search web aramalarını sayıyoruz. Daha sonra bulgularımızı bir derecelendirme formülüne dahil ederek dünya çapında en çok aranan kişileri belirliyoruz. Sonuçlar belirli bir zamanda kimin popüler olduğunu ve kimin gözden düştüğünü gösteriyor!&#8221;</em></p></blockquote>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Surface Globe, é a Microsoft correndo atrás!]]></title>
<link>http://geotecnologias.wordpress.com/2009/06/03/surface-globe-e-a-microsoft-correndo-atras/</link>
<pubDate>Wed, 03 Jun 2009 21:43:49 +0000</pubDate>
<dc:creator>sadeckgeo</dc:creator>
<guid>http://geotecnologias.wordpress.com/2009/06/03/surface-globe-e-a-microsoft-correndo-atras/</guid>
<description><![CDATA[A Microsoft resolveu juntar peças para fazer frente ao Google Earth. O novo globo virtual da Microso]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p style="text-align:justify;">A Microsoft resolveu juntar peças para fazer frente ao Google Earth. O novo globo virtual da Microsoft se chamará Surface Globe e será parte do pacote Touch Pack, que a Microsoft vai oferecer a fabricantes de micros com tela sensível ao toque. Esse pacote já vai vir embutido no Windows 7.</p>
<p style="text-align:center;"><img class="aligncenter" src="http://blogs.msdn.com/blogfiles/virtualearth/WindowsLiveWriter/MicrosoftTouchPackforWindows7FeaturesVir_8CB3/image_thumb_2.png" alt="" width="450" height="282" /></p>
<p style="text-align:justify;"><!--more-->Segundo a Info Online, o Surface Globe junta a interface de navegação da plataforma Virtual Earth, da Microsoft, com funções para comando por toque. O conteúdo geográfico é o mesmo que é usado no serviço de mapas Live Search Maps, da Microsoft. Esses dois produtos, agora, estão mudando de nome. Ambos passarão a usar a marca do novo serviço de buscas Bing, da Microsoft. O Live Search Maps vai se chamar Bing Maps, e, o Virtual Earth, Bing Maps for Enterprise. A base de informações do Bing Maps inclui imagens feitas por satélites, fotos aéreas, modelos 3D de cidades e detalhes do terreno. Algumas das fotos são feitas a 45 graus para mostrar a fachada dos edifícios. É a visualização que a Microsoft chama de bird&#8217;s eye (visão de pássaro). Há também uma ampla coleção de pontos de interesse. Isso permite realizar buscas por empresas, endereços e até pessoas.</p>
<p style="text-align:justify;">No Surface Globe, usa-se a tela multitoque para navegar a uma área específica, obter informações locais, inserir marcadores (como os alfinetes do Google Earth). Também é possível &#8220;voar&#8221; em torno dos modelos 3D existentes para algumas cidades.</p>
<p style="text-align:justify;">+ Info</p>
<p style="text-align:justify;"><a href="http://info.abril.com.br/blog/estacaowindows/">http://info.abril.com.br/blog/estacaowindows/</a></p>
<p style="text-align:justify;"><a href="http://www.bing.com/community/blogs/">http://www.bing.com/community/blogs/</a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Η Νasa εκμεταλλεύεται πρώτη τα Photosynth και Virtual Earth combo]]></title>
<link>http://mcsotos.wordpress.com/2009/06/01/%ce%b7-%ce%bdasa-%ce%b5%ce%ba%ce%bc%ce%b5%cf%84%ce%b1%ce%bb%ce%bb%ce%b5%cf%8d%ce%b5%cf%84%ce%b1%ce%b9-%cf%80%cf%81%cf%8e%cf%84%ce%b7-%cf%84%ce%b1-photosynth-%ce%ba%ce%b1%ce%b9-virtual-earth-combo/</link>
<pubDate>Mon, 01 Jun 2009 03:43:53 +0000</pubDate>
<dc:creator>mcsotos</dc:creator>
<guid>http://mcsotos.wordpress.com/2009/06/01/%ce%b7-%ce%bdasa-%ce%b5%ce%ba%ce%bc%ce%b5%cf%84%ce%b1%ce%bb%ce%bb%ce%b5%cf%8d%ce%b5%cf%84%ce%b1%ce%b9-%cf%80%cf%81%cf%8e%cf%84%ce%b7-%cf%84%ce%b1-photosynth-%ce%ba%ce%b1%ce%b9-virtual-earth-combo/</guid>
<description><![CDATA[Η Microsoft συνδύασε το Photosynth, το λογισμικό που συνδυάζει πολλές διαφορετικές φωτογραφίες σε μί]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><a href="http://mcsotos.wordpress.com/files/2009/05/international-space-station.jpg"><img class="alignleft size-medium wp-image-771" title="INTERNATIONAL SPACE STATION" src="http://mcsotos.wordpress.com/files/2009/05/international-space-station.jpg?w=300" alt="INTERNATIONAL SPACE STATION" width="300" height="177" /></a>Η Microsoft συνδύασε το <a href="http://photosynth.net/" target="_blank">Photosynth</a>, το λογισμικό που συνδυάζει πολλές διαφορετικές φωτογραφίες σε μία απεικόνιση με το <a href="http://www.microsoft.com/virtualearth/" target="_blank">Virtual Earth </a>σε μία πολλά υποσχόμενη για τη διδασκαλία εφαρμογή.</p>
<p> Για να αναδείξει τις δυνατότητες συνεργάστηκε με τη Nasa και δημιούργησε δύο παρουσιάσεις, η πρώτη με θέμα το <a href="http://www.nasa.gov/externalflash/photosynth/index.html#" target="_blank">διεθνή διαστημικό σταθμό </a>και η δεύτερη με θέμα το<a href="http://www.nasa.gov/externalflash/msl20090507/index.html"> επόμενο αυτοκινούμενο/εξερευνητή που θα πάει στον Άρη</a>.</p>
<p>Με τη διεπαφή click and drag είναι δυνατό να δει ο θεατής λεπτομέρειες αλλά και να απομακρυνθεί και να έχει μια γενικότερη οπτική γωνία.</p>
<p>Το <a href="http://photosynth.net/" target="_blank">Photosynth</a> προσφέρει τη δυνατότητα να δει ο θεατής λεπτομέρειες του  <a href="http://www.nasa.gov/externalflash/photosynth/index.html" target="_blank">διαστημικού σταθμού </a>από φωτογραφίες που έχουν &#8220;τραβήξει&#8221; οι αστροναύτες ενώ ο διαστημικός σταθμό βρισκόταν σε τροχιά. Δεν είναι ψηφιακές αναπαραστάσεις ή προσομοίωση.</p>
<p>Για να εκμεταλλευθεί μία ομάδα ανάπτυξης  αυτές τις δυνατότητες το λογισμικό που &#8220;κρύβεται&#8221; από πίσω είναι το <a href="http://silverlight.net/" target="_blank">Silverlight</a>. H Microsoft έδωσε στο κοινό το Photosynth πριν 8 μήνες και οι χρήστες έχουν ανεβάσει 12 εκατομμύρια φωτογραφίες δημιουργώντας 350,000 synthέσεις&#8230;</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Bing Maps?]]></title>
<link>http://geoapplications.wordpress.com/2009/05/28/bing-maps/</link>
<pubDate>Thu, 28 May 2009 18:32:32 +0000</pubDate>
<dc:creator>jdonoghue2</dc:creator>
<guid>http://geoapplications.wordpress.com/2009/05/28/bing-maps/</guid>
<description><![CDATA[Please note, the following text is an editorial comment. If you&#8217;re looking for information abo]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Please note, the following text is an editorial comment. If you&#8217;re looking for information about Bing Maps, see <a href="http://www.discoverbing.com">http://www.discoverbing.com</a></p>
<p> </p>
<p>Today Microsoft announces another name for Virtual Earth &#8211; Bing Maps. When they previously changed the name of Virtual Earth to Live Search Maps, I understood their intention of aligning their consumer mapping application (Virtual Earth) with the other consumer applications in the Microsoft Live Search family. However I personally disliked the name Live Search Maps; it was too long and unfriendly. So I&#8217;ve always continued to refer to the service as Virtual Earth (as did many other people).</p>
<p>This time Microsoft is attempting a much larger rebranding strategy around a new search platform Bing.com. Bing is an attempt to gain some ground on Google in the search arena. While Bing is a hip name, the rebranding does make me wonder what Microsoft is thinking. I&#8217;m sure a large part of the change is hope that Bing will become a household verb like Google. Somewhere a Microsoft ad agency is dreaming about people asking one another, &#8220;did you Bing it? What is it? Where is it?&#8221;</p>
<p>Microsoft is throwing g a lot of money ($80 to $100 million) at this rebranding campaign to get consumers to question whether Internet searching is giving them what they want. Unless they&#8217;ve got some fantastic features to show consumers an alternate reality that is markedly better, Bing will probably not work. Google achieved search dominance because they had a superior product. To supplant them in the search arena, Bing must be better, not just fancier. A fancy updated user interface with web site previews inside pop-up windows and a multi-million dollar marketing campaign did not help Ask.com. So what kind of bling does Bing have that is going to make me switch?</p>
<p>As an aside, while the name Bing is better than Kumo (another name in contention by Microsoft), when I read the single syllable word &#8220;Bing&#8221; after the word Microsoft, I instantly thought of another single-syllable word &#8220;Bob&#8221; &#8211; another famous Microsoft failure. I&#8217;m not trying to be funny; the association was instantaneous and completely uncontrived.</p>
<p>From the perspective of a geospatial professional I think Microsoft is trying to deal with an identity crisis. If we look at the suite of mapping related products/services offered by Microsoft there are:</p>
<ul>
<li>Live Search Maps (Formerly Virtual Earth)</li>
<li>Microsoft Virtual Earth APIs &#8211; which were used to interact with Live Search Maps</li>
<li>MapPoint Web Service</li>
</ul>
<p>In the near future Bing rebranding will change:</p>
<ul>
<li>Live Search Maps = Bing Maps</li>
<li>Microsoft Virtual Earth API = Bing Maps for Enterprise</li>
</ul>
<p>Since the MapPoint Web Service name is not being changed, I&#8217;m guessing that this does not bode well for its future.</p>
<p>I am curious about whether there are plans to align all of the Windows Live products (Messenger, Mail, Calendar, Photos, Spaces, SkyDrive, etc.) around the Bing brand. Otherwise, it seems there will still be an identify crisis when it comes to consumer products. I am supposed to use Bing to search, but use Live for everything else.) Not to tout the obvious, but gMail, gTalk, Google Docs, etc. all unite around the name Google. How will Bing and Live become associated with Microsoft without millions of dollars of marketing?</p>
<p>I do think it’s a good idea for Microsoft to fix its geospatial product identify crisis and align their search related offerings around one brand. However, I think the product/service naming could be tighter. For example, Google&#8217;s mapping environment is named Google Maps. Their API is named the Google Maps API. Their 3D version is named Google Earth. It&#8217;s all very intuitive. It&#8217;s why I liked the name &#8220;Virtual Earth&#8221;, it worked.</p>
<p>If Microsoft wants to align their geospatial offerings around a fun (and potentially verb-able) product name like Bing, then I suggest they name their primary mapping products “Bing Earth” and “Bing Earth for Enterprise”. The API would then be called “Bing Earth API”. While they are at it, they could rename the desktop application MapPoint to “Bing Earth Studio” or “Bing Earth Desktop”. Sure Google would be mad, but is the name Bing Maps any different than Google Maps? Besides, Microsoft was already using the word Earth in Virtual Earth, so there&#8217;s already a precedent for some overlap.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Microsoft VESL Map Control CTP @ MIX]]></title>
<link>http://abubberman.wordpress.com/2009/05/28/microsoft-vesl-map-control-ctp-mix/</link>
<pubDate>Thu, 28 May 2009 17:03:54 +0000</pubDate>
<dc:creator>Arie Bubberman</dc:creator>
<guid>http://abubberman.wordpress.com/2009/05/28/microsoft-vesl-map-control-ctp-mix/</guid>
<description><![CDATA[In deze video demonstreert Chris Pendleton de VESL (Virtual Earth Silverlight) Map Control. Met deze]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>In deze video demonstreert Chris Pendleton de VESL (Virtual Earth Silverlight) Map Control. Met deze control kunnen we een nieuwe generatie van mapping controls maken. Het is weliswaar een preview, maar het ziet er veelbelovend uit. De control is <a href="http://connect.microsoft.com/silverlightmapcontrolctp" target="_blank">hier </a>te downloaden</p>
<p><a href="http://go.microsoft.com/fwlink/?LinkID=124807" style="text-decoration:none;"><br />
<img src="http://go.microsoft.com/fwlink/?LinkId=108181" alt="Get Microsoft Silverlight"><br />
</a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[ArcGIS API for Flex&trade; 1.2]]></title>
<link>http://sandrobatista.wordpress.com/2009/05/23/arcgis-api-for-flex-1-2/</link>
<pubDate>Sat, 23 May 2009 11:55:02 +0000</pubDate>
<dc:creator>Sandro Batista</dc:creator>
<guid>http://sandrobatista.wordpress.com/2009/05/23/arcgis-api-for-flex-1-2/</guid>
<description><![CDATA[Foi lançada no passado dia 22 de Maio a nova versão 1.2 da API ArcGIS para Flex™. Esta nova versão i]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Foi lançada no passado dia 22 de Maio a nova versão <a href="http://resources.esri.com/arcgisserver/apis/flex/" target="_blank">1.2 da API ArcGIS para Flex™</a>.</p>
<p>Esta nova versão inclui:</p>
<ul>
<li>Routing com serviços de ArcGIS Server 9.3.1. </li>
<li>Serviços de Mapas Microsoft Virtual Earth. </li>
<li>Serviços de <em>Geocoding</em> com Microsoft Virtual Earth. </li>
<li>Renderizadores para produção simplificada de Mapas Temáticos. </li>
<li>Pacote de utilidades para conversão entre diferentes sistemas de coordenadas. </li>
<li>Novas propriedades na simbologia de Texto. </li>
<li>Slider de Navegação com mais propriedades e mais costumizável. </li>
<li>Novos <a href="http://resources.esri.com/help/9.3/arcgisserver/apis/flex/samples/index.html" target="_blank">exemplos</a> e actualização dos existentes.       </li>
</ul>
<p>Mais detalhes sobre esta versão podem ser encontrados <a href="http://resources.esri.com/help/9.3/arcgisserver/apis/flex/help/index.html#whats_new.htm" target="_blank">aqui</a>.</p>
<p>Esta API vem no seguimento da versão 9.3.1 do ArcGIS mas mantém a compatibilidade com os serviços em 9.3.</p>
<p>Aqui fica um pequeno exemplo:</p>
<p><a href="http://resources.esri.com/help/9.3/arcgisserver/apis/flex/samples/BasicMap.html" target="_blank"><img style="border-bottom:0;border-left:0;display:block;float:none;margin-left:auto;border-top:0;margin-right:auto;border-right:0;" title="image" border="0" alt="image" src="http://sandrobatista.files.wordpress.com/2009/05/image.png?w=534&#038;h=254" width="534" height="254" /></a></p>
</div>]]></content:encoded>
</item>

</channel>
</rss>
