informatique:wordpress:acf:acf-openstreetmap-field
Ceci est une ancienne révision du document !
Table des matières
acf-openstreetmap-field
Un plugin ACF pour intégrer une carte à partir d'OpenStreetMap et Leaflet.
Proposed changes
different geocoders
The plugin already use leaflet-control-geocoder so it miss the UI, decoding and storing stuff
Étude …
// plugin view // in wp-content/plugins/acf-openstreetmap-field/src/js/lib/media/views/map-input.js initGeocode() { geocoder_options = Object.assign({ ... geocoder: L.Control.Geocoder.nominatim( nominatim_options ) this.geocoder = L.Control.geocoder( geocoder_options ) // tests // in wp-content/plugins/acf-openstreetmap-field/test/js/address.js mapDrawCenter(){ const geocoder = L.Control.Geocoder.nominatim()
Surcharge de la Localisation du résultat
In include/ACFFieldOpenstreetmap/Core/Core.php
override geocode results format translation with constants in wp-config.php
or with acf_osm_address_format
WP filter.
Geocode results format are set with translation for localisation. But in some case we want specific formats.
In wp-config.php
we can override the 3 formats for the address like:
define('ACF_OSM_I18N_ADDR_STREET','{building} {house_number} {road}'); define('ACF_OSM_I18N_ADDR_CITY','{village} {town} {city}'); define('ACF_OSM_I18N_ADDR_COUNTRY','');
Or with a filter in functions.php
or somewhere else :
add_filter('acf_osm_address_format', function($format){ $format['street'] = 'from filter: {building} {road} {house_number}' ; return $format ; } );
Set map view with zoom after geocoding
-
- @mcguffin closed this as completed in 648a42a
informatique/wordpress/acf/acf-openstreetmap-field.1735048725.txt.gz · Dernière modification : 24/12/2024 14:58 de cyrille