2019-06-11 15:01:16 +02:00
|
|
|
import AbstractGeoJsonOverlay from './AbstractGeoJsonOverlay.js';
|
2019-02-27 15:50:23 +01:00
|
|
|
|
2019-06-11 15:01:16 +02:00
|
|
|
export default AbstractGeoJsonOverlay.extend({
|
2019-09-18 11:53:58 +02:00
|
|
|
initialize: function() {
|
|
|
|
AbstractGeoJsonOverlay.prototype.initialize.call(this, "privprotector");
|
2019-02-27 15:50:23 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
createFeature: function(protector){
|
|
|
|
return {
|
|
|
|
"type":"Feature",
|
|
|
|
"geometry": {
|
|
|
|
"type":"Polygon",
|
|
|
|
"coordinates":[[
|
2024-06-07 01:23:14 +08:00
|
|
|
[protector.x-5 + 0.5,protector.z-5 + 0.5],
|
|
|
|
[protector.x-5 + 0.5,protector.z+6 + 0.5],
|
|
|
|
[protector.x+6 + 0.5,protector.z+6 + 0.5],
|
|
|
|
[protector.x+6 + 0.5,protector.z-5 + 0.5],
|
|
|
|
[protector.x-5 + 0.5,protector.z-5 + 0.5]
|
2019-02-27 15:50:23 +01:00
|
|
|
]]
|
|
|
|
},
|
|
|
|
"properties":{
|
|
|
|
"name": protector.attributes.priv,
|
|
|
|
"popupContent": protector.attributes.priv
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
});
|