webpack-bootstrap-ui-kit/src/js/drivers/map.google.font-icons.js

197 lines
5.6 KiB
JavaScript
Raw Normal View History

2022-05-03 20:50:57 +02:00
'use strict'
2021-08-09 18:04:09 +02:00
const Obj = {
init: () => {
2022-06-16 01:38:37 +02:00
class GoogleMapsHtmlOverlay extends window.google.maps.OverlayView {
2022-05-03 20:50:57 +02:00
constructor (options) {
super()
const ui = this
2021-08-09 18:04:09 +02:00
2022-05-03 20:50:57 +02:00
ui.setMap(options.map)
ui.position = options.position
2021-08-18 20:51:15 +02:00
ui.html = options.html
? options.html
2022-05-03 20:50:57 +02:00
: '<div class="mapboxgl-marker"><i class="marker-icon fas fa-map-marker-alt"></i></div>'
ui.divClass = options.divClass
ui.align = options.align
ui.isDebugMode = options.debug
ui.onClick = options.onClick
ui.onMouseOver = options.onMouseOver
2021-08-09 18:04:09 +02:00
ui.isBoolean = (arg) => {
2022-05-03 20:50:57 +02:00
if (typeof arg === 'boolean') {
return true
2021-08-09 18:04:09 +02:00
} else {
2022-05-03 20:50:57 +02:00
return false
2021-08-09 18:04:09 +02:00
}
2022-05-03 20:50:57 +02:00
}
2021-08-09 18:04:09 +02:00
ui.isNotUndefined = (arg) => {
2022-05-03 20:50:57 +02:00
if (typeof arg !== 'undefined') {
return true
2021-08-09 18:04:09 +02:00
} else {
2022-05-03 20:50:57 +02:00
return false
2021-08-09 18:04:09 +02:00
}
2022-05-03 20:50:57 +02:00
}
2021-08-09 18:04:09 +02:00
ui.hasContent = (arg) => {
if (arg.length > 0) {
2022-05-03 20:50:57 +02:00
return true
2021-08-09 18:04:09 +02:00
} else {
2022-05-03 20:50:57 +02:00
return false
2021-08-09 18:04:09 +02:00
}
2022-05-03 20:50:57 +02:00
}
2021-08-09 18:04:09 +02:00
ui.isString = (arg) => {
2022-05-03 20:50:57 +02:00
if (typeof arg === 'string') {
return true
2021-08-09 18:04:09 +02:00
} else {
2022-05-03 20:50:57 +02:00
return false
2021-08-09 18:04:09 +02:00
}
2022-05-03 20:50:57 +02:00
}
2021-08-09 18:04:09 +02:00
ui.isFunction = (arg) => {
2022-05-03 20:50:57 +02:00
if (typeof arg === 'function') {
return true
2021-08-09 18:04:09 +02:00
} else {
2022-05-03 20:50:57 +02:00
return false
2021-08-09 18:04:09 +02:00
}
2022-05-03 20:50:57 +02:00
}
2021-08-09 18:04:09 +02:00
}
2022-05-03 20:50:57 +02:00
onAdd () {
const ui = this
2021-08-09 18:04:09 +02:00
// Create div element.
2022-05-03 20:50:57 +02:00
ui.div = document.createElement('div')
ui.div.style.position = 'absolute'
2021-08-09 18:04:09 +02:00
// Validate and set custom div class
2022-05-03 20:50:57 +02:00
if (ui.isNotUndefined(ui.divClass) && ui.hasContent(ui.divClass)) { ui.div.className = ui.divClass }
2021-08-09 18:04:09 +02:00
// Validate and set custom HTML
if (
ui.isNotUndefined(ui.html) &&
ui.hasContent(ui.html) &&
ui.isString(ui.html)
2022-05-03 20:50:57 +02:00
) { ui.div.innerHTML = ui.html }
2021-08-09 18:04:09 +02:00
// If debug mode is enabled custom content will be replaced with debug content
if (ui.isBoolean(ui.isDebugMode) && ui.isDebugMode) {
2022-05-03 20:50:57 +02:00
ui.div.className = 'debug-mode'
2021-08-09 18:04:09 +02:00
ui.div.innerHTML =
'<div style="height: 10px; width: 10px; background: red; border-radius: 100%;"></div>' +
2022-05-03 20:50:57 +02:00
'<div style="position: absolute; top: 5px; padding: 5px; width: 130px; text-align: center; font-size: 18px; text-transform: uppercase; font-weight: bolder; background: red; color: white; font-family: Arial;">Debug mode</div>'
2021-08-09 18:04:09 +02:00
ui.div.setAttribute(
2022-05-03 20:50:57 +02:00
'style',
'position: absolute;' +
'border: 5px dashed red;' +
'height: 150px;' +
'width: 150px;' +
'display: flex;' +
'justify-content: center;' +
'align-items: center;'
)
2021-08-09 18:04:09 +02:00
}
// Add element to clickable layer
2022-05-03 20:50:57 +02:00
ui.getPanes().overlayMouseTarget.appendChild(ui.div)
2021-08-09 18:04:09 +02:00
// Add listeners to the element.
2022-09-23 17:50:55 +02:00
ui.div.addEventListener('click', (event) => {
2022-06-16 01:38:37 +02:00
window.google.maps.event.trigger(ui, 'click')
2022-05-03 20:50:57 +02:00
if (ui.isFunction(ui.onClick)) ui.onClick()
event.stopPropagation()
})
2022-09-23 17:50:55 +02:00
ui.div.addEventListener('mouseover', (event) => {
2022-06-16 01:38:37 +02:00
window.google.maps.event.trigger(ui, 'mouseover')
2022-05-03 20:50:57 +02:00
if (ui.isFunction(ui.onMouseOver)) ui.onMouseOver()
event.stopPropagation()
})
2021-08-09 18:04:09 +02:00
}
2022-05-03 20:50:57 +02:00
draw () {
const ui = this
2021-08-09 18:04:09 +02:00
// Calculate position of div
2022-05-03 20:50:57 +02:00
const positionInPixels = ui
2021-08-18 20:51:15 +02:00
.getProjection()
2022-06-16 01:38:37 +02:00
.fromLatLngToDivPixel(new window.google.maps.LatLng(ui.position))
2021-08-09 18:04:09 +02:00
// Align HTML overlay relative to original position
2022-05-03 20:50:57 +02:00
const divOffset = {
2021-08-09 18:04:09 +02:00
y: undefined,
x: undefined,
2022-05-03 20:50:57 +02:00
}
switch (Array.isArray(ui.align) ? ui.align.join(' ') : '') {
case 'left top':
divOffset.y = ui.div.offsetHeight
divOffset.x = ui.div.offsetWidth
break
case 'left center':
divOffset.y = ui.div.offsetHeight / 2
divOffset.x = ui.div.offsetWidth
break
case 'left bottom':
divOffset.y = 0
divOffset.x = ui.div.offsetWidth
break
case 'center top':
divOffset.y = ui.div.offsetHeight
divOffset.x = ui.div.offsetWidth / 2
break
case 'center center':
divOffset.y = ui.div.offsetHeight / 2
divOffset.x = ui.div.offsetWidth / 2
break
case 'center bottom':
divOffset.y = 0
divOffset.x = ui.div.offsetWidth / 2
break
case 'right top':
divOffset.y = ui.div.offsetHeight
divOffset.x = 0
break
case 'right center':
divOffset.y = ui.div.offsetHeight / 2
divOffset.x = 0
break
case 'right bottom':
divOffset.y = 0
divOffset.x = 0
break
2021-08-09 18:04:09 +02:00
default:
2022-05-03 20:50:57 +02:00
divOffset.y = ui.div.offsetHeight / 2
divOffset.x = ui.div.offsetWidth / 2
2021-08-09 18:04:09 +02:00
}
// Set position
2022-05-03 20:50:57 +02:00
ui.div.style.top = `${positionInPixels.y - divOffset.y}px`
ui.div.style.left = `${positionInPixels.x - divOffset.x}px`
2021-08-09 18:04:09 +02:00
}
2022-05-03 20:50:57 +02:00
getPosition () {
const ui = this
return ui.position
2021-08-09 18:04:09 +02:00
}
2022-05-03 20:50:57 +02:00
getDiv () {
const ui = this
return ui.div
2021-08-09 18:04:09 +02:00
}
2022-05-03 20:50:57 +02:00
setPosition (position, align) {
const ui = this
ui.position = position
ui.align = align
ui.draw()
2021-08-09 18:04:09 +02:00
}
}
2022-05-03 20:50:57 +02:00
return GoogleMapsHtmlOverlay
2021-08-09 18:04:09 +02:00
},
2022-05-03 20:50:57 +02:00
}
2021-08-09 18:04:09 +02:00
2022-05-03 20:50:57 +02:00
export default Obj