Re: [Qgis-developer] QGIS MapServer and jQuery OpenLayer Client for Mobile Devices

2011-06-15 Thread Andreas Neumann
Hi Noli, QGIS server and QGIS webclient can be regarded as two separate projects. While we try to integrate the two better, there is no reason why you cannot develop something in parallel with a different framework. The reason why I went with ExtJS, GeoExt and OpenLayers is that there is a

Re: [Qgis-developer] qgis-mapserver: user authentication

2011-06-15 Thread Marco Hugentobler
Hi all After some thinking and discussions, it seems to me integrating the authentication directly in QGIS server does not have the same flexibility compared to a component that sits between webserver and WMS. E.g. if there is a WFS integration into QGIS webclient (as we discussed in

Re: [Qgis-developer] QGIS MapServer and jQuery OpenLayer Client for Mobile Devices

2011-06-15 Thread Noli Sicad
Hi Andreas, Thanks again for your reply. The reason why I went with ExtJS, GeoExt and OpenLayers is that there is a community of governmental organizations around these frameworks in Switzerland, where I work. This way we can share costs and knowledge. For sure I will go for ExtJS, GeoExt

Re: [Qgis-developer] qgis-mapserver: user authentication

2011-06-15 Thread Paolo Cavallini
Il giorno mer, 15/06/2011 alle 08.56 +0200, Marco Hugentobler ha scritto: I'm not experienced with the software listed in Pirmins mail (e.g. if everything requires a Java server). If there is a lightweight component for access restriction, it could be an approach to bundle it together with

Re: [Qgis-developer] qgis-mapserver: user authentication

2011-06-15 Thread Paolo Cavallini
My first, *very* quick, review: Il giorno mar, 14/06/2011 alle 23.07 +0200, Pirmin Kalberer ha scritto: I don't think that authentication should be built into a WMS server. There are many solutions around, doing authentication and authorisation transparently on top of a WMS server: *

Re: [Qgis-developer] Re: python plugin and layer properties window

2011-06-15 Thread Camilo Polymeris
On Thu, Jun 9, 2011 at 5:18 AM, Michael Pfeiffer michael.pfeif...@bd.so.ch wrote: Hi everybody, no hints for this problem? I have the same problem with the mapcomposer window. When closing the mapcomposer window I want to get the close signal or close event of the window. I need this

Re: [Qgis-developer] qgis-mapserver: user authentication

2011-06-15 Thread Pirmin Kalberer
Paolo, My quick comments... Am Mittwoch, 15. Juni 2011, um 09.17:11 schrieb Paolo Cavallini: My first, *very* quick, review: Il giorno mar, 14/06/2011 alle 23.07 +0200, Pirmin Kalberer ha scritto: I don't think that authentication should be built into a WMS server. There are many

[Qgis-developer] Annoying bug found in QGIS 1.7 (not present in 1.6)

2011-06-15 Thread luca_manganelli
Hi, I wrote a PYTHON plugin that does a simple feature select on a QgsVectorLayer: pnt = coordinates of mouse click on map myLayer= QgsVectorLayer Object tolerance = 1 rectangle = QgsRectangle() rectangle.setXMinimum (pnt.x() - tolerance) rectangle.setXMaximum (pnt.x() + tolerance)

Re: [Qgis-developer] QGIS MapServer and jQuery OpenLayer Client for Mobile Devices

2011-06-15 Thread Pirmin Kalberer
Noli, Here is an example of using OpenLayers with QGIS server: http://live.osgeo.org/en/quickstart/openlayers_quickstart.html Pirmin Am Mittwoch, 15. Juni 2011, um 03.10:36 schrieb Noli Sicad: Hi Pimin, Yes, I have been working on it and I heavily modified even to support Spatialite query

Re: [Qgis-developer] QGIS MapServer and jQuery OpenLayer Client for Mobile Devices

2011-06-15 Thread Noli Sicad
Pirmin. Thanks a lot. ~~ var wms = new OpenLayers.Layer.WMS( WMS, http://localhost/cgi-bin/qgis_mapserv.fcgi;, { 'map': '/usr/local/share/qgis/QGIS-NaturalEarth-Example.qgs', 'layers':'HYP_50M_SR_W,10m_lakes,10m_rivers_lake_centerline'} ); map.addLayer(wms);