User Tools

Site Tools


thinkgeo.mapsuite.routing.bidirectionalroutingalgorithm

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
thinkgeo.mapsuite.routing.bidirectionalroutingalgorithm [2015/09/18 03:06]
admin
— (current)
Line 1: Line 1:
-====== ThinkGeo.MapSuite.Routing.BidirectionalRoutingAlgorithm ====== 
-This class represents a routing algorithm that is based on the Bidirectional algorithm. 
-===== Inheritance Hierarchy ===== 
-  *System.Object 
-    *ThinkGeo.MapSuite.Routing.RoutingAlgorithm 
-      ***ThinkGeo.MapSuite.Routing.BidirectionalRoutingAlgorithm** 
-===== Members Summary ===== 
-==== Public Constructors ==== 
-** {{wiki:​PublicMethod.gif|}} BidirectionalRoutingAlgorithm() ** 
- 
-This is a constructor for this class. 
-== Remarks == 
-N/A 
-== Parameters == 
-<div newline></​div>​ 
-==== Protected Constructors ==== 
-==== Public Methods ==== 
-** {{wiki:​PublicMethod.gif|}} GetRoute(RoutingSource,​String,​String) ** 
- 
-N/A 
-== Remarks == 
-N/A 
- 
-== Return Value == 
-  * Type:​Collection<​[[ThinkGeo.MapSuite.Routing.RouteSegment|RouteSegment]]>​ 
-  * Description:​N/​A 
- 
-== Parameters == 
-  * //​routingSource//​ 
-    * Type:​[[ThinkGeo.MapSuite.Routing.RoutingSource|RoutingSource]] 
-    * Description:​N/​A 
- 
-  * //​startFeatureId//​ 
-    * Type:String 
-    * Description:​N/​A 
- 
-  * //​endFeatureId//​ 
-    * Type:String 
-    * Description:​N/​A 
- 
-<div newline></​div>​ 
-** {{wiki:​PublicMethod.gif|}} ToString() ** 
- 
-N/A 
-== Remarks == 
-N/A 
- 
-== Return Value == 
-  * Type:String 
-  * Description:​N/​A 
- 
-== Parameters == 
-<div newline></​div>​ 
-** {{wiki:​PublicMethod.gif|}} Equals(Object) ** 
- 
-N/A 
-== Remarks == 
-N/A 
- 
-== Return Value == 
-  * Type:​Boolean 
-  * Description:​N/​A 
- 
-== Parameters == 
-  * //obj// 
-    * Type:Object 
-    * Description:​N/​A 
- 
-<div newline></​div>​ 
-** {{wiki:​PublicMethod.gif|}} GetHashCode() ** 
- 
-N/A 
-== Remarks == 
-N/A 
- 
-== Return Value == 
-  * Type:Int32 
-  * Description:​N/​A 
- 
-== Parameters == 
-<div newline></​div>​ 
-** {{wiki:​PublicMethod.gif|}} GetType() ** 
- 
-N/A 
-== Remarks == 
-N/A 
- 
-== Return Value == 
-  * Type:Type 
-  * Description:​N/​A 
- 
-== Parameters == 
-<div newline></​div>​ 
-==== Protected Methods ==== 
-** {{wiki:​ProtectedMethod.gif|}} GetRouteCore(RoutingSource,​String,​String) ** 
- 
-This method returns a RoutingResult based on the extent you provided. 
-== Remarks == 
-This abstract method is called from the concrete public method GetRoute.This method gets the routing result based on the extent you provided. In this method, you are repsonsible for implementing a routing algorithm to get the path between two routeSegments. 
- 
-== Return Value == 
-  * Type:​Collection<​[[ThinkGeo.MapSuite.Routing.RouteSegment|RouteSegment]]>​ 
-  * Description:​Routing result that contains path information. 
- 
-== Parameters == 
-  * //​routingSource//​ 
-    * Type:​[[ThinkGeo.MapSuite.Routing.RoutingSource|RoutingSource]] 
-    * Description:​The routing source that contains the routeSegments to route on. 
- 
-  * //​startFeatureId//​ 
-    * Type:String 
-    * Description:​The feature ID which represents the starting routeSegment. 
- 
-  * //​endFeatureId//​ 
-    * Type:String 
-    * Description:​The feature ID which represents the ending routeSegment. 
- 
-<div newline></​div>​ 
-** {{wiki:​ProtectedMethod.gif|}} OnFindingRoute(FindingRouteRoutingAlgorithmEventArgs) ** 
- 
-N/A 
-== Remarks == 
-N/A 
- 
-== Return Value == 
-  * Type:Void 
-  * Description:​N/​A 
- 
-== Parameters == 
-  * //e// 
-    * Type:​[[ThinkGeo.MapSuite.Routing.FindingRouteRoutingAlgorithmEventArgs|FindingRouteRoutingAlgorithmEventArgs]] 
-    * Description:​N/​A 
- 
-<div newline></​div>​ 
-** {{wiki:​ProtectedMethod.gif|}} Finalize() ** 
- 
-N/A 
-== Remarks == 
-N/A 
- 
-== Return Value == 
-  * Type:Void 
-  * Description:​N/​A 
- 
-== Parameters == 
-<div newline></​div>​ 
-** {{wiki:​ProtectedMethod.gif|}} MemberwiseClone() ** 
- 
-N/A 
-== Remarks == 
-N/A 
- 
-== Return Value == 
-  * Type:Object 
-  * Description:​N/​A 
- 
-== Parameters == 
-<div newline></​div>​ 
-==== Public Properties ==== 
-** {{wiki:​PublicProperty.gif|}} AStartRouteModifier ** 
- 
-N/A 
-== Remarks == 
-N/A 
-== Return Value == 
-  * Type:Single 
- 
-** {{wiki:​PublicProperty.gif|}} GeographyUnit ** 
- 
-N/A 
-== Remarks == 
-N/A 
-== Return Value == 
-  * Type:​[[ThinkGeo.MapSuite.Core.GeographyUnit|GeographyUnit]] 
- 
-** {{wiki:​PublicProperty.gif|}} DistanceUnit ** 
- 
-N/A 
-== Remarks == 
-N/A 
-== Return Value == 
-  * Type:​[[ThinkGeo.MapSuite.Core.DistanceUnit|DistanceUnit]] 
- 
-==== Protected Properties ==== 
-==== Public Events ==== 
-** {{wiki:​PublicEvent.gif|}} FindingRoute ** 
-N/A 
-== Remarks == 
-N/A 
- 
-Event Arguments:​[[ThinkGeo.MapSuite.Routing.FindingRouteRoutingAlgorithmEventArgs|FindingRouteRoutingAlgorithmEventArgs]] 
- 
  
thinkgeo.mapsuite.routing.bidirectionalroutingalgorithm.1442545574.txt.gz ยท Last modified: 2015/09/18 03:06 by admin