mapserver/server/static/js/overlays/PoiOverlay.js

28 lines
659 B
JavaScript
Raw Normal View History

2019-02-07 09:56:52 +03:00
'use strict';
2019-02-07 22:06:09 +03:00
var PoiIcon = L.icon({
iconUrl: 'css/images/marker-icon.png',
shadowUrl: 'css/images/marker-shadow.png',
iconSize: [25, 41],
iconAnchor: [12, 41],
popupAnchor: [1, -34],
tooltipAnchor: [16, -28],
shadowSize: [41, 41]
});
2019-02-07 09:56:52 +03:00
var PoiOverlay = AbstractIconOverlay.extend({
initialize: function(wsChannel, layerMgr) {
2019-02-07 22:06:09 +03:00
AbstractIconOverlay.prototype.initialize.call(this, wsChannel, layerMgr, "poi", PoiIcon);
2019-02-07 09:56:52 +03:00
},
2019-03-31 19:19:41 +03:00
getMaxDisplayedZoom: function(){
return 5;
},
2019-02-07 09:56:52 +03:00
createPopup: function(poi){
return "<h4>" + poi.attributes.name + "</h4><hr>" +
"<b>Owner: </b> " + poi.attributes.owner + "<br>";
}
});