diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index 41ca3f3..7928194 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -7,7 +7,7 @@ This project has adopted the [Microsoft Open Source Code of Conduct](https://ope
## How to contribute ##
There are a couple of ways you can contribute to this repo:
-* **Ideas, feature requests and bugs**: We are open to all ideas and we want to get rid of bugs! Use the [Issues section](https://github.com/Microsoft/Bing-Maps-V8-TypeScript-Definitions/issues) to either report a new issue, provide your ideas or contribute to existing threads
+* **Ideas, feature requests and bugs**: We are open to all ideas and we want to get rid of bugs! Use the [Issues section](https://github.com/Microsoft/BingMapsRESTToolkit/issues) to either report a new issue, provide your ideas or contribute to existing threads
* **Documentation**: Found a typo or strangely worded sentences? Submit a PR!
**Note:** If the issue you are experiencing is with the Bing Maps SDK itself, please report in the [MSDN forums](https://social.msdn.microsoft.com/Forums/en-US/home?forum=bingmapsajax&filter=alltypes&sort=lastpostdesc), or if you license Bing Maps, contact the [Bing Maps Enterprise support team](https://www.microsoft.com/maps/support.aspx).
diff --git a/Samples/WPF/RESTToolkitTestApp/MainWindow.xaml b/Samples/WPF/RESTToolkitTestApp/MainWindow.xaml
index 40fb208..ae5265f 100644
--- a/Samples/WPF/RESTToolkitTestApp/MainWindow.xaml
+++ b/Samples/WPF/RESTToolkitTestApp/MainWindow.xaml
@@ -31,6 +31,7 @@
+
diff --git a/Samples/WPF/RESTToolkitTestApp/MainWindow.xaml.cs b/Samples/WPF/RESTToolkitTestApp/MainWindow.xaml.cs
index c8ac1c4..93be021 100644
--- a/Samples/WPF/RESTToolkitTestApp/MainWindow.xaml.cs
+++ b/Samples/WPF/RESTToolkitTestApp/MainWindow.xaml.cs
@@ -57,7 +57,7 @@ namespace RESTToolkitTestApp
{
var r = new GeocodeRequest()
{
- Query = "New York, NY",
+ Query = "66-46 74th St, Middle Village, NY 11379",
IncludeIso2 = true,
IncludeNeighborhood = true,
MaxResults = 25,
@@ -297,6 +297,23 @@ namespace RESTToolkitTestApp
ProcessImageRequest(r);
}
+ ///
+ /// Demostrates how to make a Geospatial Endpoint Request.
+ ///
+ private void GeospatialEndpointBtn_Clicked(object sender, RoutedEventArgs e)
+ {
+ var r = new GeospatialEndpointRequest()
+ {
+ //Language = "zh-CN",
+ Culture = "zh-CN",
+ UserRegion = "CN",
+ UserLocation = new Coordinate(40, 116),
+ BingMapsKey = BingMapsKey
+ };
+
+ ProcessRequest(r);
+ }
+
#endregion
#region Private Methods
diff --git a/Source/BingMapsRESTToolkit.csproj b/Source/BingMapsRESTToolkit.csproj
index 4daf9a8..ff60fbd 100644
--- a/Source/BingMapsRESTToolkit.csproj
+++ b/Source/BingMapsRESTToolkit.csproj
@@ -53,6 +53,7 @@
+
@@ -76,7 +77,6 @@
-