new Route(options)
Name | Type | Description | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
options | Object |
route control options
|
Fires:
- route:drawstart
- route:drawend
- route:compute
- export:compute
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 471 -
Clean UI : reinit control
-
getCollapsed(){Boolean}
Controls/Route/Route.js, line 209 -
Returns true if widget is collapsed (minimized), false otherwise
Returns:
- true if widget is collapsed
-
getContainer(){DOMElement}
Controls/Route/Route.js, line 363 -
Get container
-
getData(){Object}
Controls/Route/Route.js, line 292 -
Get route informations
Returns:
- route informations
-
getGeoJSON(){String}
Controls/Route/Route.js, line 270 -
Get vector layer
Returns:
- GeoJSON format layer
-
getLayer(){Object}
Controls/Route/Route.js, line 239 -
Get vector layer where geoJson route is drawn
Returns:
- ol.layer.Vector route layer
-
getStyle(){ol.style}
Controls/Route/Route.js, line 372 -
Get default style
-
init()
Controls/Route/Route.js, line 380 -
This method is public.
It allows to init the control. -
setCollapsed(collapsed)
Controls/Route/Route.js, line 218 -
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 320 -
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 279 -
Set vector layer
Name Type Description geojson String GeoJSON format layer
-
setLayer(layer)
Controls/Route/Route.js, line 248 -
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 151 -
Overwrite OpenLayers setMap method
Name Type Description map ol.Map Map.