mapserver/server/static/js/overlays/TechnicQuarryOverlay.js
2019-02-23 17:07:53 +01:00

22 lines
609 B
JavaScript

'use strict';
var TechnicQuarryIcon = L.icon({
iconUrl: 'pics/default_tool_mesepick.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(quarry){
return "<p>Owner: " + quarry.attributes.owner + "</p>" +
"<p>Dug: " + quarry.attributes.dug + "</p>" +
"<p>Enabled: " + quarry.attributes.enabled + "</p>";
}
});