active questions tagged bing - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T00:43:30Zhttp://stackoverflow.com/feeds/tag/binghttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1705477/custom-colors-in-bing-maps1custom colors in bing maps?Mattias Konradsson2009-11-10T03:33:11Z2009-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 & 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-onclick2VEMap Pan triggers VEMap.onclickJason2009-07-29T19:12:21Z2009-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-bing2Quotes versus non quotes in bing [closed]Peter2009-11-25T20:59:44Z2009-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&go=&form=QBRE&scope=web&qs=n" rel="nofollow">"http://www.bing.com/search?q=java+jobs&go=&form=QBRE&scope=web&qs=n")</a></p>
<p>"java jobs" -> 234,000,000 hits (<a href="http://www.bing.com/search?q=%22java+jobs%22&go=&form=QBRE&scope=web&qs=n" rel="nofollow">http://www.bing.com/search?q=%22java+jobs%22&go=&form=QBRE&scope=web&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-results0which open source search engine give results like bing results? [closed]murali2009-11-25T05:00:11Z2009-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-api0How to propertly use Bing Translate API?John2009-11-22T13:10:10Z2009-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 + '&query='+HTTPEncode(text)+
'&sources=translation'+
'&Translation.SourceLanguage=' + fromLang +
'&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-20Setting Custom Pushpin z-index in VE SDK 6.2Carriag2009-11-19T13:30:03Z2009-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-nerddinner0How to reset default location map of Nerddinner? DotNet User2009-10-11T18:06:54Z2009-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-control0Silverlight ImageBrush not rendering (with Bing Map Control)cagreen2009-11-14T03:38:40Z2009-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-bing0How to make site Good Ranking in BING [closed]boss2009-11-11T07:25:57Z2009-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-api0Retrieve webpage update time through Bing APISanket2009-11-09T14:22:42Z2009-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-so4What is the technology behind bing? Its own version of map-reduce algorithm or something else?Murali2009-10-23T21:22:35Z2009-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-1What does integrate Twitter and Facebook search result to Microsoft Bing search results means? [closed]JustDoIt2009-10-31T23:26:07Z2009-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-search0Java Bing Image SearchZinx2009-10-30T04:16:20Z2009-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-polygons0Stop bing maps simplifying polygonsLeon2009-07-28T15:17:05Z2009-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-below0Import3DModel replaces the shape belowDheeraj Sharma2009-10-01T12:32:56Z2009-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-5Why bing search looks exactly as google? [closed]DaNieL2009-08-26T21:11:23Z2009-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-api2How can I draw a road using bing maps api?Miguel Ping2009-09-04T15:08:03Z2009-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-wpf2How to show traffic on Bing maps 3D control (WPF)James Cadd2009-08-26T15:59:31Z2009-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-delphi6Anyone using Bing Map Web Services with Delphi?Nathan Sutcliffe2009-06-26T15:35:44Z2009-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 <serviceDebug> 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;
<?xml version="1.0"?>
<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/">
<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">
<NS1:Geocode xmlns:NS1="http://dev.virtualearth.net/webservices/v1/geocode/contracts">
<parameters href="#1"/>
</NS1:Geocode>
<NS2:Geocode id="1" xsi:type="NS2:Geocode">
<request href="#2"/>
</NS2:Geocode>
<NS3:request id="2" xsi:type="NS3:GeocodeRequest">
<Credentials href="#3"/>
<Options href="#4"/>
<Query xsi:type="xsd:string">Some Address</Query>
</NS3:request>
<NS4:Credentials id="3" xsi:type="NS4:Credentials">
<Token xsi:type="xsd:string">cbYkKgNlrsGnZbn3HRP7Xp5LJMv3RR_5qECwgB792COfY3EPmviaDpZ4mmD3fDP1Osc6fWUkTptog7bfgM73bA2</Token>
</NS4:Credentials>
<NS3:Options id="4" xsi:type="NS3:GeocodeOptions">
<Filters xsi:type="SOAP-ENC:Array" SOAP-ENC:arrayType="NS3:FilterBase[1]">
<item href="#5"/>
</Filters>
</NS3:Options>
<NS3:ConfidenceFilter id="5" xsi:type="NS3:ConfidenceFilter">
<MinimumConfidence xsi:type="NS4:Confidence">High</MinimumConfidence>
</NS3:ConfidenceFilter>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
<s:Body>
<Geocode xmlns="http://dev.virtualearth.net/webservices/v1/geocode/contracts">
<request xmlns:a="http://dev.virtualearth.net/webservices/v1/geocode" xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
<Credentials xmlns="http://dev.virtualearth.net/webservices/v1/common">
<ApplicationId i:nil="true"/>
<Token>pezCDpJoxdCG63NQdJUGkTrYYalnuSQDwuIC9FvheFAd9MIPO75qX9n7il0dx3eTEHlN2877PzN1_6YbQDL5tg2</Token>
</Credentials>
<Culture i:nil="true" xmlns="http://dev.virtualearth.net/webservices/v1/common"/>
<ExecutionOptions i:nil="true" xmlns="http://dev.virtualearth.net/webservices/v1/common"/>
<UserProfile i:nil="true" xmlns="http://dev.virtualearth.net/webservices/v1/common"/>
<a:Address i:nil="true" xmlns:b="http://dev.virtualearth.net/webservices/v1/common"/>
<a:Options>
<a:Count i:nil="true"/>
<a:Filters>
<a:FilterBase i:type="a:ConfidenceFilter">
<a:MinimumConfidence>High</a:MinimumConfidence>
</a:FilterBase>
</a:Filters>
</a:Options>
<a:Query>1 Microsoft Way, Redmond, WA</a:Query>
</request>
</Geocode>
</s:Body>
</s:Envelope>
</code></pre>
http://stackoverflow.com/questions/1181690/bing-maps-cost-money5bing maps cost money?lior2009-07-25T09:14:31Z2009-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-engine0What do fellow developers think about the Bing search engine? [closed]Shiva2009-08-12T17:20:32Z2009-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-objects0Is there a restriction on MapPoint GlobeControl objects?Kang Su2009-08-11T21:43:01Z2009-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-2does Bing map covers india [closed]hrishi2009-08-06T13:35:23Z2009-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-page0How to mimic effects of MaxScriptStatements (i.e. prevent "A script on this page is causing Internet Explorer to run slowly") without changing the registry?chispanz2009-08-05T23:47:45Z2009-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-performance0Bing Performance [closed]Duleb2009-07-31T11:42:33Z2009-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-etc2which map api most powerful? googlemap? bing map..etc?cometta2009-07-15T09:23:50Z2009-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-54What's the famous Bing running on? Asp.net, asp.net mvc, IIS 7, .net 3.5?emmanuel buah2009-06-18T23:07:29Z2009-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-control1Custom Rendering in Bing Silverlight ControlKent Boogaart2009-07-07T14:15:42Z2009-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-app0Connecting to Bing Maps SDK from a Rails appKevin Dewalt2009-07-09T03:09:38Z2009-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"] << [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>: <#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-thumbnails2How does Bing.com create enlarged thumbnails?Lily2009-07-02T16:19:27Z2009-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&FORM=BIFD#" rel="nofollow">http://www.bing.com/images/search?q=Heros&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>