2019-09-18 23:35:58 +00:00
|
|
|
function AprsMarker() {}
|
|
|
|
|
|
|
|
AprsMarker.prototype = new google.maps.OverlayView();
|
|
|
|
|
|
|
|
AprsMarker.prototype.draw = function() {
|
|
|
|
var div = this.div;
|
|
|
|
var overlay = this.overlay;
|
2019-09-19 14:24:04 +00:00
|
|
|
if (!div || !overlay) return;
|
2019-09-18 23:35:58 +00:00
|
|
|
|
|
|
|
if (this.symbol) {
|
2019-10-23 09:27:05 +00:00
|
|
|
var tableId = this.symbol.table === '/' ? 0 : 1;
|
2019-11-25 19:17:11 +00:00
|
|
|
div.style.background = 'url(aprs-symbols/aprs-symbols-24-' + tableId + '@2x.png)';
|
2019-09-18 23:35:58 +00:00
|
|
|
div.style['background-size'] = '384px 144px';
|
|
|
|
div.style['background-position-x'] = -(this.symbol.index % 16) * 24 + 'px';
|
|
|
|
div.style['background-position-y'] = -Math.floor(this.symbol.index / 16) * 24 + 'px';
|
|
|
|
}
|
|
|
|
|
2019-09-19 00:25:32 +00:00
|
|
|
if (this.course) {
|
|
|
|
if (this.course > 180) {
|
|
|
|
div.style.transform = 'scalex(-1) rotate(' + (270 - this.course) + 'deg)'
|
|
|
|
} else {
|
|
|
|
div.style.transform = 'rotate(' + (this.course - 90) + 'deg)';
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
div.style.transform = null;
|
|
|
|
}
|
|
|
|
|
2019-10-23 09:27:05 +00:00
|
|
|
if (this.symbol.table !== '/' && this.symbol.table !== '\\') {
|
2019-09-18 23:35:58 +00:00
|
|
|
overlay.style.display = 'block';
|
|
|
|
overlay.style['background-position-x'] = -(this.symbol.tableindex % 16) * 24 + 'px';
|
|
|
|
overlay.style['background-position-y'] = -Math.floor(this.symbol.tableindex / 16) * 24 + 'px';
|
|
|
|
} else {
|
|
|
|
overlay.style.display = 'none';
|
|
|
|
}
|
|
|
|
|
2019-09-19 14:24:04 +00:00
|
|
|
if (this.opacity) {
|
|
|
|
div.style.opacity = this.opacity;
|
|
|
|
} else {
|
|
|
|
div.style.opacity = null;
|
|
|
|
}
|
|
|
|
|
2019-09-18 23:35:58 +00:00
|
|
|
var point = this.getProjection().fromLatLngToDivPixel(this.position);
|
|
|
|
|
|
|
|
if (point) {
|
|
|
|
div.style.left = point.x - 12 + 'px';
|
|
|
|
div.style.top = point.y - 12 + 'px';
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2019-09-19 14:24:04 +00:00
|
|
|
AprsMarker.prototype.setOptions = function(options) {
|
|
|
|
google.maps.OverlayView.prototype.setOptions.apply(this, arguments);
|
|
|
|
this.draw();
|
|
|
|
};
|
|
|
|
|
2019-09-18 23:35:58 +00:00
|
|
|
AprsMarker.prototype.onAdd = function() {
|
|
|
|
var div = this.div = document.createElement('div');
|
|
|
|
|
|
|
|
div.style.position = 'absolute';
|
|
|
|
div.style.cursor = 'pointer';
|
|
|
|
div.style.width = '24px';
|
|
|
|
div.style.height = '24px';
|
|
|
|
|
|
|
|
var overlay = this.overlay = document.createElement('div');
|
|
|
|
overlay.style.width = '24px';
|
|
|
|
overlay.style.height = '24px';
|
2019-11-25 19:17:11 +00:00
|
|
|
overlay.style.background = 'url(aprs-symbols/aprs-symbols-24-2@2x.png)';
|
2019-09-18 23:35:58 +00:00
|
|
|
overlay.style['background-size'] = '384px 144px';
|
|
|
|
overlay.style.display = 'none';
|
|
|
|
|
|
|
|
div.appendChild(overlay);
|
|
|
|
|
|
|
|
var self = this;
|
|
|
|
google.maps.event.addDomListener(div, "click", function(event) {
|
|
|
|
event.stopPropagation();
|
|
|
|
google.maps.event.trigger(self, "click", event);
|
|
|
|
});
|
|
|
|
|
|
|
|
var panes = this.getPanes();
|
|
|
|
panes.overlayImage.appendChild(div);
|
2019-09-19 14:24:04 +00:00
|
|
|
};
|
2019-09-18 23:35:58 +00:00
|
|
|
|
|
|
|
AprsMarker.prototype.remove = function() {
|
|
|
|
if (this.div) {
|
|
|
|
this.div.parentNode.removeChild(this.div);
|
|
|
|
this.div = null;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
AprsMarker.prototype.getAnchorPoint = function() {
|
|
|
|
return new google.maps.Point(0, -12);
|
2019-09-19 14:24:04 +00:00
|
|
|
};
|