GeoJSON FeatureCollection of waypoints.
Contains multiple waypoints that together define a multi-stop route.
Additional custom properties for individual waypoints
const waypoints: Waypoints = { type: 'FeatureCollection', features: [ { type: 'Feature', geometry: { type: 'Point', coordinates: [4.9, 52.3] }, properties: {} }, { type: 'Feature', geometry: { type: 'Point', coordinates: [4.95, 52.35] }, properties: {} } ]}; Copy
const waypoints: Waypoints = { type: 'FeatureCollection', features: [ { type: 'Feature', geometry: { type: 'Point', coordinates: [4.9, 52.3] }, properties: {} }, { type: 'Feature', geometry: { type: 'Point', coordinates: [4.95, 52.35] }, properties: {} } ]};
GeoJSON FeatureCollection of waypoints.
Contains multiple waypoints that together define a multi-stop route.