22 lines
601 B
JavaScript
22 lines
601 B
JavaScript
|
'use strict';
|
||
|
|
||
|
var TechnicQuarryIcon = L.icon({
|
||
|
iconUrl: 'pics/default_tool_mesepick.png.png',
|
||
|
|
||
|
iconSize: [16, 16],
|
||
|
iconAnchor: [8, 8],
|
||
|
popupAnchor: [0, -16]
|
||
|
});
|
||
|
|
||
|
var TechnicQuarryOverlay = AbstractIconOverlay.extend({
|
||
|
initialize: function(wsChannel, layerMgr) {
|
||
|
AbstractIconOverlay.prototype.initialize.call(this, wsChannel, layerMgr, "technicquarry", TechnicQuarryIcon);
|
||
|
},
|
||
|
|
||
|
createPopup: function(lcd){
|
||
|
return "<p>Owner: " + lcd.attributes.owner + "</p>" +
|
||
|
"<p>Dug: " + lcd.attributes.dug + "</p>" +
|
||
|
"<p>Enabled: " + lcd.attributes.enabled + "</p>";
|
||
|
}
|
||
|
});
|