Skip to content

Commit

Permalink
Merge branch 'release/v5.1.1.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
pmeems committed Nov 25, 2019
2 parents 304a974 + 69f4c2e commit 4e90972
Show file tree
Hide file tree
Showing 50 changed files with 5,717 additions and 6,093 deletions.
12 changes: 12 additions & 0 deletions docs/AxInterop.MapWinGIS/AxMap.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2319,6 +2319,18 @@ public virtual bool SetGeographicExtents(Extents pVal)
/// \new491 Added in version 4.9.1
public float Longitude { get; set; }

/// <summary>
/// Sets the Latitude and Longitude of the center of the screen in one operation
/// </summary>
/// <param name="latitude">Requested Latitude in decimal degrees</param>
/// <param name="longitude">Requested Longitude in decimal degrees</param>
/// <remarks>Map projection must be set in order for this method to work.</remarks>
/// \new510 Added in version 5.1.0
public void SetLatitudeLongitude(double latitude, double longitude)
{
throw new NotImplementedException();
}

/// <summary>
/// Gets or sets the current zoom level for the map. It corresponds to the zoom level of current tile provider.
/// </summary>
Expand Down
2 changes: 1 addition & 1 deletion docs/Examples/src/CalculateArea.cs
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ public void CalculateArea(AxMap axMap1, string dataPath)
}

//adding the new field in the end of the table
fldIndex = sf.EditAddField("CalcArea", FieldType.DOUBLE_FIELD, 12, 12);
fldIndex = sf.EditAddField("CalcArea", FieldType.DOUBLE_FIELD, 9, 12);
if (fldIndex == -1)
{
MessageBox.Show("Failed to insert field: " + sf.ErrorMsg[sf.LastErrorCode]);
Expand Down
9 changes: 5 additions & 4 deletions docs/Interop.MapWinGIS/Com Classes/Identifier.cs
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,11 @@ public class Identifier
/// </summary>
public uint OutlineColor { get; set; }

/// <summary>
/// Gets or sets the handle of active layer, which is used when Identifer.IdentifierMode set to imSingleLayer.
/// </summary>
public int ActiveLayer { get; set; }
///// <summary>
///// Gets or sets the handle of active layer, which is used when Identifer.IdentifierMode set to imSingleLayer.
///// NOTE: this method has been hidden, and functionality replaced through use of the ChooseLayer event.
///// </summary>
//public int ActiveLayer { get; set; }
}
#if nsp
}
Expand Down
7 changes: 6 additions & 1 deletion docs/Interop.MapWinGIS/Enumerations/Enumerations.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2368,9 +2368,14 @@ public enum tkIdentifierMode
/// </summary>
imAllLayers = 0,
/// <summary>
/// Only shapefile defined by Identifier.ActiveLayer will be identified.
/// Only shapefile specified in the context of AxMap.ChooseLayer event will be analyzed.
/// </summary>
imSingleLayer = 1,
/// <summary>
/// All shapefile layers with Shapefile.Identifiable property set to true will be analyzed,
/// but search will stop following the first (topmost) layer for which shapes are found.
/// </summary>
imAllLayersStopOnFirst = 2,
}

/// <summary>
Expand Down
Loading

0 comments on commit 4e90972

Please sign in to comment.