Ícone do site MARACANÃ ONLINE!

Prefeitura de Sorocaba intensifica roçagem de mato alto em toda a cidade

A Prefeitura de Sorocaba, por meio da Secretaria de Serviços Públicos e Obras (Serpo) realiza, diuturnamente, o serviço de roçagem de mato alto das áreas públicas e de próprios municipais, em toda a cidade. No momento, a iniciativa ocorre de forma intensificada, com equipes extras, devido ao período anual de chuvas mais intensas e constantes, que propicia o crescimento mais rápido do mato.

Nesta sexta-feira (20), várias equipes estão fazendo a roçagem nos seguintes locais: Jardim Europa, Jardim Paulistano, Éden, Jardim São Guilherme, Brigadeiro Tobias, UBS Nova Sorocaba, Jardim Santo André, Ana Paula Eleutério, Jardim Vera Cruz, Montreal, Wanel Ville, Caguaçu, Alto da Boa Vista, além dos próprios UBS Márcia Mendes, CEI 140, CEI 144 e EM Dirceu Ferreira.

A Serpo segue com o monitoramento de áreas públicas e próprios municipais, programando o serviço de roçagem, de forma a atender todos os bairros, mantendo o paisagismo urbano e a limpeza desses locais, além da fiscalização de terrenos particulares.

A Administração Municipal também chama a atenção para que proprietários de imóveis e imobiliárias da cidade mantenham seus imóveis sempre limpos, roçados e livres de entulho e outros resíduos, conforme previsto na Lei Municipal nº 8.381/2008. O valor de multa para terrenos até 500 m2 é de R$ 9,55 por m2, e acima de 500 m2, o valor é de R$ 13,65, por m2.

 

Ecoponto – descarte correto de resíduos

Sorocaba conta com seis Ecopontos, que estão localizados nos seguintes bairros: Vila Helena, na Zona Norte; Cajuru do Sul, na Zona Industrial; Júlio de Mesquita Filho, na Zona Oeste, mais Vila Hortência, Brigadeiro Tobias e Aparecidinha, todos na Zona Leste.

O Ecoponto oferece serviço gratuito aos cidadãos, para garantir a destinação adequada e ambientalmente correta de diferentes tipos de resíduos e, assim, evitar o descarte irregular na cidade, além de promover a devida reciclagem desses materiais.

Diferentemente dos antigos Ecopontos que existiam no município, o espaço, agora, é todo cercado, tem controle de acesso, recepção, contêiner com banheiro, iluminação em LED, paisagismo e dispõe de vigia 24 horas e câmeras de videomonitoramento.

 

Solicitações e denúncias

É possível fazer solicitações de roçagem ou uma denúncia de situação irregular em área particular, pelos canais de atendimento da Ouvidoria Geral do Município. São eles: o site https://atendimento156.sorocaba.sp.gov.br/; o WhatsApp: (15) 99129-2426, de segunda a sexta-feira, das 8h às 17h; e o telefone: 156, também de segunda a sexta-feira, das 8h às 17h.


















$$ = $.noConflict();

var initPhotoSwipeFromDOM = function(gallerySelector) {

// parse slide data (url, title, size …) from DOM elements
// (children of gallerySelector)
var parseThumbnailElements = function(el) {
var thumbElements = el.childNodes,
numNodes = thumbElements.length,
items = [],
figureEl,
childElements,
linkEl,
size,
item;

for(var i = 0; i < numNodes; i++) {
figureEl = thumbElements[i]; //

element

// include only element nodes
if(figureEl.nodeType !== 1) {
continue;
}

linkEl = figureEl.children[0]; // element
linkEl = figureEl; //
element
// console.log(linkEl);
size = linkEl.getAttribute(‘data-size’).split(‘x’);

// create slide object
item = {
src: linkEl.getAttribute(‘href’),
w: parseInt(size[0], 10),
h: parseInt(size[1], 10)
};

if(figureEl.children.length > 1) {
//

content
item.title = figureEl.children[1].innerHTML;
}

if(linkEl.children.length > 0) {
// thumbnail element, retrieving thumbnail url
item.msrc = linkEl.children[0].getAttribute(‘src’);
}

item.el = figureEl; // save link to element for getThumbBoundsFn
items.push(item);
}

return items;
};

// find nearest parent element
var closest = function closest(el, fn) {
return el && ( fn(el) ? el : closest(el.parentNode, fn) );
};

// triggers when user clicks on thumbnail
var onThumbnailsClick = function(e) {
e = e || window.event;
e.preventDefault ? e.preventDefault() : e.returnValue = false;

var eTarget = e.target || e.srcElement;

var clickedListItem = closest(eTarget, function(el) {
return el.tagName === ‘FIGURE’;
});
clickedListItem = eTarget.parentNode;
if(!clickedListItem) {
return;
}

// find index of clicked item
var clickedGallery = clickedListItem.parentNode,
childNodes = clickedListItem.parentNode.childNodes,
numChildNodes = childNodes.length,
nodeIndex = 0,
index;

for (var i = 0; i = 0) {
openPhotoSwipe( index, clickedGallery );
}

return false;
};

// parse picture index and gallery index from URL (#&pid=1&gid=2)
var photoswipeParseHash = function() {
var hash = window.location.hash.substring(1),
params = {};

if(hash.length < 5) {
return params;
}

var vars = hash.split('&');
for (var i = 0; i < vars.length; i++) {
if(!vars[i]) {
continue;
}
var pair = vars[i].split('=');
if(pair.length getThumbBoundsFn section of docs for more info
var thumbnail = items[index].el.getElementsByTagName(‘img’)[0], // find thumbnail
pageYScroll = window.pageYOffset || document.documentElement.scrollTop,
rect = thumbnail.getBoundingClientRect();

return {x:rect.left, y:rect.top + pageYScroll, w:rect.width};
},

shareButtons: [
{id:’download’, label:’Download image’, url:”, download:true}
],

// history & focus options are disabled on CodePen
// remove these lines in real life:
historyEnabled: false,
focus: false

};

if(disableAnimation) {
options.showAnimationDuration = 0;
}

// Pass data to PhotoSwipe and initialize it
gallery = new PhotoSwipe( pswpElement, PhotoSwipeUI_Default, items, options);
gallery.init();
};

// loop through all gallery elements and bind events
var galleryElements = document.querySelectorAll( gallerySelector );

for(var i = 0, l = galleryElements.length; i 0 && hashData.gid > 0) {
openPhotoSwipe( hashData.pid – 1 , galleryElements[ hashData.gid – 1 ], true );
}
};

// execute above function
initPhotoSwipeFromDOM(‘.pms-galeria’);

// All images need to be loaded for this plugin to work so
// we end up waiting for the whole window to load in this example
$$(window).load(function () {
$$(document).ready(function(){
collage();
$$(‘.pms-galeria’).collageCaption();
});
});

// Here we apply the actual CollagePlus plugin
function collage() {
$$(‘.pms-galeria img’).css(‘display’, ‘block’);
$$(‘.pms-galeria’).removeWhitespace().collagePlus({
‘fadeSpeed’ : 2000,
‘targetHeight’ : 150,
‘effect’ : ‘default’,
‘direction’ : ‘vertical’,
‘allowPartialLastRow’ : true
});
};

// This is just for the case that the browser window is resized
var resizeTimer = null;
$$(window).bind(‘resize’, function() {
// hide all the images until we resize them
$$(‘.pms-galeria .Image_Wrapper’).css(“opacity”, 0);
// set a timer to re-apply the plugin
if (resizeTimer) clearTimeout(resizeTimer);
resizeTimer = setTimeout(collage, 200);
});

Sair da versão mobile