active questions tagged bing - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T00:43:30Z http://stackoverflow.com/feeds/tag/bing http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1705477/custom-colors-in-bing-maps 1 custom colors in bing maps? Mattias Konradsson 2009-11-10T03:33:11Z 2009-11-27T04:12:14Z <p>I was looking at <a href="http://www.msnbc.msn.com/id/26295161/ns/weather/" rel="nofollow">http://www.msnbc.msn.com/id/26295161/ns/weather/</a> and noticed that the flash map is provided by bing and have a custom color scheme. I have a similar need to show maps with a black &amp; white colortheme, is it possible using their api or have they made custom tiles ? (doesnt seem feasible to provide tiles for alls maps on all levels :)</p> http://stackoverflow.com/questions/1202424/vemap-pan-triggers-vemap-onclick 2 VEMap Pan triggers VEMap.onclick Jason 2009-07-29T19:12:21Z 2009-11-26T03:38:28Z <p>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?</p> <pre><code>function GetMap(){ map = new VEMap('dvMap'); map.LoadMap(new VELatLong(35.576916524038616,-80.9410858154297), 11, 'h',false); mapIsInit = true; map.AttachEvent('onclick', MapClick); </code></pre> <p>} function MapClick(e){ var clickPnt = map.PixelToLatLong(new VEPixel(e.mapX,e.mapY)); Message('Map X: ' + clickPnt.Longitude + '\nMap Y: ' + clickPnt.Latitude + '\nZoom: ' + e.zoomLevel); }</p> http://stackoverflow.com/questions/1799903/quotes-versus-non-quotes-in-bing 2 Quotes versus non quotes in bing [closed] Peter 2009-11-25T20:59:44Z 2009-11-25T21:43:28Z <p>in bing.com : </p> <blockquote> <p>java jobs -> 57,000,000 hits (<a href="http://www.bing.com/search?q=java+jobs&amp;go=&amp;form=QBRE&amp;scope=web&amp;qs=n" rel="nofollow">"http://www.bing.com/search?q=java+jobs&amp;go=&amp;form=QBRE&amp;scope=web&amp;qs=n")</a></p> <p>"java jobs" -> 234,000,000 hits (<a href="http://www.bing.com/search?q=%22java+jobs%22&amp;go=&amp;form=QBRE&amp;scope=web&amp;qs=n" rel="nofollow">http://www.bing.com/search?q=%22java+jobs%22&amp;go=&amp;form=QBRE&amp;scope=web&amp;qs=n</a>)</p> </blockquote> <p>How comes?</p> <p>You can migrate this question if it is necessary, but for me this was program related, since I was writing a program that uses bing results and it's about an alghoritm.. (but I am in great doubt right know..)</p> <p>UPDATE : I now also see the results are constantly changing... Is Bing not reliable as statistical source?</p> <p>UPDATE 2 : any ideas : continued on <a href="http://superuser.com/questions/75384/quotes-versus-non-quotes-in-bing">http://superuser.com/questions/75384/quotes-versus-non-quotes-in-bing</a></p> http://stackoverflow.com/questions/1794745/which-open-source-search-engine-give-results-like-bing-results 0 which open source search engine give results like bing results? [closed] murali 2009-11-25T05:00:11Z 2009-11-25T05:25:33Z <p>hi</p> <p>i mean bing produced the results ,we move on curse over the result.the side box will produce the some data.which open source search engine will able to give this type of results.is bing uses web 3.0 technology?</p> <p>thank you</p> http://stackoverflow.com/questions/1778651/how-to-propertly-use-bing-translate-api 0 How to propertly use Bing Translate API? John 2009-11-22T13:10:10Z 2009-11-22T13:10:10Z <p>Hello,</p> <p>I'm using the API of Bing, more precisely - the translation part, and it all works quite well except one thing - auto detection of language. How is that possible?</p> <p>My code is working fine,incase someone needs to look at:</p> <pre><code>function HTTPEncode(const AStr: string): string; const NoConversion = ['A'..'Z', 'a'..'z', '*', '@', '.', '_', '-']; var i: integer; begin Result := ''; for i := 1 to Length(AStr) do begin if CharInSet(AStr[i],NoConversion) then Result := Result + AStr[i] else Result := Result + Format('%%%.2x',[ord(AStr[i])]); end; end; function GetTranslation(text, fromLang, toLang: string): string; var xmldoc: TXMLDocument; inode,mnode,rnode,irnode: IXMLNode; j: integer; uri: string; idhttp:TIdHttp; begin Result := ''; idhttp:=TIdHttp.Create(nil); xmldoc := TXMLDocument.Create(application); try xmldoc.LoadFromXML(idhttp.Get('http://api.search.live.net/xml.aspx?Appid=' + AppID + '&amp;query='+HTTPEncode(text)+ '&amp;sources=translation'+ '&amp;Translation.SourceLanguage=' + fromLang + '&amp;Translation.TargetLanguage=' + toLang)); finally idhttp.Free; end; try inode := xmldoc.ChildNodes.FindNode('SearchResponse'); if Assigned(inode) then begin uri := 'http://schemas.microsoft.com/LiveSearch/2008/04/XML/translation'; mnode := inode.ChildNodes.FindNode('Translation',uri); if Assigned(mnode) then begin rnode := mnode.ChildNodes.FindNode('Results',uri); if Assigned(rnode) then begin irnode := rnode.ChildNodes.FindNode('TranslationResult',uri); if Assigned(irnode) then Result := irnode.ChildNodes.FindNode('TranslatedTerm',uri).NodeValue; end; end; end; finally xmldoc.Free; end; end; begin ShowMessage(GetTranslation('Hello!','en','de')); end; </code></pre> <p>I followed the packets from <a href="http://www.microsofttranslator.com/" rel="nofollow">http://www.microsofttranslator.com/</a> when using auto-detection feature, the result was 'from=;' whereas if source language is English it'd be 'from=en;'.I tried aswell sending '' as source language,but it didn't work out - no result.</p> <p>How do I use auto-detection?</p> http://stackoverflow.com/questions/1763309/setting-custom-pushpin-z-index-in-ve-sdk-6-2 0 Setting Custom Pushpin z-index in VE SDK 6.2 Carriag 2009-11-19T13:30:03Z 2009-11-19T13:30:03Z <p>Okay, I'm trying to be creative with my map. My proof of concept is at www.ambersedibles.com/test.html. What you see is a png layer with a transparent center, so the map is actually behind the green border.</p> <p>Microsoft's BING logo is z-index 30 so you can see it on top of border. The copyright in the lower right hand corner is z-index 31. I found this merely buy trial and error to see when they would no longer appear on top of the green border.</p> <p>My goal is to adjust the z-index of the custom push pins so that they are on top of the border layer and thus responsive to mouseover options.</p> <p>Any help is greatly appreciated, Carraig</p> http://stackoverflow.com/questions/1551311/how-to-reset-default-location-map-of-nerddinner 0 How to reset default location map of Nerddinner? DotNet User 2009-10-11T18:06:54Z 2009-11-18T08:00:05Z <p>It's a simple issue which I want to modify for a long time. </p> <p>Could anyone let me know where I could change the default map location from "USA" to "UK" or other country? </p> <p>Many thanks. </p> http://stackoverflow.com/questions/1733156/silverlight-imagebrush-not-rendering-with-bing-map-control 0 Silverlight ImageBrush not rendering (with Bing Map Control) cagreen 2009-11-14T03:38:40Z 2009-11-14T03:49:19Z <p>I'm trying to add an image to a Pushpin instance from the Silverlight Bing Map Control, but I can't seem to get it to render (the pushpin renders fine). This is probably a general WPF question rather than anything specific to the Pushpin object.</p> <pre><code>Pushpin pp = new Pushpin(); ... Uri imageUri = new Uri(@"myImage.png", UriKind.Relative); BitmapImage image = new BitmapImage(imageUri); ImageBrush imageBrush = new ImageBrush(); imageBrush.ImageSource = image; pp.Foreground = imageBrush; myMap.Children.Add(pp); </code></pre> http://stackoverflow.com/questions/1713595/how-to-make-site-good-ranking-in-bing 0 How to make site Good Ranking in BING [closed] boss 2009-11-11T07:25:57Z 2009-11-11T07:42:29Z <p>My site is getting high rank in google but not in Bing. What may be wrong. I searched for this but i dint find the answer. I used all the techniques which bing suggest. Any suggestion?</p> http://stackoverflow.com/questions/1701248/retrieve-webpage-update-time-through-bing-api 0 Retrieve webpage update time through Bing API Sanket 2009-11-09T14:22:42Z 2009-11-09T14:22:42Z <p>I was looking at the Bing API documentation to find out a way to retrieve the last time a webpage was updated but couldn’t find any way to get this information. Google AJAX API seems to be exposing this information for Blogs, News etc but not for normal web pages.</p> <p>Anyone know a way to get this kind of webpage metadata from Bing Search API?</p> http://stackoverflow.com/questions/1615963/what-is-the-technology-behind-bing-its-own-version-of-map-reduce-algorithm-or-so 4 What is the technology behind bing? Its own version of map-reduce algorithm or something else? Murali 2009-10-23T21:22:35Z 2009-11-09T10:48:41Z <p>Bing's search hits are quite impressive, has Microsoft not let anyone in on behind the scenes of their search technology? Tried <a href="http://www.discoverbing.com" rel="nofollow">http://www.discoverbing.com</a> but couldn't find the answer to my question.</p> http://stackoverflow.com/questions/1655909/what-does-integrate-twitter-and-facebook-search-result-to-microsoft-bing-search-r -1 What does integrate Twitter and Facebook search result to Microsoft Bing search results means? [closed] JustDoIt 2009-10-31T23:26:07Z 2009-10-31T23:26:07Z <p>What does integrate Twitter and Facebook search result to Microsoft Bing search results means?</p> <p>As in what kind of development opporunities do you all observe here? Possible to have certain API that will make good use of these search results ?</p> <p>e.g. which content on the Web is most popular.</p> http://stackoverflow.com/questions/1647989/java-bing-image-search 0 Java Bing Image Search Zinx 2009-10-30T04:16:20Z 2009-10-30T13:17:10Z <p>Hi All,</p> <p>I have a small application in java which searches images using bing image search. The problem I am facing is that, its getting only first 20 images. May be because when we search on bing.com it populates first 20 images first and then its an infinite scrolling feature. </p> <p>Is there any way to search more than 20 images using bing?</p> <p>Cheers :)</p> http://stackoverflow.com/questions/1194843/stop-bing-maps-simplifying-polygons 0 Stop bing maps simplifying polygons Leon 2009-07-28T15:17:05Z 2009-10-28T07:09:49Z <p>Bing maps currently simplifies each polygon shape that gets put on the map.</p> <p>While that's good for most things, I need to show the full resolution polygons and I'll sort out the simplification myself.</p> <p>Any ideas on how to do this, I can't seem to find a way to turn it off and finding documentation on Bing/live/VE/MS/whatever maps is a nightmare!</p> <p>Any help appreciated,</p> <p>Thanks.</p> http://stackoverflow.com/questions/1503685/import3dmodel-replaces-the-shape-below 0 Import3DModel replaces the shape below Dheeraj Sharma 2009-10-01T12:32:56Z 2009-10-01T12:32:56Z <p>Hi,</p> <p>I am trying to place an image using Import3DModel. The object is getting placed but if let'z say I am giving the Latitude and logitude of the building, it replaces the building and place the 3-D object imported. </p> <p>Can any one please let me know how can I protect the shape below or in the orginal layer/tile and add the new shape on top of it. </p> <p>Regards,</p> <p>Dheeraj</p> http://stackoverflow.com/questions/1337516/why-bing-search-looks-exactly-as-google -5 Why bing search looks exactly as google? [closed] DaNieL 2009-08-26T21:11:23Z 2009-09-11T14:47:40Z <p>I searched around a lot but i cant get out this, maybe silly, question.</p> <p>Why the result page of a query in Bing looks pretty the same of a google result page (except for the orders of the results)??</p> <p>Does bing use google engine, maybe changing the 'orders rules', or microsoft just 'choosed' to copy'n'paste the css from its first rival?</p> http://stackoverflow.com/questions/1379850/how-can-i-draw-a-road-using-bing-maps-api 2 How can I draw a road using bing maps api? Miguel Ping 2009-09-04T15:08:03Z 2009-09-04T15:28:00Z <p>Is it possible to draw a road using bing maps js api? Ideally I would supply two georeference points and the trajectory/road would be always on the same road.</p> <p>Basically, I want to highlight a road.</p> http://stackoverflow.com/questions/1335780/how-to-show-traffic-on-bing-maps-3d-control-wpf 2 How to show traffic on Bing maps 3D control (WPF) James Cadd 2009-08-26T15:59:31Z 2009-08-26T21:22:08Z <p>I'm using Infostrat's WPF wrapper for the Bing maps 3d control (blog here <a href="http://blogs.msdn.com/virtualearth3d/" rel="nofollow">http://blogs.msdn.com/virtualearth3d/</a> ) and was wondering how to show traffic. I can see this is possible when I hit the 3d button in the browser and click on traffic. The solution is probably to use the AddLayer function which takes a string, but I can't figure out what the layer options are.</p> http://stackoverflow.com/questions/1049800/anyone-using-bing-map-web-services-with-delphi 6 Anyone using Bing Map Web Services with Delphi? Nathan Sutcliffe 2009-06-26T15:35:44Z 2009-08-19T08:49:37Z <p>Has anyone gotten Bing Map Web Services (formerly Virtual Earth Web Services) working with Delphi?</p> <p>Based on my experiences so far (both using Delphi and Visual Studio C#), I'm about ready to give up on it and go with the MapPoint Web Service until a future version of Bing Maps Web Services comes out. However, I thought I'd post a question here as a last resort...</p> <p>I imported the Token Service and Geocode Services WSDL documents.</p> <p>I was successfully able to get a token from the token service, but have been unable to get the Geocode service to work at all. It always returns the following error message: The message with Action '' cannot be processed at the receiver, due to a ContractFilter mismatch at the EndpointDispatcher. This may be because of either a contract mismatch (mismatched Actions between sender and receiver) or a binding/security mismatch between the sender and the receiver. Check that sender and receiver have the same contract and the same binding (including security requirements, e.g. Message, Transport, None).</p> <p>I noticed Delphi wasn't specifying a value for the SOAPAction header, so I tried specifying "http://staging.dev.virtualearth.net/webservices/v1/geocode/contracts/IGeocodeService/Geocode" and got the following error message instead:</p> <p>The server was unable to process the request due to an internal error. For more information about the error, either turn on IncludeExceptionDetailInFaults (either from ServiceBehaviorAttribute or from the &lt;serviceDebug&gt; configuration behavior) on the server in order to send the exception information back to the client, or turn on tracing as per the Microsoft .NET Framework 3.0 SDK documentation and inspect the server trace logs.</p> <p>Below is my Delphi code and the raw XML being sent, then the raw XML being sent by a similar call from Microsoft's sample C# code. There are several differences in the XML, but I'm not sure what difference(s) is the key.</p> <pre><code>var Service: IGeocodeService; Request: Geocode; Response: GeocodeResponse3; ResponseIndex: Integer; Token: WideString; Filters: ArrayOfFilterBase; begin Token := GetToken; Service := GetIGeocodeService; Request := Geocode.Create; try Request.request := GeocodeRequest.Create; Request.request.Credentials := GeocodeService.Credentials.Create; // Freed by GeocodeRequest class Request.request.Credentials.Token := Token; Request.request.Query := AddressEdit.Text; Request.request.Options := GeocodeOptions.Create; SetLength( Filters, 1 ); Filters[ 0 ] := ConfidenceFilter.Create; ConfidenceFilter( Filters[ 0 ] ).MinimumConfidence := GeocodeService.High_; Request.request.Options.Filters := Filters; Response := Service.Geocode( Request ); try for ResponseIndex := Low( Response.GeocodeResult.Results ) to High( Response.GeocodeResult.Results ) do begin OutputMemo.Lines.Add( Response.GeocodeResult.Results[ ResponseIndex ].DisplayName ); end; finally Response.Free; end; finally Request.Free; end; end; &lt;?xml version="1.0"?&gt; &lt;SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/"&gt; &lt;SOAP-ENV:Body SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:NS2="http://dev.virtualearth.net/webservices/v1/geocode/contracts" xmlns:NS3="http://dev.virtualearth.net/webservices/v1/geocode" xmlns:NS4="http://dev.virtualearth.net/webservices/v1/common"&gt; &lt;NS1:Geocode xmlns:NS1="http://dev.virtualearth.net/webservices/v1/geocode/contracts"&gt; &lt;parameters href="#1"/&gt; &lt;/NS1:Geocode&gt; &lt;NS2:Geocode id="1" xsi:type="NS2:Geocode"&gt; &lt;request href="#2"/&gt; &lt;/NS2:Geocode&gt; &lt;NS3:request id="2" xsi:type="NS3:GeocodeRequest"&gt; &lt;Credentials href="#3"/&gt; &lt;Options href="#4"/&gt; &lt;Query xsi:type="xsd:string"&gt;Some Address&lt;/Query&gt; &lt;/NS3:request&gt; &lt;NS4:Credentials id="3" xsi:type="NS4:Credentials"&gt; &lt;Token xsi:type="xsd:string"&gt;cbYkKgNlrsGnZbn3HRP7Xp5LJMv3RR_5qECwgB792COfY3EPmviaDpZ4mmD3fDP1Osc6fWUkTptog7bfgM73bA2&lt;/Token&gt; &lt;/NS4:Credentials&gt; &lt;NS3:Options id="4" xsi:type="NS3:GeocodeOptions"&gt; &lt;Filters xsi:type="SOAP-ENC:Array" SOAP-ENC:arrayType="NS3:FilterBase[1]"&gt; &lt;item href="#5"/&gt; &lt;/Filters&gt; &lt;/NS3:Options&gt; &lt;NS3:ConfidenceFilter id="5" xsi:type="NS3:ConfidenceFilter"&gt; &lt;MinimumConfidence xsi:type="NS4:Confidence"&gt;High&lt;/MinimumConfidence&gt; &lt;/NS3:ConfidenceFilter&gt; &lt;/SOAP-ENV:Body&gt; &lt;/SOAP-ENV:Envelope&gt; &lt;s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"&gt; &lt;s:Body&gt; &lt;Geocode xmlns="http://dev.virtualearth.net/webservices/v1/geocode/contracts"&gt; &lt;request xmlns:a="http://dev.virtualearth.net/webservices/v1/geocode" xmlns:i="http://www.w3.org/2001/XMLSchema-instance"&gt; &lt;Credentials xmlns="http://dev.virtualearth.net/webservices/v1/common"&gt; &lt;ApplicationId i:nil="true"/&gt; &lt;Token&gt;pezCDpJoxdCG63NQdJUGkTrYYalnuSQDwuIC9FvheFAd9MIPO75qX9n7il0dx3eTEHlN2877PzN1_6YbQDL5tg2&lt;/Token&gt; &lt;/Credentials&gt; &lt;Culture i:nil="true" xmlns="http://dev.virtualearth.net/webservices/v1/common"/&gt; &lt;ExecutionOptions i:nil="true" xmlns="http://dev.virtualearth.net/webservices/v1/common"/&gt; &lt;UserProfile i:nil="true" xmlns="http://dev.virtualearth.net/webservices/v1/common"/&gt; &lt;a:Address i:nil="true" xmlns:b="http://dev.virtualearth.net/webservices/v1/common"/&gt; &lt;a:Options&gt; &lt;a:Count i:nil="true"/&gt; &lt;a:Filters&gt; &lt;a:FilterBase i:type="a:ConfidenceFilter"&gt; &lt;a:MinimumConfidence&gt;High&lt;/a:MinimumConfidence&gt; &lt;/a:FilterBase&gt; &lt;/a:Filters&gt; &lt;/a:Options&gt; &lt;a:Query&gt;1 Microsoft Way, Redmond, WA&lt;/a:Query&gt; &lt;/request&gt; &lt;/Geocode&gt; &lt;/s:Body&gt; &lt;/s:Envelope&gt; </code></pre> http://stackoverflow.com/questions/1181690/bing-maps-cost-money 5 bing maps cost money? lior 2009-07-25T09:14:31Z 2009-08-13T19:43:23Z <p>hi</p> <p>I am building a new web site in asp.net, and im newbie with using maps.<br /> For my web site i will need the following functionality: </p> <ol> <li>display a map of specific location.</li> <li>display route map between two or more location</li> <li>calculate distance between 2 locations.</li> </ol> <p>I found most of the functionality at the <a href="http://www.microsoft.com/maps/isdk/ajax/" rel="nofollow"><strong>Bing Maps interactive SDK</strong> site</a>: and it works fine.</p> <p>My questions are:</p> <ol> <li>does it cost money to use this SDK ?</li> <li>for the third task, i understand that i will have to use MapPoint Services.<br /> (is there another way??) does it code money to use it?</li> </ol> <p>I will really appreciate it if you dont send me links, cause my english is not the best one...</p> <p>thanks a lot</p> http://stackoverflow.com/questions/1267523/what-do-fellow-developers-think-about-the-bing-search-engine 0 What do fellow developers think about the Bing search engine? [closed] Shiva 2009-08-12T17:20:32Z 2009-08-12T17:33:30Z <p>I think that Bing from Microsoft is really cool. I have found myself using both Google and Bing almost half and half now. How are other developers using this new search engine?</p> http://stackoverflow.com/questions/1263116/is-there-a-restriction-on-mappoint-globecontrol-objects 0 Is there a restriction on MapPoint GlobeControl objects? Kang Su 2009-08-11T21:43:01Z 2009-08-11T21:43:01Z <p>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 being null, including the RenderEngine. </p> <p>This makes it problematic to use this in a scenario where we want to have multiple maps on our surface. </p> <p>One workaround I've thought of is to construct a whole bunch of GlobeControls upfront (before I render anything) and then treat it as a GlobeControl pool, although I don't really know if I'm just asking for problems down the road (for example, if MapPoint only supports one GlobeControl per process or something). </p> <p>Any help or insight is greatly appreciated. Please let me know if you need more clarification.</p> http://stackoverflow.com/questions/1238932/does-bing-map-covers-india -2 does Bing map covers india [closed] hrishi 2009-08-06T13:35:23Z 2009-08-06T13:38:14Z <p>Do Bing map cover india at street level. can we get bing map api for free and how if yes??/</p> http://stackoverflow.com/questions/1236319/how-to-mimic-effects-of-maxscriptstatements-i-e-prevent-a-script-on-this-page 0 How to mimic effects of MaxScriptStatements (i.e. prevent "A script on this page is causing Internet Explorer to run slowly") without changing the registry? chispanz 2009-08-05T23:47:45Z 2009-08-06T00:07:04Z <p>We are using Bing and/or Google javascript map controls, sometimes with large numbers of dynamically alterable overlays.</p> <p>I have read <a href="http://support.microsoft.com/kb/175500/en-us" rel="nofollow">http://support.microsoft.com/kb/175500/en-us</a> and know how to set the MaxScriptStatments registry key.</p> <p>Problem is we do not want to programmatically set this or any other registry key on users' computers but would rather achieve the same effect some other way.</p> <p>Is there another way?</p> http://stackoverflow.com/questions/1212084/bing-performance 0 Bing Performance [closed] Duleb 2009-07-31T11:42:33Z 2009-07-31T11:48:19Z <p>Bing has been around for more than 2 months now.There has been some positive reviews about bing. Some experts in search areas have pointed out that Bing results are more relevant than Google's since its index is still not cluttered with unnecessary garbage. Does these claims have any truth behind them ? </p> http://stackoverflow.com/questions/1130325/which-map-api-most-powerful-googlemap-bing-map-etc 2 which map api most powerful? googlemap? bing map..etc? cometta 2009-07-15T09:23:50Z 2009-07-23T09:45:48Z <p>which javascript map api do you folks think most powerful? lately bing also introduce their map</p> http://stackoverflow.com/questions/1015651/whats-the-famous-bing-running-on-asp-net-asp-net-mvc-iis-7-net-3-5 4 What's the famous Bing running on? Asp.net, asp.net mvc, IIS 7, .net 3.5? emmanuel buah 2009-06-18T23:07:29Z 2009-07-22T17:21:05Z <p>What's the famous Bing running on? Asp.net, asp.net mvc, IIS 7, .net 3.5? Using firebug, I thought I could tell what was powering Bing since I had noticed the speed difference between that and Live.com. But, unfortunately, looking at the HTTP headers in firebug yield no server side information. So, what do you think. </p> http://stackoverflow.com/questions/1092595/custom-rendering-in-bing-silverlight-control 1 Custom Rendering in Bing Silverlight Control Kent Boogaart 2009-07-07T14:15:42Z 2009-07-13T10:40:07Z <p>Hi,</p> <p>I'm ramping up on a Silverlight 2 project that leverages the Bing Maps control. One thing our UX guys are wondering is whether it is possible to customize the look of the map completely. For example, draw countries as simple outlines with different color interiors. Or draw the ocean as white and countries as black dotted shapes.</p> <p>Does anyone know whether it is possible to achieve this level of customization? The <code>MapMode</code> class looked promising, but it doesn't seem to quite give me what I need.</p> <p>Thanks, Kent</p> http://stackoverflow.com/questions/1101659/connecting-to-bing-maps-sdk-from-a-rails-app 0 Connecting to Bing Maps SDK from a Rails app Kevin Dewalt 2009-07-09T03:09:38Z 2009-07-09T06:29:20Z <p>I am attempting to connect to <a href="http://msdn.microsoft.com/en-us/library/cc980922.aspx" rel="nofollow">Bing Maps SDK</a> through a RoR application. My goal is to calculate driving distance between two locations after geocoding them. I am new to SOAP and ROR so I may be making a simple mistake. </p> <p>Two days of Googling (Binging?) and I'm coming up short. Here is what I am doing:</p> <h2>Environment</h2> <p>Ruby 1.8.7 on Windows Vista (getting a Mac next week). gem install httpclient --source <a href="http://dev.ctor.org/download/" rel="nofollow">http://dev.ctor.org/download/</a> gem install soap4r --include-dependencies</p> <h2>Browser Test</h2> <p>Going to <a href="https://staging.common.virtualearth.net/find-30/common.asmx?wsdl" rel="nofollow">https://staging.common.virtualearth.net/find-30/common.asmx?wsdl</a> I am prompted with User Name and Password. I can enter both successfully and receive the WSDL file. So the <strong>URL, userid, and password are correct</strong>.</p> <h2>Code</h2> <pre><code>require 'rubygems' gem 'soap4r' require 'httpclient' require "soap/wsdlDriver" user = "XXXXXX" pass = "XXXXXXX" wsdl = "https://staging.common.virtualearth.net/find-30/common.asmx?wsdl" driver = SOAP::WSDLDriverFactory.new(wsdl).create_rpc_driver driver.options["protocol.http.basic_auth"] &lt;&lt; [wsdl,user,pass] </code></pre> <h2>Console Output</h2> <blockquote> <blockquote> <p>driver = SOAP::WSDLDriverFactory.new(wsdl).create_rpc_driver</p> </blockquote> </blockquote> <p><hr /></p> <p>HTTPClient::<strong>BadResponseError: unexpected response</strong>: &lt;#HTTP::Message::Headers:0x4f6cabc @reason_phrase="<strong>Unauthorized</strong>", @request_uri=nil, @body_date=nil, @status_code=401, @dumped=false, @request_method=nil, @chunked=false, @body_charset=nil, @request_via_proxy=nil, @header_item=[["Connection", "close"], ["Date", "Thu, 09 Jul 2009 02:53:59 GMT"], ["Server", "Microsoft-IIS/6.0"], ["P3P", "CP=\"BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo\""], ["X-Powered-By", "ASP.NET"], ["WWW-Authenticate", "Digest qop=\"auth\", realm=\" MapPoint\", nonce=\"87b3d5847da867f7930801742100f2e55de88fd216317a696fe1411f79e3\""], ["Content-Length", "0"]], @body_size=0, @http_version="1.1", @body_type=nil, @request_query=nil, @is_request=false> from c:/ruby/lib/ruby/gems/1.8/gems/httpclient-2.1.5.2/lib/httpclient.rb:840:in `follow_redirect'</p> <h2>References I've reviewed</h2> <p>Quite possible that one of these has the answer. I just don't have enough background in SOAP to find it...</p> <p><a href="http://hideoustriumph.wordpress.com/2008/05/05/ws-deathstar-for-the-rest-of-us/" rel="nofollow">http://hideoustriumph.wordpress.com/2008/05/05/ws-deathstar-for-the-rest-of-us/</a> <a href="http://s2.diffuse.it/blog/show/62-Consume_SSL_protected_Web_Services_with_soap4r" rel="nofollow">http://s2.diffuse.it/blog/show/62-Consume_SSL_protected_Web_Services_with_soap4r</a> <a href="http://dev.ctor.org/doc/soap4r/RELEASE_en.html#samples" rel="nofollow">http://dev.ctor.org/doc/soap4r/RELEASE_en.html#samples</a> <a href="http://markthomas.org/2007/09/12/getting-started-with-soap4r/" rel="nofollow">http://markthomas.org/2007/09/12/getting-started-with-soap4r/</a> <a href="http://www.elctech.com/articles/consuming-soap-with-ruby-and-soap-mapping-object" rel="nofollow">http://www.elctech.com/articles/consuming-soap-with-ruby-and-soap-mapping-object</a> <a href="http://wso2.org/project/wsf/ruby/1.1.0/docs/manual.html" rel="nofollow">http://wso2.org/project/wsf/ruby/1.1.0/docs/manual.html</a> <a href="http://www.globalnerdy.com/2009/06/29/learnhub-powered-by-rails-searches-with-bing/" rel="nofollow">http://www.globalnerdy.com/2009/06/29/learnhub-powered-by-rails-searches-with-bing/</a> <a href="http://rpheath.com/posts/298-consuming-soap-services-in-ruby" rel="nofollow">http://rpheath.com/posts/298-consuming-soap-services-in-ruby</a></p> http://stackoverflow.com/questions/1075320/how-does-bing-com-create-enlarged-thumbnails 2 How does Bing.com create enlarged thumbnails? Lily 2009-07-02T16:19:27Z 2009-07-02T17:05:08Z <p>When I search images using Bing.com, I realize their images are well cropped and sorted. When you place your mouse on an image, another window will pop up with an enlarged image.</p> <p><a href="http://www.bing.com/images/search?q=Heros&amp;FORM=BIFD#" rel="nofollow">http://www.bing.com/images/search?q=Heros&amp;FORM=BIFD#</a></p> <p>I want to do the same thing in my program. I checked the source code of their page. They are using javascript, but still I have no clue how they make it. Does anyone familiar with it? Any suggestion is welcomed.</p>