-
Notifications
You must be signed in to change notification settings - Fork 2
Demo for OD Layer
Let us use
dMap
to make an easy example.
First you are supposed to setup a leaflet map. In order for a better user experience, here we specify some features for the map, such as minZoom: 2
and maxBounds: bounds
.
Prepare the data before you use it to draw trails on a map.
// Prepare the data of airports and airlines
let airports = odData.Airport_LOC,
trails = odData.flights;
We load our data from file trails.json
mainly because it is not proper to write so much raw data in logical part of code. The format of our data is like:
{
"Airport_LOC":Object{...},
"flights":Array[length]
}
You can create an OD Layer
instance by var ods = new dmap.ODLayer()
.
Then feed data by function data(data, callback)
.
ods.data(trails, function(t){
return {
origin: t.origin,
destination: t.destination,
options: yourOptions
}
})
Note that callback
function is supposed to return an json object with specified fields origin, destination, options
.
After feeding data to od layer, you can easily render trails by invoking enter()
. Do NOT forget add od layer to your map.
In order to display your map in browser, you are supposed to have an html
file. Before opening your browser, please check the checklist before:
- Have you include leaflet?
- Have you include dMap?
- Have you include your data? (If you set your data in your code directly, please ignore this item.)
- Have you include your
js
script?
If you have done the items above. Then you may get the trails below.
May you succeed! 🚀