2021-08-09 18:04:09 +02:00
|
|
|
'use strict';
|
|
|
|
|
|
|
|
import Events from '../_events';
|
|
|
|
import Consts from 'js/_consts';
|
|
|
|
|
|
|
|
const MapAPI = ((window) => {
|
2021-08-09 19:41:14 +02:00
|
|
|
// Constants
|
|
|
|
const NAME = 'js-mapapi';
|
|
|
|
const MAP_DRIVER = Consts['MAP_DRIVER'];
|
|
|
|
|
|
|
|
class MapAPI {
|
|
|
|
// Constructor
|
|
|
|
constructor(el) {
|
|
|
|
const ui = this;
|
|
|
|
const Drv = new MAP_DRIVER();
|
|
|
|
const BODY = document.querySelector('body');
|
|
|
|
const config = el.dataset;
|
|
|
|
config['center'] = [
|
|
|
|
config['lng'] ? config['lng'] : BODY.dataset['default-lng'],
|
|
|
|
config['lat'] ? config['lat'] : BODY.dataset['default-lat'],
|
|
|
|
];
|
|
|
|
|
|
|
|
/*config['style'] = config['style'] ?
|
2021-08-09 19:34:13 +02:00
|
|
|
jQuery.parseJSON(config['style']) :
|
|
|
|
null;
|
|
|
|
|
|
|
|
config['font-family'] = $BODY.css('font-family');*/
|
|
|
|
|
2021-08-09 19:41:14 +02:00
|
|
|
if (!config['icon']) {
|
|
|
|
config['icon'] = '<i class="fas fa-map-marker-alt"></i>';
|
|
|
|
}
|
|
|
|
|
|
|
|
console.log(`${NAME}: init ${Drv.getName()}...`);
|
|
|
|
ui.drv = Drv;
|
|
|
|
ui.el = el;
|
|
|
|
ui.config = config;
|
|
|
|
|
|
|
|
Drv.init(el, config);
|
|
|
|
|
|
|
|
el.addEventListener(Events.MAPAPILOADED, () => {
|
|
|
|
ui.addMarkers()
|
|
|
|
});
|
2021-08-09 18:04:09 +02:00
|
|
|
}
|
|
|
|
|
2021-08-09 19:41:14 +02:00
|
|
|
// Public methods
|
|
|
|
getMap() {
|
|
|
|
return ui.map;
|
|
|
|
}
|
|
|
|
|
|
|
|
dispose() {
|
|
|
|
const ui = this;
|
|
|
|
|
|
|
|
ui.el = null;
|
|
|
|
ui.el.classList.remove(`${NAME}-active`);
|
|
|
|
}
|
|
|
|
|
|
|
|
addMarkers() {
|
|
|
|
console.log(`${NAME}: addMarkers`);
|
|
|
|
const ui = this;
|
|
|
|
const el = ui.el;
|
|
|
|
const Drv = ui.drv;
|
|
|
|
const config = ui.config;
|
|
|
|
|
|
|
|
ui.map = Drv.getMap();
|
|
|
|
|
|
|
|
if (config['geojson']) {
|
|
|
|
console.log(`${NAME}: setting up geocode data`);
|
|
|
|
Drv.addGeoJson(config);
|
|
|
|
} else if (config['address']) {
|
|
|
|
console.log(config['address']);
|
|
|
|
console.log(`${NAME}: setting up address marker`);
|
|
|
|
Drv.geocode(config['address'], (results) => {
|
|
|
|
console.log(results);
|
|
|
|
|
|
|
|
const lat = results[0].geometry.location.lat();
|
|
|
|
const lng = results[0].geometry.location.lng();
|
|
|
|
|
|
|
|
console.log(
|
|
|
|
`${NAME}: setting up single lat/lng marker lat: ${lat} lng: ${lng}`,
|
|
|
|
);
|
|
|
|
|
|
|
|
Drv.addMarker([lng, lat], config);
|
|
|
|
ui.map.setCenter({
|
|
|
|
lat,
|
|
|
|
lng,
|
|
|
|
});
|
2021-08-09 18:04:09 +02:00
|
|
|
});
|
2021-08-09 19:41:14 +02:00
|
|
|
} else if (config['lat'] && config['lng']) {
|
|
|
|
const lat = config['lat'];
|
|
|
|
const lng = config['lng'];
|
|
|
|
|
|
|
|
console.log(
|
|
|
|
`${NAME}: setting up single lat/lng marker lat: ${lat} lng: ${lng}`,
|
|
|
|
);
|
|
|
|
|
|
|
|
Drv.addMarker([lng, lat], config);
|
|
|
|
}
|
|
|
|
|
|
|
|
el.classList.add(`${NAME}-active`);
|
|
|
|
|
|
|
|
el.dispatchEvent(new Event(Events.MAPLOADED));
|
|
|
|
console.log(`${NAME}: Map is loaded`);
|
2021-08-09 18:04:09 +02:00
|
|
|
}
|
2021-08-09 19:41:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
const init = () => {
|
|
|
|
console.log(`${NAME}: init`);
|
|
|
|
document.querySelectorAll(`.${NAME}`).forEach((el, i) => {
|
|
|
|
const map = new MapAPI(el);
|
|
|
|
});
|
|
|
|
}
|
2021-08-09 18:04:09 +02:00
|
|
|
|
2021-08-09 19:41:14 +02:00
|
|
|
// auto-apply
|
|
|
|
window.addEventListener(`${Events.LODEDANDREADY}`, init);
|
|
|
|
window.addEventListener(`${Events.AJAX}`, init);
|
2021-08-09 18:04:09 +02:00
|
|
|
|
2021-08-09 19:41:14 +02:00
|
|
|
return MapAPI;
|
2021-08-09 18:04:09 +02:00
|
|
|
})(window);
|
|
|
|
|
|
|
|
export default MapAPI;
|