This is a portable class library which makes it easy to access the Bing Maps REST services from .NET.
Перейти к файлу
Ricky Brundritt 870e6120c5 Bug fixes and new features
Added Geospatial Endpoint service support.
Fixed distance unit bug in RouteMajorRoadsRequest.
2017-03-22 18:00:13 -07:00
Build Bug fix for catching network related issues. 2017-02-16 15:52:25 -08:00
Samples Bug fixes and new features 2017-03-22 18:00:13 -07:00
Source Bug fixes and new features 2017-03-22 18:00:13 -07:00
.gitignore minor edit 2016-12-13 16:19:29 +00:00
BingMapsRESTToolkit.sln Added support for Imagery Providers 2017-01-30 10:00:38 -08:00
CHANGELOG.md Bug fix for catching network related issues. 2017-02-16 15:52:25 -08:00
CONTRIBUTING.md Bug fixes and new features 2017-03-22 18:00:13 -07:00
LICENSE.md minor update 2017-01-31 15:42:45 -08:00
README.md Bug fix for catching network related issues. 2017-02-16 15:52:25 -08:00

README.md

Bing Maps Logo

NuGet license

Bing Maps REST Toolkit for .NET

This is a portable .NET class library which provides a set of tools that make it easy to access the Bing Maps REST services in .NET based apps. Take a look at the Getting Started documentation.

Features

  • Uses HTTPS by default.
  • Implements the documented best practices for Bing Maps. For example, it automatically encodes query parameters. A commonly overlooked stepped which greatly reduces the chances of invalid queries being sent to the service.
  • Handles errors and rate limiting by catching exception and returning response with error message.
  • Automatically determines when a POST request should be made instead of a GET request.

NuGet Package

The Bing Maps REST Services Toolkit is available as a NuGet package. If using Visual Studio, open the nuget package manager, select the Browse tab and search for "Bing Maps REST". This should reduce the list of results enough to find the "BingMapsRESTToolkit" package. The owner of the package is bingmaps and the author is Microsoft.

Alternatively, if you are using the nuget command line:

PM> Install-Package BingMapsRESTToolkit

Supported Platforms

  • .NET Framework 4.5+
  • ASP.NET Core 1.0
  • Universal Windows Platform (UWP)
  • Windows 10
  • Windows 8.1
  • Windows 8
  • Windows Phone 10
  • Windows Phone 8.1
  • Windows Phone Silverlight 8.1
  • Windows Phone Silverlight 8
  • Xamarin.Android
  • Xamarin.iOS
  • Xamarin.iOS (Classic)

Contributing

We welcome contributions. Feel free to file issues and pull requests on the repo and we'll address them as we can. Learn more about how you can help on our Contribution Rules & Guidelines.

You can reach out to us anytime with questions and suggestions using our communities below:

This project has adopted the Microsoft Open Source Code of Conduct. For more information, see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.

TODO List

The following is a list of tasks to do on this project.

  • Add documentation comments to Response classes.
  • Add domain URL property to BaseRestRequest and use in all request classes (i.e. https://dev.virtualearth.net/REST/v1/). This will make it easier to update if needed.

License

MIT

See License for full license text.

Additional Resources