Isochrones
Draw 5, 10, and 20-minute travel-time polygons around a property — instantly answer “how far can I get from here?”.
What it does
Renders three nested areas on the map, reachable within 5, 10 and 20 minutes from the origin point, with a travel-mode selector: walking (selected by default), cycling, driving and public transport where the market has it. Visitors see at a glance whether the property is well connected.
Enable on the JavaScript Map plugin
Add an isochrone object to your yatmoConfig:
yatmoConfig = {
licenseKey: '...',
language: 'EN',
container: 'map',
center: [4.3442926, 50.8510525],
zoom: 16,
isochrone: {
latitude: 50.8510525,
longitude: 4.3442926
}
};
See it live on the JS Map demo — the demo config has isochrones turned on.
Enable on the WordPress Map plugin
Set enable_isochrone=1 on the [yatmo-map] shortcode:
[yatmo-map address="Rue de la Loi 16, 1000 Bruxelles" enable_isochrone=1]
Notes
First call can be slow
Isochrones are computed on the fly for a new origin (~1 second). Subsequent renders at the same lat/lng hit the cache.
The durations are fixed at 5, 10 and 20 minutes. For other durations, call the Isochrone API from your server and draw the GeoJSON yourself.