Skip to content

Commit f493739

Browse files
committed
Related to merge pull request #181; Add SetLatitudeLongitude method to documentation.
1 parent 0405361 commit f493739

1 file changed

Lines changed: 12 additions & 0 deletions

File tree

docs/AxInterop.MapWinGIS/AxMap.cs

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2319,6 +2319,18 @@ public virtual bool SetGeographicExtents(Extents pVal)
23192319
/// \new491 Added in version 4.9.1
23202320
public float Longitude { get; set; }
23212321

2322+
/// <summary>
2323+
/// Sets the Latitude and Longitude of the center of the screen in one operation
2324+
/// </summary>
2325+
/// <param name="latitude">Requested Latitude in decimal degrees</param>
2326+
/// <param name="longitude">Requested Longitude in decimal degrees</param>
2327+
/// <remarks>Map projection must be set in order for this method to work.</remarks>
2328+
/// \new510 Added in version 5.1.0
2329+
public void SetLatitudeLongitude(double latitude, double longitude)
2330+
{
2331+
throw new NotImplementedException();
2332+
}
2333+
23222334
/// <summary>
23232335
/// Gets or sets the current zoom level for the map. It corresponds to the zoom level of current tile provider.
23242336
/// </summary>

0 commit comments

Comments
 (0)