forked from chadly/Geocoding.net
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* master: Don't include test project in ilmerged output Register google as default geocoder for example app Update .gitignore for VS 2015 Updating readme mapquest issues Upgrade Geocoding.Net in Example.sln. Can't reproduce chadly#45 and chadly#48. They are already fixed by commit ecc8cf6 Split tests for special characters and Street intersections (by ampersand) Test MapQuest Commercial API Implemented Google Geocoding channel feature (chadly#63) Bump version Add Google component filters for administrative areas, postal codes and countries (chadly#60) Adding Mixed SideOfStreet to MapQuest Bump minor version ahead of release Fixing space formatting Minor change Added place_id to GoogleAddress (chadly#52) update example output to match current return (chadly#54) # Conflicts: # Google/Google.csproj # Tests/MapQuestBatchGeocoderTest.cs # geocoding.nuspec # src/Geocoding.Google/GoogleGeocoder.cs # teamcity.targets # test/Geocoding.Tests/GoogleGeocoderTest.cs # test/Geocoding.Tests/MapQuestGeocoderTest.cs
- Loading branch information
Showing
19 changed files
with
277 additions
and
111 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
namespace Geocoding.Google | ||
{ | ||
public class GoogleComponentFilter | ||
{ | ||
public string ComponentFilter { get; set; } | ||
|
||
public GoogleComponentFilter(string component, string value) | ||
{ | ||
ComponentFilter = string.Format("{0}:{1}", component, value); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
namespace Geocoding.Google | ||
{ | ||
public struct GoogleComponentFilterType | ||
{ | ||
public const string AdministrativeArea = "administrative_area"; | ||
public const string PostalCode = "postal_code"; | ||
public const string Country = "country"; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
namespace Geocoding.Google | ||
{ | ||
public class GoogleComponentFilter | ||
{ | ||
public string ComponentFilter { get; set; } | ||
|
||
public GoogleComponentFilter(string component, string value) | ||
{ | ||
ComponentFilter = string.Format("{0}:{1}", component, value); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
namespace Geocoding.Google | ||
{ | ||
public struct GoogleComponentFilterType | ||
{ | ||
public const string AdministrativeArea = "administrative_area"; | ||
public const string PostalCode = "postal_code"; | ||
public const string Country = "country"; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,5 +19,9 @@ public enum SideOfStreet | |
/// Right | ||
/// </summary> | ||
R, | ||
/// <summary> | ||
/// Mixed | ||
/// </summary> | ||
M, | ||
} | ||
} |
Oops, something went wrong.