Quick start
Five minutes from zero to a working Yatmo map on a page.
1. Get your license keys
Email info@yatmo.com, or contact one of our regional resellers. You’ll receive two keys: a frontend key (for plugins) and a backend key (for the REST API). See License & keys for the full distinction.
2. Pick a path
Quickest: a plugin. Most flexible: the REST API. Unsure? Read Plugins or REST API?
3. Drop in a map
For the JavaScript plugin, paste this into a page:
<div id="map" style="width: 100%; height: 500px;"></div>
<script>
yatmoConfig = {
licenseKey: 'YOUR_KEY_HERE',
language: 'EN',
container: 'map',
center: [4.3442926, 50.8510525],
zoom: 16
};
</script>
<script src="https://map.yatmo.com/map.js"></script>
Open the page — you should see an interactive Yatmo map. Now change center to your property’s coordinates.
4. Next steps
- Try the other plugins: iframe plugin (no JS, one tag), JS Summary, JS Summary-as-text.
- Try the advanced features: isochrones, favorite addresses, map styles.
- Outgrowing the plugins? Read the REST API overview.