new Isocurve(options)
Name | Type | Description | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
options | Object |
Isocurve control options
|
Fires:
- isocurve:drawstart
- isocurve:drawend
- isocurve:compute
- export:compute
Example
var iso = ol.control.Isocurve({
"collapsed" : false,
"draggable" : true,
"export" : false,
"methods" : ["time", "distance"],
"exclusions" : {
"toll" : true,
"bridge" : false,
"tunnel" : true
},
"graphs" : ["Pieton", "Voiture"],
"markerOpts" : {
"url" : "...",
"offset" : [0,0]
}
"isocurveOptions" : {},
"autocompleteOptions" : {}
});
// if you want to pluggued the control Export with options :
var iso = new ol.control.Isocurve({
export : {
name : "export",
format : "geojson",
title : "Exporter",
menu : false
}
});
Extends
- ol.control.Control
Members
-
collapsed
-
{Boolean} specify if isocurve control is collapsed (true) or not (false)
-
draggable
-
{Boolean} specify if isocurve control is draggable (true) or not (false)
Methods
-
clean()
OpenLayers/Controls/Isocurve.js, line 451 -
Clean UI : reinit control
-
compute(position, value, options)
OpenLayers/Controls/Isocurve.js, line 352 -
This method is public.
It allows to control the execution of a traitment.Name Type Description position Array position in the projection map [ x, y ]
value Object distance in km or hours-minutes
options Object options = {...}
-
getCollapsed(){Boolean}
OpenLayers/Controls/Isocurve.js, line 200 -
Returns true if widget is collapsed (minimized), false otherwise
Returns:
- true if widget is collapsed
-
getContainer(){DOMElement}
OpenLayers/Controls/Isocurve.js, line 331 -
Get container
-
getData(){Object}
OpenLayers/Controls/Isocurve.js, line 284 -
Get isocurve data
Returns:
- process results
-
getGeoJSON(){String}
OpenLayers/Controls/Isocurve.js, line 262 -
Get vector layer
Returns:
- GeoJSON format layer
-
getLayer(){Object}
OpenLayers/Controls/Isocurve.js, line 230 -
Get vector layer where Isocurve geometry is drawn
Returns:
- ol.layer.Vector isocurve layer
-
getStyle(){ol.style}
OpenLayers/Controls/Isocurve.js, line 340 -
Get default style
-
init()
OpenLayers/Controls/Isocurve.js, line 415 -
This method is public.
It allows to init the control. -
setCollapsed(collapsed)
OpenLayers/Controls/Isocurve.js, line 209 -
Collapse or display widget main container
Name Type Description collapsed Boolean True to collapse widget, False to display it
-
setData(data)
OpenLayers/Controls/Isocurve.js, line 309 -
Set isocurve data
Name Type Description data Object control informations
Name Type Description transport String transport type
computation String computation type
exclusions Array list of exclusions
direction String direction type
point Array [lon, lat]
results Object service response
-
setGeoJSON(geojson)
OpenLayers/Controls/Isocurve.js, line 271 -
Set vector layer
Name Type Description geojson String GeoJSON format layer
-
setLayer(layer)
OpenLayers/Controls/Isocurve.js, line 239 -
Set vector layer where Isocurve geometry is drawn
Name Type Description layer Object ol.layer.Vector isocurve layer
-
setMap(map)
OpenLayers/Controls/Isocurve.js, line 158 -
Overwrite OpenLayers setMap method
Name Type Description map ol.Map Map.