Class MediatorLayer
Inheritance
System.Object
MediatorLayer
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Assembly: SOHMultimodalModel.dll
public class MediatorLayer : AbstractLayer, ILayer, IModelObject
Constructors
|
Improve this Doc
View Source
Declaration
public MediatorLayer(VectorLanduseLayer landUseLayer, VectorPoiLayer poiLayer, VectorBuildingsLayer buildingsLayer)
Parameters
Properties
|
Improve this Doc
View Source
Declaration
public VectorBuildingsLayer VectorBuildingsLayer { get; }
Property Value
|
Improve this Doc
View Source
Declaration
public VectorLanduseLayer VectorLandUseLayer { get; }
Property Value
|
Improve this Doc
View Source
Declaration
public VectorPoiLayer VectorPoiLayer { get; }
Property Value
Methods
|
Improve this Doc
View Source
Declaration
public Position FindNextNearestLocationForAnyTarget(Position coordinate, IEnumerable<int> typeIds, bool takeClosest = true, double maxRadius = -1)
Parameters
Type |
Name |
Description |
Position |
coordinate |
|
System.Collections.Generic.IEnumerable<System.Int32> |
typeIds |
|
System.Boolean |
takeClosest |
|
System.Double |
maxRadius |
|
Returns
|
Improve this Doc
View Source
Declaration
public Position GetNextPoiOfType(Position position, int type, bool takeClosest = true, double radius = -1)
Parameters
Type |
Name |
Description |
Position |
position |
|
System.Int32 |
type |
|
System.Boolean |
takeClosest |
|
System.Double |
radius |
|
Returns
|
Improve this Doc
View Source
Declaration
public Position GetPoIofTypeInRange(Position coordinate, int typeRangeStart, int typeRangeEnd, bool takeClosest = true, double maxRadius = -1)
Parameters
Type |
Name |
Description |
Position |
coordinate |
|
System.Int32 |
typeRangeStart |
|
System.Int32 |
typeRangeEnd |
|
System.Boolean |
takeClosest |
|
System.Double |
maxRadius |
|
Returns
Implements