Skip to content

Commit d5c7279

Browse files
committed
Merge branch 'release/v4.9.6.0'
2 parents 15069f9 + 2e2eae4 commit d5c7279

File tree

345 files changed

+93074
-25542
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

345 files changed

+93074
-25542
lines changed

.gitignore

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -168,3 +168,15 @@ docs/output
168168
demo/.nuget/
169169
*.zip
170170
unittests/MapWinGISTests/AkkerwebTests.cs
171+
*.exe
172+
*.mwd
173+
*.mwx
174+
unittests/packages/
175+
unittests/.vs/unittests/v15/Server/sqlite3/storage.ide
176+
unittests/.vs/unittests/v15/Server/sqlite3/db.lock
177+
docs/.vs/MapWinGis Documentation/v15/Server/sqlite3/storage.ide-wal
178+
docs/.vs/MapWinGis Documentation/v15/Server/sqlite3/storage.ide-shm
179+
docs/.vs/MapWinGis Documentation/v15/Server/sqlite3/storage.ide
180+
docs/.vs/MapWinGis Documentation/v15/Server/sqlite3/db.lock
181+
src/MapWinGIS.vcxproj.filters
182+
unittests/.vs/

demo/MWLite.Core/GeoLocation/GeoLocationHelper.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public static Extents FindLocation(string query)
2727
private static string ResquestLocation(string query)
2828
{
2929
//var url = "https://maps.googleapis.com/maps/api/geocode/json?address=" + query;
30-
var url = string.Format("http://nominatim.openstreetmap.org/search/{0}?format=json&limit=1", query);
30+
var url = string.Format("https://nominatim.openstreetmap.org/search/{0}?format=json&limit=1", query);
3131
var request = (HttpWebRequest)WebRequest.Create(url);
3232

3333
request.Referer = "mapwingis.codeplex.com";

docs/AxInterop.MapWinGIS.XML

Lines changed: 731 additions & 408 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/AxInterop.MapWinGIS/AxMap.cs

Lines changed: 13 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
using System;
22
using MapWinGIS;
3+
#pragma warning disable 67 // Never used warning
34

45
#if nsp
56
namespace AxMapWinGIS
@@ -9,7 +10,8 @@ namespace AxMapWinGIS
910
/// Map component for visualization of vector, raster or grid data.
1011
/// </summary>
1112
/// Here is a class diagram for the AxMap class:
12-
/// \dot digraph map_diagram {
13+
/// \dot
14+
/// digraph map_diagram {
1315
/// nodesep = 0.3;
1416
/// ranksep = 0.3;
1517
/// splines = ortho;
@@ -316,21 +318,6 @@ public void LoadTilesForSnapshot(Extents extents, int width, string key, tkTileP
316318
throw new NotImplementedException();
317319
}
318320

319-
/// <summary>
320-
/// Checks whether tiles for specified extents and provider are already present in cache.
321-
/// </summary>
322-
/// <param name="extents">Extents to check for (map coordinates).</param>
323-
/// <param name="width">Width of the canvas on which the extents will be displayed.</param>
324-
/// <param name="provider">Provider to load tiles from.</param>
325-
/// <returns>1 if tiles are in cache, 0 if not, -1 if an there was an error.</returns>
326-
/// <remarks>The main purpose: loading of tiles for printing.</remarks>
327-
/// \new491 Added in version 4.9.1
328-
// Removed in v4.9.4 again
329-
//public int TilesAreInCache(Extents extents, int width, tkTileProvider provider)
330-
//{
331-
// throw new NotImplementedException();
332-
//}
333-
334321
/// <summary>
335322
/// Performs specific type of map redraw.
336323
/// </summary>
@@ -713,6 +700,15 @@ public void ZoomToShape(int LayerHandle, int Shape)
713700
/// \new492 Added in version 4.9.2
714701
public int ZoomBarMaxZoom { get; set; }
715702

703+
/// <summary>
704+
/// Gets or sets a value indicating whether to move the mouse click point to the center of the map
705+
/// when using the Zoom In or Zoom Out tools.
706+
/// </summary>
707+
/// <remarks>The default value is False, indicating that the map is not recentered,
708+
/// but instead keeps the click point at the mouse position and zooms around that point.</remarks>
709+
/// \new495 Added in version 4.9.5
710+
public bool RecenterMapOnZoom { get; set; }
711+
716712
/// <summary>
717713
/// Reverts the last operation performed by user in interactive shape editor.
718714
/// </summary>
@@ -2074,7 +2070,7 @@ public uint get_ShapeLayerStippleColor(int LayerHandle)
20742070
/// <remarks>This property corresponds to the ShapeDrawingOptions.FillBgTransparent property.</remarks>
20752071
/// <remarks>This property corresponds to the ShapeDrawingOptions.FillHatchStyle property.</remarks>
20762072
/// <param name="LayerHandle">The handle of the shapefile layer.</param>
2077-
/// <param name="newValue">The color of stipple.</returns>
2073+
/// <param name="newValue">The color of stipple.</param>
20782074
/// \see Shapefile.DefaultDrawingOptions
20792075
public void set_ShapeLayerStippleColor(int LayerHandle, uint newValue)
20802076
{

docs/AxInterop.MapWinGIS/Enums.cs

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
using System;
2-
using System.Collections.Generic;
3-
using System.Linq;
4-
using System.Text;
5-
6-
7-
1+
/// <summary>
2+
/// Justification of the labels
3+
/// </summary>
84
public enum tkHJustification { }
5+
6+
/// <summary>
7+
/// Shape drawing method
8+
/// </summary>
99
public enum tkShapeDrawingMethod { }
1010

1111

docs/AxInterop.MapWinGIS/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
[assembly: AssemblyConfiguration("")]
1111
[assembly: AssemblyCompany("")]
1212
[assembly: AssemblyProduct("AxInterop.MapWinGIS")]
13-
[assembly: AssemblyCopyright("Copyright © 2011")]
13+
[assembly: AssemblyCopyright("Copyright © 2011-2018")]
1414
[assembly: AssemblyTrademark("")]
1515
[assembly: AssemblyCulture("")]
1616

@@ -32,5 +32,5 @@
3232
// You can specify all the values or you can default the Build and Revision Numbers
3333
// by using the '*' as shown below:
3434
// [assembly: AssemblyVersion("1.0.*")]
35-
[assembly: AssemblyVersion("1.0.0.0")]
35+
[assembly: AssemblyVersion("1.0.0.*")]
3636
[assembly: AssemblyFileVersion("1.0.0.0")]

0 commit comments

Comments
 (0)