Skip to content

Support for Layers, Ellipses and Events #2

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 34 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
900c398
Added support for different layers in MapControl
sebastianknopf Aug 6, 2022
297ce62
added basic support for ellipses
sebastianknopf Aug 6, 2022
f461846
improved ellipse drawing with different measurement units
sebastianknopf Aug 7, 2022
95e473c
demo app bugfixes
sebastianknopf Aug 7, 2022
0a7e92c
improved adding elements and layers with auto-invalidate
sebastianknopf Aug 7, 2022
1faef01
code cleanup and restructuring
sebastianknopf Aug 7, 2022
af6e72d
updated samples and rearranged code with regions
sebastianknopf Aug 7, 2022
8ad0af3
added basic functionality to zoom map on a certain layer
sebastianknopf Aug 7, 2022
0eed2e5
added docs for new elements
sebastianknopf Aug 7, 2022
c419450
added docs for layers
sebastianknopf Aug 7, 2022
49e2352
added support for element interactions (enter, click, leave)
sebastianknopf Aug 12, 2022
2776815
added documentation and extended demo ap
sebastianknopf Aug 12, 2022
f7b1b8b
extended ElementEventArgs with useful parameters
sebastianknopf Aug 13, 2022
dcdb96b
bugfixes and improvements in event processing
sebastianknopf Aug 13, 2022
708c8d6
fixed bug related to map center and resize event
sebastianknopf Aug 17, 2022
48d9e8a
updated version info
sebastianknopf Aug 17, 2022
2c3435f
bugfix in triggering element events
sebastianknopf Aug 21, 2022
c52171a
Merge branch 'master' of https://github.com/sebastianknopf/WinFormsMa…
sebastianknopf Aug 21, 2022
caf795b
performance and usage improvements, adapted docs
sebastianknopf Aug 27, 2022
c3512fb
Merge branch 'master' of https://github.com/sebastianknopf/WinFormsMa…
sebastianknopf Aug 27, 2022
c1feceb
code cleanup, small bugfixes
sebastianknopf Aug 27, 2022
1297348
adapted marker labels for center alignment
sebastianknopf Oct 9, 2022
feacdcf
updated version to 1.2.0.1
sebastianknopf Oct 9, 2022
b98554c
checked out branch without offline maps for reducing final DLL size
sebastianknopf Oct 12, 2022
83c7a9a
added support for custom tile server
sebastianknopf Nov 4, 2022
8519308
added improvements advanced network settings in CustomTileServer
sebastianknopf Nov 7, 2022
fad3ace
updates for version 1.2.2.0
sebastianknopf Nov 7, 2022
9a12f2c
added ZipTileServer for offline maps and updated docs
sebastianknopf Jan 12, 2023
c7d3a6f
added OfflineMaps.md for documentation
sebastianknopf Jan 12, 2023
15d4a26
added OfflineMaps.md for documentation
sebastianknopf Jan 12, 2023
429fb9b
Merge branch 'master' of https://github.com/sebastianknopf/WinFormsMa…
sebastianknopf Jan 12, 2023
162358b
updated to version 1.2.3.0
sebastianknopf Jan 12, 2023
e3f43ac
added support for track direction indicators
sebastianknopf Nov 4, 2023
d229765
bugfix in direction indicator angle calculation
sebastianknopf Nov 4, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -328,3 +328,7 @@ ASALocalRun/

# MFractors (Xamarin productivity tool) working folder
.mfractor/

# Secret
/DemoApp/Properties/Secrets.resx
/DemoApp/Properties/Secrets.Designer.cs
6 changes: 3 additions & 3 deletions DemoApp/App.config
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8" ?>
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.1" />
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.8"/>
</startup>
</configuration>
</configuration>
12 changes: 11 additions & 1 deletion DemoApp/DemoApp.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,11 @@
<OutputType>WinExe</OutputType>
<RootNamespace>DemoApp</RootNamespace>
<AssemblyName>DemoApp</AssemblyName>
<TargetFrameworkVersion>v4.5.1</TargetFrameworkVersion>
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<Deterministic>true</Deterministic>
<TargetFrameworkProfile />
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
Expand Down Expand Up @@ -68,10 +69,19 @@
<DesignTime>True</DesignTime>
</Compile>
<EmbeddedResource Include="MapObjects\MagellanExpedition.txt" />
<EmbeddedResource Include="Properties\Secrets.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Secrets.Designer.cs</LastGenOutput>
</EmbeddedResource>
<None Include="Properties\Settings.settings">
<Generator>SettingsSingleFileGenerator</Generator>
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
</None>
<Compile Include="Properties\Secrets.Designer.cs">
<AutoGen>True</AutoGen>
<DesignTime>True</DesignTime>
<DependentUpon>Secrets.resx</DependentUpon>
</Compile>
<Compile Include="Properties\Settings.Designer.cs">
<AutoGen>True</AutoGen>
<DependentUpon>Settings.settings</DependentUpon>
Expand Down
163 changes: 157 additions & 6 deletions DemoApp/FormMain.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading