- Options: allow
'api_key':'<enter key here>'
in filteracf_osm_leaflet_providers
(#38) - Tests:
- ACF-Customizer
- ACF WP-Objects
- ACF Quick Edit Fields
- Fit markers in view (backend) #30
- Frontend jQuery
- Use
CustomEvent
in frontend event triggers - Replace
.trigger()
an.on()
in favor ofaddEventListener()
anddispatchEvent()
entirely - Work with DOM objects everywhere
- Use
- ACF
- Seperate Field-logic from map logic
- Introduce map widget
- Introduce map block
- Use imports
- Frontend
- Backend
- Scan Template files
- Default Templates
- OSM-iFrame
- OSM-Link
- Leaflet Div
- Static image #31
- Support MapBox GL / Leaflet GL: https://github.com/mapbox/mapbox-gl-leaflet
- Conversion from one field type to another #57
- Make Marker Data match ACF Google-Map Data (#39, #44)
// marker data provided by nominatim geocoder:
{
place : '',
tourism : '',
building : '',
road : '',
house_number : '',
amenity : '',
postcode : '',
city : '',
town : '',
village : '',
hamlet : '',
suburb : '',
neighbourhood : '',
quarter : '',
county : '',
state : '',
country : '',
country_code: '',
municipality: '',
railway : '',
// and so much more ...
}
// ACF marker data
{
street_number : '',
street_name : '',
city : '',
state : '',
post_code : '',
country : '',
}