Skip to content

A .NET Portable Class Library for accessing Bing REST Services.

Notifications You must be signed in to change notification settings

advancedrei/Bing.RestClient

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Bing.RestClient is a Portable Class Library that makes it easy to leverage Bing services from any kind of modern application.

Currently handling Bing Maps and Bing Spatial APIs, this library will eventially be able to leverage Bing's entire public API surface.

Works on .NET 4.5, Windows Phone 8, and Windows 8.x, as well as Android and iOS through Mono.

Quick start

Install the NuGet package: Install-Package Bing.RestClient -Pre, clone the repo, git clone git://github.com/advancedrei/Bing.RestClient.git, or download the latest release.

Quick start

Here is a simple example of leveraging the SpatialDataClient to locate nearby points of interest.

// Take advantage of built-in Point of Interest groups
var list = PoiEntityGroups.Government();
list.Add(PoiEntityTypes.Bank);

// Build your filter list from the group.
var filter = PoiEntityGroups.BuildFilter(list);

var client = new SpatialDataClient("YOUR BING KEY HERE");

// All Bing results are in Kilometers, but convert them to Miles with our built-in conversion helper.
var results = await client.Find<PointOfInterest>("NorthAmericaPOI", "1 Microsoft Way, Redmond, WA",
    client.ConvertMiToKm(3), filter, top: 100);

You can also geocode addresses and reverse-geocode coordinates with the MapsClient.

For more information, check out our online documentation at NuDoq.

Bug tracker

Have a bug? Please create an issue here on GitHub that conforms with necolas's guidelines.

https://github.com/AdvancedREI/Bing.RestClient/issues

Twitter account

Keep up to date on announcements and more by following AdvancedREI on Twitter, @AdvancedREI.

Blog

Read more detailed announcements, discussions, and more on The AdvancedREI Dev Blog.

Authors

Robert McLaws

Don Kackman

Copyright and license

Copyright 2013 AdvancedREI, LLC.

The MIT License (MIT)

Copyright (c) 2013 AdvancedREI, LLC. and Robert McLaws

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

  • The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

  • You may not use this software to sell apps in the Windows Phone Store or Windows Store that replicate functionality from apps distributed by AdvancedREI.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

About

A .NET Portable Class Library for accessing Bing REST Services.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published