---
title: 'Custom Fields ● OpenStreetMap'
created_time: '2023-09-23 17:01:44'
language: fr
subtitle: ''
---
# Custom Fields ● OpenStreetMap
**with plenty of features**
by Marc Dechèvre

present slides https://slides.woluweb.be
[Basic Joomla Tutorials](https://www.basicjoomla.com/) 2020.01.07 | [@basicjoomla](https://twitter.com/basicjoomla) [YouTube](https://www.youtube.com/watch?v=0ZI15XjBZDs)
## Goal of this presentation
The goal is to create and assign an OpenStreetMap Custom Field to one or several categories.
So each article (being Members, Events, whatever) will be geolocalized.
And based on this we will create a global OpenStreetMap module showing all the locations.
---
We will start with a simple multiple markers map.
And then we will even end up with:
- Multiple markers
- Different markers for each category
- Tooltip showing
1. Title with Link
2. Intro Image
3. Intro Text
- Clustering
- And even Layers with Filters
## NEW FOR JOOMLA 4
Someone contacted me in June 2023 to let me know that the override would not work any more (at least in her case) in Joomla 4 while it was working on her Joomla 3 website.
That error was mentioning "FieldsHelper".
So I just told her to add the following at the beginning of the file and this solved the issue:
`use Joomla\Component\Fields\Administrator\Helper\FieldsHelper`
## What we will achieve

## The online demo
https://joomlacustomfields.org/en/
## OpenStreetMap - Leaflet
In order to create our OpenStreetMap, we will use the following open-source Javascript library:
https://leafletjs.com/
See the following examples:
https://leafletjs.com/examples.html
Note : don't forget of course to add the link to the .js file and to the .css file
## OSM Custom Fields
I have found 3 OpenStreetMap Custom Fields out there.
Each has its strengths :)
### Advanced Custom Fields by Tassos Marinos
Free and Paid (€ 19)
Includes 25+ Custom Fields, among which OSM, Google Maps & Bing Maps
https://www.tassos.gr/joomla-extensions/advanced-custom-fields
https://www.tassos.gr/joomla-extensions/advanced-custom-fields/docs/the-openstreetmap-field
### OpenStreetMap Custom Field by Nordmograph
Paid (€ 10)
There is also a Google Maps field.
There are also extensions allowing to build maps linked to different sources (Articles but also third-party extensions.
You can really build crazy things (see example during this live session)
https://extensions.joomla.org/extensions/extension/authoring-a-content/custom-fields/openstreetmap-custom-field/
### OpenStreetMap by GMapFP
Free
There are also plenty of maps-related extensions by GMapFP.
https://creation-web.pro/extensions-joomla-francaises/46-field-osm
## The chosen OSM Custom Field
For the sake of this presentation we will use the OSM Custom Field, being part of Advanced Custom Fields by Tassos Marinos.
The reason being that it will only write the Latitude/Longitude in the database (without extra informations like a personalized marker, a text, a zoom level or whatever).
So it will be easier for us to manipulate this Custom Field to create our multiple markers map.
## Little change since version 1.1.0 of that OSM Custom Field (with overrides)
Since version 1.1.0 released in June 2020, this OSM Custom field by Tassos Marinos has new features and includes a.o. a Text field in order to display a Tooltip.
In practice this means that the value of the OSM field is now stored in the database as JSON, in both Free and Pro versions and regardless of whether you've any of the new options enabled.
In practise this means that I have adapted slightly the code in the overrides shown in the next Chapter.
---
**Before**
```php
$latlon = $fields_by_name['open-street-map']->rawvalue;
```
and you would echo $latlon
**Now**
```php
$value = json_decode($fields_by_name['open-street-map']->rawvalue);
$tooltip = $value->tooltip;
$latlon = $value->coordinates;
```
and you would echo $latlon
Note : the tooltip is a Pro feature. We don't need it in our examples even if I mention it here for completeness
---
There are 3 scenarios (no matter whether you are using Free or Pro, activating the Tooltip or not) :
1. if you have upgraded from a previous version and already had articles having an OSM custom field and are ready to edit&save each concerned article then you should simply use the **code "after"**
2. if you have upgraded from a previous version and already had articles having an OSM custom field but are NOT ready to edit&save each concerned article (for example bc you have too many) then you have to add the **fixValue()** Method. See code on the next slide
3. if you are still on some previous version and don't want to update then you should use the **code "now"** or [better option] use the **fixValue()** Method to be future-proof
---
Note : actually if you have a mix of articles in the new and in the old format, the latter will simply not show on the map
- unless you edit&save them (scenario 1)
- or unless you add the fixValue() Method (scenario 2)
---
Code to be used if you keep articles having the old format:
```php
// this should be put outside the loop
// the OSM CF rawvalue will be transformed in the new format for articles having the old format
function fixValue(&$value) {
// New format already
if (is_object(json_decode($value)))
{
return;
}
// Convert old format
$value = json_encode(['coordinates' => $value]);
}
// this will be put inside the loop (like in the classical example)
$value = $fields_by_name['open-street-map']->rawvalue;
fixValue($value);
$value = json_decode($value);
$latlon = $value->coordinates;
$tooltip = $value->tooltip;
```
## Little change since version 1.1.0 of that OSM Custom Field (without overrides)
Also, because of this using Articles Anywhere as explained hereafter will be less straightforward since you will need to "json_decode" (so you will probably need to use Sourcerer inside Articles Anywhere... and of course order the plugins correctly if it does not trigger as expected).
Before:
```php
[open-street-map output="value"]
```
After
```php
{source}
coordinates;
echo $latlon;
?>
{/source}
```
## Your own map-marker
Instead of PNG image, I chose SVG image for two reasons :
1. vector => image is always perfect whatever its size
2. easy to edit to change colors : you don't need Photoshop... just edit it with your basic Text Editor
The present SVG was found on https://www.iconfinder.com/search/?q=map+marker&from=navbar
## Preparing the Articles
In the present demo, we will create two Categories
- JoomlaDays
- Joomla User Groups
Then we install the OSM Custom Field.
Finally, we create a OSM Custom Field and assign it to the 2 above categories.
## OSM without override
How could we possibibly loop through articles of different categories without playing with Overrides / Alternate Layouts ?
Actually, simply by using Articles Anywhere by RegularLabs
https://www.regularlabs.com/extensions/articlesanywhere
The only drawback compared to making overrides : we will need the Pro version (the Free version does not allow to loop through articles).
---
In many cases it would be enough, but in order to avoid end-users to "break" the code we would put in an Article or in a Module (and in this case also because our Editor would strip some part of our code), we will also use ReReplacer by RegularLabs
https://www.regularlabs.com/extensions/rereplacer
This allows us to replace a shortcode that we create like {osm} by our code (and we can even use regular expressions which can be handy).
## Articles Anywhere - right configuration
Have the following order in the Plugins:
1. System - Regular Labs - ReReplacer
2. System - Regular Labs - Articles Anywhere
To avoid having the Comments **START: Articles Anywhere** in the HTML before/after the content -which would prevent the display of the map-markers- go to plugin Articles Anywhere > Advanced > set "Place HTML comments" to NO.
## Articles Anywhere - syntax
Let's assume we have a Category called JoomlaDays and that we created an OSM Custom Field with Name "open-street-name"
The following code
```php
{articles category="JoomlaDays"}
[open-street-map output="value"]
{/articles}
```
will output
```php
50.84717044999999,4.35198095255952
50.842995099999996,4.43528195676678
```
Interesting feature : the possibility to use syntax like **category="current"**
https://www.regularlabs.com/extensions/articlesanywhere/tutorial#multiple-articles-filters-dynamic-values
### OSM without override 1 - screenshot
just one Category | custom Marker (svg) | Tooltip with link to Article

### OSM without override 1 - code
```php