This event is triggered when a geocoding search has been processed, but an error occured.
example
// log a message in the console if a geocoding search error occured
JMap.Event.Geocoding.on.error(
"custom-geocoding-error",
params =>console.log("A geocoding search has failed", params)
)
This event is triggered when a geocoding search has been completed.
example
// log a message in the console once the geocoding search has been completed
JMap.Event.Geocoding.on.success(
"custom-geocoding-success",
params =>console.log("A geocoding search has been completed", params.results)
)
JMap.Event.Geocoding.on
Here you have all JMap NG Core geocoding events on which you can attach a listener.