Skip to content

Commit

Permalink
Merge pull request #21 from davetimmins/dev
Browse files Browse the repository at this point in the history
Dev
  • Loading branch information
davetimmins authored Mar 12, 2018
2 parents f14e37e + 6b1c121 commit 987b2dc
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.cake
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ var target = Argument("target", "Default");
var configuration = Argument("configuration", "Release");
var solution = "./Anywhere.ArcGIS.sln";

var version = "1.3.1";
var version = "1.4.0";
var versionSuffix = Environment.GetEnvironmentVariable("VERSION_SUFFIX");

//////////////////////////////////////////////////////////////////////
Expand Down
2 changes: 1 addition & 1 deletion src/Anywhere.ArcGIS/Anywhere.ArcGIS.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<RepositoryUrl>https://github.com/davetimmins/Anywhere.ArcGIS</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags>ArcGIS ArcGISServer ArcGISOnline Esri REST netstandard anywhere GIS Mapping Map Location GeoLocation OAuth</PackageTags>
<Version>1.3.1</Version>
<Version>1.4.0</Version>
</PropertyGroup>

<ItemGroup>
Expand Down
7 changes: 7 additions & 0 deletions src/Anywhere.ArcGIS/Operation/ReverseGeocode.cs
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,14 @@ public GeocodeOperation(IEndpoint endpoint, Action beforeRequest = null, Action
/// </summary>
[DataMember(Name="forStorage")]
public bool? ForStorage { get; set; }

/// <summary>
/// Specifies if the output geometry of PointAddress matches should be the rooftop point or street entrance location. Valid values are rooftop and street. The default value is street.
/// </summary>
[DataMember(Name = "locationType")]
public string LocationType { get; set; }
}


/// <summary>
/// Reverse geocoding is useful for applications in which a user will click a location in a map and expect the address of that location to be returned.
Expand Down

0 comments on commit 987b2dc

Please sign in to comment.