This repository has been archived by the owner on Aug 28, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #301 from Esri/dev
August 2018 Release
- Loading branch information
Showing
19 changed files
with
2,826 additions
and
669 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
27 changes: 27 additions & 0 deletions
27
source/addins/ArcMapAddinVisibility/Models/AddInPointObject.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
|
||
namespace ArcMapAddinVisibility.Models | ||
{ | ||
public class AddInPointObject | ||
{ | ||
private int _id; | ||
|
||
public int ID | ||
{ | ||
get { return _id; } | ||
set { _id = value; } | ||
} | ||
private AddInPoint _addInPoint; | ||
|
||
public AddInPoint AddInPoint | ||
{ | ||
get { return _addInPoint; } | ||
set { _addInPoint = value; } | ||
} | ||
|
||
} | ||
} |
384 changes: 267 additions & 117 deletions
384
source/addins/ArcMapAddinVisibility/ViewModels/LLOSViewModel.cs
Large diffs are not rendered by default.
Oops, something went wrong.
559 changes: 536 additions & 23 deletions
559
source/addins/ArcMapAddinVisibility/ViewModels/LOSBaseViewModel.cs
Large diffs are not rendered by default.
Oops, something went wrong.
490 changes: 280 additions & 210 deletions
490
source/addins/ArcMapAddinVisibility/ViewModels/RLOSViewModel.cs
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.