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 overlapping polygons on the map showing reachable area within 5, 10, and 20 minutes from the origin point. Visitors see at a glance whether the property is in a well-connected area.
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.
If you need isochrones for travel modes other than driving (walking, cycling, transit) or non-default durations, call the Isochrone API directly and render the GeoJSON yourself.