This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
thinkgeo.mapsuite.routing.astarroutingalgorithm [2015/09/11 02:50] admin [Finalize()] |
thinkgeo.mapsuite.routing.astarroutingalgorithm [2017/03/16 21:59] (current) |
||
---|---|---|---|
Line 1: | Line 1: | ||
====== ThinkGeo.MapSuite.Routing.AStarRoutingAlgorithm ====== | ====== ThinkGeo.MapSuite.Routing.AStarRoutingAlgorithm ====== | ||
+ | {{section>upgrade_map_suite_to_10.0}} | ||
This class represents a routing algorithm that is based on the A* algorithm. | This class represents a routing algorithm that is based on the A* algorithm. | ||
- | === Remarks === | ||
- | The A* algorithm is one of the best graph search algorithms that finds the least-cost path from a given start point to a given end point. It uses a distance-plus-cost heuristic function to determine the order in which the search visits routeSegments in the data. | ||
===== Inheritance Hierarchy ===== | ===== Inheritance Hierarchy ===== | ||
*System.Object | *System.Object | ||
- | * [[ThinkGeo.MapSuite.Routing.RoutingAlgorithm]] | + | *ThinkGeo.MapSuite.Routing.RoutingAlgorithm |
- | * [[ThinkGeo.MapSuite.Routing.AStarRoutingAlgorithm]] | + | ***ThinkGeo.MapSuite.Routing.AStarRoutingAlgorithm** |
===== Members Summary ===== | ===== Members Summary ===== | ||
==== Public Constructors ==== | ==== Public Constructors ==== | ||
- | ^ Name ^ Parameters ^ DeclaringType ^ Summary ^ | + | ** {{wiki:PublicMethod.gif|}} AStarRoutingAlgorithm() ** |
- | | {{wiki:PublicMethod.gif|Public Method}}[[#AStarRoutingAlgorithm()|AStarRoutingAlgorithm]] | | | This is a constructor for this class. | | + | |
+ | * //This is a constructor for this class.// | ||
+ | == Remarks == | ||
+ | * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.Routing.AStarRoutingAlgorithm#AStarRoutingAlgorithm.28.29// | ||
+ | == Parameters == | ||
+ | <div newline></div> | ||
==== Protected Constructors ==== | ==== Protected Constructors ==== | ||
- | ^ Name ^ Parameters ^ DeclaringType ^ Summary ^ | ||
- | |||
==== Public Methods ==== | ==== Public Methods ==== | ||
- | ^ Name ^ Parameters ^ DeclaringType ^ Summary ^ | + | ** {{wiki:PublicMethod.gif|}} GetRoute(RoutingSource,String,String) ** |
- | | {{wiki:PublicMethod.gif|Public Method}}[[#Equals(Object)|Equals]] | Object | Object | | | + | |
- | | {{wiki:PublicMethod.gif|Public Method}}[[#GetHashCode()|GetHashCode]] | | Object | | | + | |
- | | {{wiki:PublicMethod.gif|Public Method}}[[#GetRoute(RoutingSource, String, String)|GetRoute]] | [[ThinkGeo.MapSuite.Routing.RoutingSource|RoutingSource]], String, String | [[ThinkGeo.MapSuite.Routing.RoutingAlgorithm|RoutingAlgorithm]] | This method returns a RoutingResult based on the extent you provided. | | + | |
- | | {{wiki:PublicMethod.gif|Public Method}}[[#GetType()|GetType]] | | Object | | | + | |
- | | {{wiki:PublicMethod.gif|Public Method}}[[#ToString()|ToString]] | | Object | | | + | |
- | ==== Protected Methods ==== | + | * //This method returns a RoutingResult based on the extent you provided.// |
- | ^ Name ^ Parameters ^ DeclaringType ^ Summary ^ | + | == Remarks == |
- | | {{wiki:ProtectedMethod.gif|Protected Method}}[[#Finalize()|Finalize]] | | Object | | | + | * //This method is the concrete wrapper for the abstract method GetRouteCore. 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.// |
- | | {{wiki:ProtectedMethod.gif|Protected Method}}[[#GetRouteCore(RoutingSource, String, String)|GetRouteCore]] | [[ThinkGeo.MapSuite.Routing.RoutingSource|RoutingSource]], String, String | [[ThinkGeo.MapSuite.Routing.RoutingAlgorithm|RoutingAlgorithm]](overriden) | This method returns a RoutingResult based on the extent you provided. | | + | |
- | | {{wiki:ProtectedMethod.gif|Protected Method}}[[#MemberwiseClone()|MemberwiseClone]] | | Object | | | + | |
- | | {{wiki:ProtectedMethod.gif|Protected Method}}[[#OnFindingRoute(FindingRouteRoutingAlgorithmEventArgs)|OnFindingRoute]] | [[ThinkGeo.MapSuite.Routing.FindingRouteRoutingAlgorithmEventArgs|FindingRouteRoutingAlgorithmEventArgs]] | [[ThinkGeo.MapSuite.Routing.RoutingAlgorithm|RoutingAlgorithm]] | This method allows you to raise the FindingRoute event from a derived class. | | + | |
- | ==== Public Properties ==== | + | == Return Value == |
- | ^ Name ^ Return ^ DeclaringType ^ Summary ^ | + | * Type:Collection<[[ThinkGeo.MapSuite.Routing.RouteSegment|RouteSegment]]> |
- | | {{wiki:PublicProperty.gif|Public Property}}[[#AStartRouteModifier|AStartRouteModifier]] | Single | | | | + | * Description:Routing result that contains path information. |
- | | {{wiki:PublicProperty.gif|Public Property}}[[#DistanceUnit|DistanceUnit]] | [[ThinkGeo.MapSuite.Core.DistanceUnit|DistanceUnit]] | [[ThinkGeo.MapSuite.Routing.RoutingAlgorithm|RoutingAlgorithm]] | | | + | |
- | | {{wiki:PublicProperty.gif|Public Property}}[[#GeographyUnit|GeographyUnit]] | [[ThinkGeo.MapSuite.Core.GeographyUnit|GeographyUnit]] | [[ThinkGeo.MapSuite.Routing.RoutingAlgorithm|RoutingAlgorithm]] | | | + | |
- | ==== Protected Properties ==== | + | == Parameters == |
- | ^ Name ^ Return ^ DeclaringType ^ Summary ^ | + | * //routingSource// |
+ | * Type:[[ThinkGeo.MapSuite.Routing.RoutingSource|RoutingSource]] | ||
+ | * Description:The routing source that contains the routeSegments to route on. | ||
- | ==== Public Events ==== | + | * //startFeatureId// |
- | ^ Name ^ Event Arguments ^ DeclaringType ^ Summary ^ | + | * Type:String |
- | | {{wiki:PublicEvent.gif|Public Event}}[[#FindingRoute|FindingRoute]] | [[ThinkGeo.MapSuite.Routing.FindingRouteRoutingAlgorithmEventArgs|FindingRouteRoutingAlgorithmEventArgs]] | [[ThinkGeo.MapSuite.Routing.RoutingAlgorithm|RoutingAlgorithm]] | This event is called after finding the adjacent routeSegments. | | + | * Description:The feature ID which represents the starting routeSegment. |
- | ===== Public Constructors ===== | + | * //endFeatureId// |
- | ==== AStarRoutingAlgorithm() ==== | + | * Type:String |
- | This is a constructor for this class. | + | * Description:The feature ID which represents the ending routeSegment. |
- | === Remarks === | + | |
- | For the most updated Info for this topic, please check it here:// "http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.Routing.AStarRoutingAlgorithm#AStarRoutingAlgorithm.28.29"// | + | |
- | === Parameters === | + | |
- | ^ Name ^ Type ^ Description ^ | + | |
- | [[#Public Constructors|Go Back]] | + | <div newline></div> |
- | ===== Protected Constructors ===== | + | ** {{wiki:PublicMethod.gif|}} ToString() ** |
- | ===== Public Methods ===== | + | |
- | ==== Equals(Object) ==== | + | |
- | === Remarks === | + | |
- | For the most updated Info for this topic, please check it here:// http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.Routing.AStarRoutingAlgorithm#Equals.28Object.29 // | + | |
- | === Return Value === | + | * //N/A// |
- | ^ Return Type ^ Description ^ | + | == Remarks == |
- | | Boolean | | | + | * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.Routing.AStarRoutingAlgorithm#ToString.28.29// |
- | === Parameters === | + | == Return Value == |
- | ^ Name ^ Type ^ Description ^ | + | * Type:String |
- | | obj | Object | | | + | * Description:N/A |
+ | == Parameters == | ||
+ | <div newline></div> | ||
+ | ** {{wiki:PublicMethod.gif|}} Equals(Object) ** | ||
- | [[#Public Methods|Go Back]] | + | * //N/A// |
- | ==== GetHashCode() ==== | + | == Remarks == |
- | === Remarks === | + | * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.Routing.AStarRoutingAlgorithm#Equals.28Object.29// |
- | For the most updated Info for this topic, please check it here:// http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.Routing.AStarRoutingAlgorithm#GetHashCode.28.29 // | + | |
- | === Return Value === | + | |
- | ^ Return Type ^ Description ^ | + | |
- | | Int32 | | | + | |
- | === Parameters === | + | == Return Value == |
- | ^ Name ^ Type ^ Description ^ | + | * Type:Boolean |
+ | * Description:N/A | ||
+ | == Parameters == | ||
+ | * //obj// | ||
+ | * Type:Object | ||
+ | * Description:N/A | ||
- | [[#Public Methods|Go Back]] | + | <div newline></div> |
- | ==== GetRoute(RoutingSource, String, String) ==== | + | ** {{wiki:PublicMethod.gif|}} GetHashCode() ** |
- | This method returns a RoutingResult based on the extent you provided. | + | |
- | === Remarks === | + | |
- | This method is the concrete wrapper for the abstract method GetRouteCore.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 === | + | |
- | ^ Return Type ^ Description ^ | + | |
- | | Collection<[[ThinkGeo.MapSuite.Routing.RouteSegment|RouteSegment]]> | Routing result that contains path information. | | + | |
- | === Parameters === | + | * //N/A// |
- | ^ Name ^ Type ^ Description ^ | + | == Remarks == |
- | | routingSource | [[ThinkGeo.MapSuite.Routing.RoutingSource|RoutingSource]] | The routing source that contains the routeSegments to route on. | | + | * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.Routing.AStarRoutingAlgorithm#GetHashCode.28.29// |
- | | startFeatureId | String | The feature ID which represents the starting routeSegment. | | + | |
- | | endFeatureId | String | The feature ID which represents the ending routeSegment. | | + | |
+ | == Return Value == | ||
+ | * Type:Int32 | ||
+ | * Description:N/A | ||
- | [[#Public Methods|Go Back]] | + | == Parameters == |
- | ==== GetType() ==== | + | <div newline></div> |
- | === Remarks === | + | ** {{wiki:PublicMethod.gif|}} GetType() ** |
- | For the most updated Info for this topic, please check it here:// http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.Routing.AStarRoutingAlgorithm#GetType.28.29 // | + | |
- | === Return Value === | + | |
- | ^ Return Type ^ Description ^ | + | |
- | | Type | | | + | |
- | === Parameters === | + | * //N/A// |
- | ^ Name ^ Type ^ Description ^ | + | == Remarks == |
+ | * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.Routing.AStarRoutingAlgorithm#GetType.28.29// | ||
+ | == Return Value == | ||
+ | * Type:Type | ||
+ | * Description:N/A | ||
- | [[#Public Methods|Go Back]] | + | == Parameters == |
- | ==== ToString() ==== | + | <div newline></div> |
- | === Remarks === | + | ==== Protected Methods ==== |
- | For the most updated Info for this topic, please check it here:// http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.Routing.AStarRoutingAlgorithm#ToString.28.29 // | + | ** {{wiki:ProtectedMethod.gif|}} GetRouteCore(RoutingSource,String,String) ** |
- | === Return Value === | + | |
- | ^ Return Type ^ Description ^ | + | |
- | | String | | | + | |
- | === Parameters === | + | * //This method returns a RoutingResult based on the extent you provided.// |
- | ^ Name ^ Type ^ Description ^ | + | == 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.// | ||
- | [[#Public Methods|Go Back]] | + | == Return Value == |
- | ===== Protected Methods ===== | + | * Type:Collection<[[ThinkGeo.MapSuite.Routing.RouteSegment|RouteSegment]]> |
- | ==== Finalize() ==== | + | * Description:Routing result that contains path information. |
- | === Remarks === | + | |
- | For the most updated Info for this topic, please check it here:// http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.Routing.AStarRoutingAlgorithm#Finalize.28.29 // | + | |
- | === Return Value === | + | |
- | ^ Return Type ^ Description ^ | + | |
- | | Void | | | + | |
- | === Parameters === | + | == Parameters == |
- | ^ Name ^ Type ^ Description ^ | + | * //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. | ||
- | [[#Protected Methods|Go Back]] | + | * //endFeatureId// |
- | ==== GetRouteCore(RoutingSource, String, String) ==== | + | * Type:String |
- | This method returns a RoutingResult based on the extent you provided. | + | * Description:The feature ID which represents the ending routeSegment. |
- | === 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 === | + | |
- | ^ Return Type ^ Description ^ | + | |
- | | Collection<[[ThinkGeo.MapSuite.Routing.RouteSegment|RouteSegment]]><!-- System.Collections.ObjectModel.Collection{ThinkGeo.MapSuite.Routing.RouteSegment} --> | Routing result that contains path information. | | + | |
- | === Parameters === | + | <div newline></div> |
- | ^ Name ^ Type ^ Description ^ | + | ** {{wiki:ProtectedMethod.gif|}} OnFindingRoute(FindingRouteRoutingAlgorithmEventArgs) ** |
- | | routingSource | [[ThinkGeo.MapSuite.Routing.RoutingSource|RoutingSource]]<!-- ThinkGeo.MapSuite.Routing.RoutingSource --> | The routing source that contains the routeSegments to route on. | | + | |
- | | startFeatureId | String<!-- System.String --> | The feature ID which represents the starting routeSegment. | | + | |
- | | endFeatureId | String<!-- System.String --> | The feature ID which represents the ending routeSegment. | | + | |
- | <!-- ThinkGeo.MapSuite.Routing.RoutingAlgorithm(overriden) --> | + | * //This method allows you to raise the FindingRoute event from a derived class.// |
- | [[#Protected Methods|Go Back]] | + | == Remarks == |
- | ==== MemberwiseClone() ==== | + | * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.Routing.AStarRoutingAlgorithm#OnFindingRoute.28FindingRouteRoutingAlgorithmEventArgs.29// |
- | === Remarks === | + | |
- | For the most updated Info for this topic, please check it here:<a href="http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.Routing.AStarRoutingAlgorithm#MemberwiseClone.28.29" target="_blank">http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.Routing.AStarRoutingAlgorithm#MemberwiseClone.28.29</a> | + | |
- | === Return Value === | + | |
- | ^ Return Type ^ Description ^ | + | |
- | | Object<!-- System.Object --> | | | + | |
- | === Parameters === | + | == Return Value == |
- | ^ Name ^ Type ^ Description ^ | + | * Type:Void |
+ | * Description:N/A | ||
- | <!-- System.Object --> | + | == Parameters == |
- | [[#Protected Methods|Go Back]] | + | * //e// |
- | ==== OnFindingRoute(FindingRouteRoutingAlgorithmEventArgs) ==== | + | * Type:[[ThinkGeo.MapSuite.Routing.FindingRouteRoutingAlgorithmEventArgs|FindingRouteRoutingAlgorithmEventArgs]] |
- | This method allows you to raise the FindingRoute event from a derived class. | + | * Description:N/A |
- | === Remarks === | + | |
- | For the most updated Info for this topic, please check it here:<a href="http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.Routing.AStarRoutingAlgorithm#OnFindingRoute.28FindingRouteRoutingAlgorithmEventArgs.29" target="_blank">http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.Routing.AStarRoutingAlgorithm#OnFindingRoute.28FindingRouteRoutingAlgorithmEventArgs.29</a> | + | |
- | === Return Value === | + | |
- | ^ Return Type ^ Description ^ | + | |
- | | Void<!-- System.Void --> | | | + | |
- | === Parameters === | + | <div newline></div> |
- | ^ Name ^ Type ^ Description ^ | + | ** {{wiki:ProtectedMethod.gif|}} Finalize() ** |
- | | e | [[ThinkGeo.MapSuite.Routing.FindingRouteRoutingAlgorithmEventArgs|FindingRouteRoutingAlgorithmEventArgs]]<!-- ThinkGeo.MapSuite.Routing.FindingRouteRoutingAlgorithmEventArgs --> | | | + | |
- | <!-- ThinkGeo.MapSuite.Routing.RoutingAlgorithm --> | + | * //N/A// |
- | [[#Protected Methods|Go Back]] | + | == Remarks == |
- | ===== Public Properties ===== | + | * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.Routing.AStarRoutingAlgorithm#Finalize.28.29// |
- | ==== AStartRouteModifier ==== | + | |
- | === Remarks === | + | |
- | For the most updated Info for this topic, please check it here:<a href="http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.Routing.AStarRoutingAlgorithm#AStartRouteModifier" target="_blank">http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.Routing.AStarRoutingAlgorithm#AStartRouteModifier</a> | + | |
- | === Return Value === | + | |
- | ^ Return Type ^ | + | |
- | | Single<!-- System.Single --> | | + | |
- | <!-- ThinkGeo.MapSuite.Routing.AStarRoutingAlgorithm --> | + | == Return Value == |
- | [[#Public Properties|Go Back]] | + | * Type:Void |
- | ==== DistanceUnit ==== | + | * Description:N/A |
- | === Remarks === | + | |
- | For the most updated Info for this topic, please check it here:<a href="http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.Routing.AStarRoutingAlgorithm#DistanceUnit" target="_blank">http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.Routing.AStarRoutingAlgorithm#DistanceUnit</a> | + | |
- | === Return Value === | + | |
- | ^ Return Type ^ | + | |
- | | [[ThinkGeo.MapSuite.Core.DistanceUnit|DistanceUnit]]<!-- ThinkGeo.MapSuite.Core.DistanceUnit --> | | + | |
- | <!-- ThinkGeo.MapSuite.Routing.RoutingAlgorithm --> | + | == Parameters == |
- | [[#Public Properties|Go Back]] | + | <div newline></div> |
- | ==== GeographyUnit ==== | + | ** {{wiki:ProtectedMethod.gif|}} MemberwiseClone() ** |
- | === Remarks === | + | |
- | For the most updated Info for this topic, please check it here:<a href="http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.Routing.AStarRoutingAlgorithm#GeographyUnit" target="_blank">http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.Routing.AStarRoutingAlgorithm#GeographyUnit</a> | + | |
- | === Return Value === | + | |
- | ^ Return Type ^ | + | |
- | | [[ThinkGeo.MapSuite.Core.GeographyUnit|GeographyUnit]]<!-- ThinkGeo.MapSuite.Core.GeographyUnit --> | | + | |
- | <!-- ThinkGeo.MapSuite.Routing.RoutingAlgorithm --> | + | * //N/A// |
- | [[#Public Properties|Go Back]] | + | == Remarks == |
- | ===== Protected Properties ===== | + | * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.Routing.AStarRoutingAlgorithm#MemberwiseClone.28.29// |
- | ===== Public Events ===== | + | |
- | ==== FindingRoute ==== | + | == Return Value == |
+ | * Type:Object | ||
+ | * Description:N/A | ||
+ | |||
+ | == Parameters == | ||
+ | <div newline></div> | ||
+ | ==== Public Properties ==== | ||
+ | ** {{wiki:PublicProperty.gif|}} AStartRouteModifier ** | ||
+ | |||
+ | N/A | ||
+ | == Remarks == | ||
+ | For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.Routing.AStarRoutingAlgorithm#AStartRouteModifier | ||
+ | == Return Value == | ||
+ | * Type:Single | ||
+ | |||
+ | ** {{wiki:PublicProperty.gif|}} GeographyUnit ** | ||
+ | |||
+ | N/A | ||
+ | == Remarks == | ||
+ | For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.Routing.AStarRoutingAlgorithm#GeographyUnit | ||
+ | == Return Value == | ||
+ | * Type:[[ThinkGeo.MapSuite.Core.GeographyUnit|GeographyUnit]] | ||
+ | |||
+ | ** {{wiki:PublicProperty.gif|}} DistanceUnit ** | ||
+ | |||
+ | N/A | ||
+ | == Remarks == | ||
+ | For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.Routing.AStarRoutingAlgorithm#DistanceUnit | ||
+ | == Return Value == | ||
+ | * Type:[[ThinkGeo.MapSuite.Core.DistanceUnit|DistanceUnit]] | ||
+ | |||
+ | ==== Protected Properties ==== | ||
+ | ==== Public Events ==== | ||
+ | ** {{wiki:PublicEvent.gif|}} FindingRoute ** | ||
This event is called after finding the adjacent routeSegments. | This event is called after finding the adjacent routeSegments. | ||
- | === Remarks === | + | == Remarks == |
This event is called after finding the adjacent routeSegments. It wil be called many times during the route. | This event is called after finding the adjacent routeSegments. It wil be called many times during the route. | ||
- | === Event Arguments === | ||
- | ^ Event Arguments ^ | ||
- | | [[ThinkGeo.MapSuite.Routing.FindingRouteRoutingAlgorithmEventArgs|FindingRouteRoutingAlgorithmEventArgs]]<!-- ThinkGeo.MapSuite.Routing.FindingRouteRoutingAlgorithmEventArgs --> | | ||
- | <!-- ThinkGeo.MapSuite.Routing.RoutingAlgorithm --> | + | Event Arguments:[[ThinkGeo.MapSuite.Routing.FindingRouteRoutingAlgorithmEventArgs|FindingRouteRoutingAlgorithmEventArgs]] |
- | [[#Public Events|Go Back]] | + | |
- | __NOTOC__ | ||
- | [[Category:MapSuiteRouting]] | ||
- | [[Category:ThinkGeo.MapSuite.Routing]] | ||
- | [[Category:UpdateDocumentation]] | ||