Re: [mapserver-users] UTFGRID and Mapscript

2018-02-15 Thread Moretti Edmar
.mn.us>: > Can you post what the layer definition **should** look like? It’s > possible the PHP code wasn’t updated. Perhaps there’s a workaround using > some of the OWS metadata since most output drivers will support a variety > of means of configuration. > > > > *From:* ma

[mapserver-users] UTFGRID and Mapscript

2018-02-01 Thread Moretti Edmar
Hi, Is it possible to create a LAYER with PHP-Mapscript to use UTFGRID? Another problem, when I save a Mapfile, via PHP-Mapscript, the specific parameters of UTFGRID disappear. Sounds like a bug to me. Can anybody help me? Thanks. --

Re: [mapserver-users] querybyattributes in version 7

2016-10-20 Thread Moretti Edmar
gt; querybyattibutes ( "col", "([col] > 0 AND [col] < 100)”) > > > > Paul > > > > > > > *From: *mapserver-users <mapserver-users-boun...@lists.osgeo.org> on > behalf of Moretti Edmar <edmar.more...@gmail.com> > *Date: *Wednesday, O

[mapserver-users] querybyattributes in version 7

2016-10-19 Thread Moretti Edmar
Hello. How to make a query using "querybyattributes" and operators such as AND, OR ? example: $Layer-> querybyattibutes ( "col", "col > 0 AND col < 100"). I'm using MapScript 7.x. In previous versions it worked, but in version 7 no longer works. --

Re: [mapserver-users] Remove CLUSTER definition

2016-02-16 Thread Moretti Edmar
I solved the problem of CLUSTER removal with the following code : $layer->updatefromstring("LAYER CLUSTER END END"); Here is an example of the operation : https://youtu.be/UtlvTWyoH2M 2016-02-03 23:14 GMT-02:00 Moretti Edmar <edmar.more...@gmail.com>: > I used your sugge

Re: [mapserver-users] Remove CLUSTER definition

2016-02-03 Thread Moretti Edmar
p; > cluster->region == NULL && > cluster->group.string == NULL && > cluster->filter.string == NULL > > Best regards, > > Tamas > > > > 2016-02-02 13:48 GMT+01:00 Moretti Edmar <edmar.more...@gmail.com>: > >>

[mapserver-users] Remove CLUSTER definition

2016-02-02 Thread Moretti Edmar
How do I remove the CLUSTER definition of a mapfile using PHP-MapScript? I try to use the code below, but without success $cluster = $layer->cluster; $cluster->updateFromString("GROUP END"); -- Para tirar dúvidas sobre o i3Geo utilize a lista:

Re: [mapserver-users] COMPOSITE opacity

2015-10-27 Thread Moretti Edmar
VER SUPPORTS=WFS_CLIENT SUPPORTS=WCS_SERVER SUPPORTS=SOS_SERVER SUPPORTS=FASTCGI SUPPORTS=THREADS SUPPORTS=GEOS INPUT=JPEG INPUT=POSTGIS INPUT=OGR INPUT=GDAL INPUT=SHAPEFILE 2015-10-27 6:28 GMT-02:00 thomas bonfort <thomas.bonf...@gmail.com>: > Can you try with the tbonfort/compfilter

[mapserver-users] COMPOSITE opacity

2015-10-26 Thread Moretti Edmar
Hi. I'm using version 7 of MapServer but I can not set the opacity of a layer. I've tried several ways: $layer->set ("opacity", 40); $layer->compositer->set ("opacity", 40); $layer->compositer->opacity = 40; $layer->updateFromString('LAYER COMPOSITE OPACITY 40 END END'); I still fail. Any