new Route(options)
Name | Type | Description | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
options | Object |
route control options
|
Fires:
- route:drawstart
- route:drawend
- route:compute
- route:compute
- route:newresults
Example
var route = ol.control.Route({
"collapsed" : true
"draggable" : true,
"export" : false,
"exclusions" : {
"toll" : true,
"bridge" : false,
"tunnel" : true
},
"graphs" : ['Pieton', 'Voiture'],
"markersOpts" : {
"departure" : {
"url" : "...",
"offset" : [0,0]
},
"stages" : {
"url" : "...",
"offset" : [0,0]
},
"arrival" : {
"url" : "...",
"offset" : [0,0]
}
}
"autocompleteOptions" : {},
"routeOptions" : {}
});
// if you want to pluggued the control Export with options :
var route = new ol.control.Route({
export : {
name : "export",
format : "geojson",
title : "Exporter",
menu : false
}
});
Extends
- ol.control.Control
Members
-
collapsed
-
{Boolean} specify if Route control is collapsed (true) or not (false)
-
draggable
-
{Boolean} specify if Route control is draggable (true) or not (false)
Methods
-
clean()
Controls/Route/Route.js, line 472 -
Clean UI : reinit control
-
getCollapsed(){Boolean}
Controls/Route/Route.js, line 212 -
Returns true if widget is collapsed (minimized), false otherwise
Returns:
- true if widget is collapsed
-
getContainer(){DOMElement}
Controls/Route/Route.js, line 364 -
Get container
-
getData(){Object}
Controls/Route/Route.js, line 295 -
Get route informations
Returns:
- route informations
-
getGeoJSON(){String}
Controls/Route/Route.js, line 273 -
Get vector layer
Returns:
- GeoJSON format layer
-
getLayer(){Object}
Controls/Route/Route.js, line 242 -
Get vector layer where geoJson route is drawn
Returns:
- ol.layer.Vector route layer
-
getStyle(){ol.style}
Controls/Route/Route.js, line 373 -
Get default style
-
init()
Controls/Route/Route.js, line 381 -
This method is public.
It allows to init the control. -
setCollapsed(collapsed)
Controls/Route/Route.js, line 221 -
Collapse or display widget main container
Name Type Description collapsed Boolean True to collapse widget, False to display it
-
setData(data)
Controls/Route/Route.js, line 323 -
Set route data
Name Type Description data Object control informations
Name Type Description transport String transport type
computation String computation type
exclusions Array list of exclusions
points Array list of points : [[lon, lat]]
results Object service response
-
setGeoJSON(geojson)
Controls/Route/Route.js, line 282 -
Set vector layer
Name Type Description geojson String GeoJSON format layer
-
setLayer(layer)
Controls/Route/Route.js, line 251 -
Set vector layer where route geometry is drawn
Name Type Description layer Object ol.layer.Vector route layer
-
setMap(map)
Controls/Route/Route.js, line 154 -
Overwrite OpenLayers setMap method
Name Type Description map ol.Map Map.