Enumeration RouteStrategy

Strategy for path selection between waypoints in a route.

Used in:
Waypoint
Enumeration Literals
Name Description
fastest Fastest route.
shortest Shortest route.
leastIntersections Route with least number of intersections.
random Random route.

Migration Information from XSD 0.9.1
Derived From:
Enum_Route_strategy
Property Name XSD Type XSD 0.9.1 Name Migration
fastest Attribute fastest
shortest Attribute shortest
leastIntersections Attribute leastIntersections
random Attribute random

XSD 1.0 Representation


<xsd:simpleType name="RouteStrategy">
<xsd:union>
<xsd:simpleType>
<xsd:restriction base="xsd:string">
<xsd:enumeration value="fastest"/>
<xsd:enumeration value="shortest"/>
<xsd:enumeration value="leastIntersections"/>
<xsd:enumeration value="random"/>
</xsd:restriction>
</xsd:simpleType>
<xsd:simpleType>
<xsd:restriction base="parameter"/>
</xsd:simpleType>
</xsd:union>
</xsd:simpleType>

To XSD To XSLT