<div><br>Hi Everyone,</div>
<div> </div>
<div>I have build QGIS 1.6 using MS Visual Studio 2008 and Python 2.5. I have added OpenLayers 0.71 plugin to my application. I am able to see Google Street map. But when I select Google Hybrid, I could see only labels and inplace of maps I get message as "Sorry, no imagery avaialable here". Please help me for this.</div>
<div> </div>
<div>thanks in advance</div>
<div><br> </div>
<div class="gmail_quote">On Thu, May 19, 2011 at 9:30 PM, <span dir="ltr"><<a href="mailto:qgis-developer-request@lists.osgeo.org">qgis-developer-request@lists.osgeo.org</a>></span> wrote:<br>
<blockquote style="BORDER-LEFT: #ccc 1px solid; MARGIN: 0px 0px 0px 0.8ex; PADDING-LEFT: 1ex" class="gmail_quote">Send Qgis-developer mailing list submissions to<br> <a href="mailto:qgis-developer@lists.osgeo.org">qgis-developer@lists.osgeo.org</a><br>
<br>To subscribe or unsubscribe via the World Wide Web, visit<br> <a href="http://lists.osgeo.org/mailman/listinfo/qgis-developer" target="_blank">http://lists.osgeo.org/mailman/listinfo/qgis-developer</a><br>or, via email, send a message with subject or body 'help' to<br>
<a href="mailto:qgis-developer-request@lists.osgeo.org">qgis-developer-request@lists.osgeo.org</a><br><br>You can reach the person managing the list at<br> <a href="mailto:qgis-developer-owner@lists.osgeo.org">qgis-developer-owner@lists.osgeo.org</a><br>
<br>When replying, please edit your Subject line so it is more specific<br>than "Re: Contents of Qgis-developer digest..."<br><br><br>Today's Topics:<br><br> 1. Re: QBrowser & Customization (Nathan Woodrow)<br>
2. Re: Plugin Development on Windows (Federico J. Fern?ndez)<br> 3. Re: QgsLabel: missed implementation of setLabelFieldName<br> (Alexander Bruy)<br><br><br>----------------------------------------------------------------------<br>
<br>Message: 1<br>Date: Wed, 18 May 2011 19:36:07 +1000<br>From: Nathan Woodrow <<a href="mailto:madmanwoo@gmail.com">madmanwoo@gmail.com</a>><br>Subject: Re: [Qgis-developer] QBrowser & Customization<br>To: Radim Blazek <<a href="mailto:radim.blazek@gmail.com">radim.blazek@gmail.com</a>><br>
Cc: qgis-developer <<a href="mailto:qgis-developer@lists.osgeo.org">qgis-developer@lists.osgeo.org</a>><br>Message-ID: <<a href="mailto:BANLkTik3%2BTVghg4TK53-Yv7Z6ovRi%2Bg10g@mail.gmail.com">BANLkTik3+TVghg4TK53-Yv7Z6ovRi+g10g@mail.gmail.com</a>><br>
Content-Type: text/plain; charset="iso-8859-1"<br><br>For what it's worth, my opinion on B1) is we should have icons. Good UI is<br>important and icons help the user relate to items quicker more so then just<br>
a plain text based tree.<br><br>- Nathan<br><br>On Wed, May 18, 2011 at 7:23 PM, Radim Blazek <<a href="mailto:radim.blazek@gmail.com">radim.blazek@gmail.com</a>>wrote:<br><br>> Hi all,<br>> we are ready (Martin Dobias and me) to merge browser-and-customization<br>
> branch to master.<br>><br>> You can get idea about features in that branch from some snapshots:<br>> <a href="https://picasaweb.google.com/radim.blazek/QGISCustomizationQBrowser" target="_blank">https://picasaweb.google.com/radim.blazek/QGISCustomizationQBrowser</a><br>
><br>> Briefly for people who were not present at last HF:<br>><br>> Customization support allows users to disable (hide) parts of QGIS UI.<br>> You can see example of minimal (maximal) customization of version 1.7<br>
> on the first snapshot. It is possible to disable almost any element of<br>> UI: menus, sub menus, toolbars, tools, parts of dialogs, docked<br>> windows and status bar items. UI elements can be switched on/off<br>
> either in tree (second snapshot) or interactively in QGIS application<br>> using customization select tool and clicking on UI elements.<br>> Customization is saved in separate settings and can be saved/loaded<br>
> to/from file. There is also support for customized packages. If<br>> customization file is included in installation package, it is loaded<br>> the first time QGIS is started.<br>><br>> The QBrowser is intended to be a geographic data resources browser and<br>
> manager. Now it is implemented as a stand alone application but we<br>> would like to include it also in QGIS as alternative 'Add layer'<br>> dialog. Currently it is supported only by ogr, gdal and wms providers.<br>
> At this moment QBrowser allows you to browse file system (where it<br>> identifies known geographic data) and defined WMS servers (shared with<br>> QGIS). If you select a layer you can view its metadata, preview and<br>
> attributes (for vectors). It is possible to assign CRS to a layer (if<br>> supported by provider), create a new shapefile and manage WMS servers.<br>><br>><br>> We would like to discuss some issues with other developers before the<br>
> merge:<br>><br>> QBrowser:<br>><br>> A1) All the data format specific functionality is implemented in<br>> providers. Each provider which wants to show his data in browser must<br>> implement 2 additional functions:<br>
> QGISEXTERN int dataCapabilities ()<br>> QGISEXTERN QgsDataItem * dataItem ( QString thePath, QgsDataItem*<br>> parentItem )<br>> The dataCapabilities function says what kind of data is supported<br>> (File,Dir,Database,Net) so that e.g. WMS provider is not called on<br>
> files or dirs. The dataItem() function returns QgsDataItem<br>> representing either known geographic resources for given file system<br>> path (gdal, ogr) or top level item (wms). It is important to design<br>> providers interface well, because it may be implemented also by custom<br>
> providers and we cannot change it easily in future (after release).<br>> Please look at the QgsDataItem and its children methods and<br>> implementation.<br>><br>> A2) To get access from QBrowser to QgsWMSSourceSelect via<br>
> QgsDataItem, we had to move QgsWMSSourceSelect to wms provider. That<br>> is beginning of providers specific UI migration to providers, which<br>> has been discussed already before and generally accepted. To get<br>
> select widget from main application we added in WMS provider another<br>> function:<br>> QGISEXTERN QgsWMSSourceSelect * selectWidget( QWidget * parent,<br>> Qt::WFlags fl )<br>> Currently it is more or less a hack for QgisApp::addWmsLayer(). We<br>
> should probably define some QgsSelect either with methods returning<br>> URI or better signals for add new layer. Currently it is using<br>> signals, because WMS selector can add more layers.<br>><br>> Customization:<br>
><br>> B1) The customization dialog tree is using Qt designer icons for<br>> various widgets. It looks nice but it adds 192K to QGIS package. Is it<br>> acceptable or do you prefer tree without icons?<br>><br>
> B2) For dialogs, the interactive customization select tool can only be<br>> activated by shortcut (because the dialogs are modal) which has to be<br>> defined for main application. We have used Ctrl+M because it is not<br>
> yet used and M is close to right Ctrl. May be we should spare such a<br>> good key for better occasion?<br>><br>> Please let us know your opinion or objections.<br>><br>> Radim<br>> _______________________________________________<br>
> Qgis-developer mailing list<br>> <a href="mailto:Qgis-developer@lists.osgeo.org">Qgis-developer@lists.osgeo.org</a><br>> <a href="http://lists.osgeo.org/mailman/listinfo/qgis-developer" target="_blank">http://lists.osgeo.org/mailman/listinfo/qgis-developer</a><br>
><br>-------------- next part --------------<br>An HTML attachment was scrubbed...<br>URL: <a href="http://lists.osgeo.org/pipermail/qgis-developer/attachments/20110518/631af0cc/attachment-0001.html" target="_blank">http://lists.osgeo.org/pipermail/qgis-developer/attachments/20110518/631af0cc/attachment-0001.html</a><br>
<br>------------------------------<br><br>Message: 2<br>Date: Wed, 18 May 2011 08:48:38 -0300<br>From: Federico J. Fern?ndez <<a href="mailto:federico.fernandez@gmail.com">federico.fernandez@gmail.com</a>><br>Subject: Re: [Qgis-developer] Plugin Development on Windows<br>
To: <a href="mailto:richard@duif.net">richard@duif.net</a><br>Cc: <a href="mailto:qgis-developer@lists.osgeo.org">qgis-developer@lists.osgeo.org</a><br>Message-ID: <BANLkTi=<a href="mailto:7AaqsFFbrqDsbmfjBoM0PD7WUhQ@mail.gmail.com">7AaqsFFbrqDsbmfjBoM0PD7WUhQ@mail.gmail.com</a>><br>
Content-Type: text/plain; charset="iso-8859-1"<br><br>><br>> Hi Federico,<br>><br>> don't now that much about the cpp plugins, but is it really a cpp plugin<br>> you need? What are your plans with the plugin?<br>
><br>> Because it would be easier to make it a Python plugin I think (no fuss<br>> with compiling etc etc).<br>><br>> But if you really have to use cpp: try to ping somebody on IRC<br>><br>> Regards,<br>
><br>> Richard Duivenvoorde<br>><br><br>Yes, I need C++ because I have external dependencies.<br><br>Thanks.<br><br>--<br>federico<br>-------------- next part --------------<br>An HTML attachment was scrubbed...<br>
URL: <a href="http://lists.osgeo.org/pipermail/qgis-developer/attachments/20110518/89fc8154/attachment-0001.html" target="_blank">http://lists.osgeo.org/pipermail/qgis-developer/attachments/20110518/89fc8154/attachment-0001.html</a><br>
<br>------------------------------<br><br>Message: 3<br>Date: Wed, 18 May 2011 15:56:56 +0300<br>From: Alexander Bruy <<a href="mailto:alexander.bruy@gmail.com">alexander.bruy@gmail.com</a>><br>Subject: [Qgis-developer] Re: QgsLabel: missed implementation of<br>
setLabelFieldName<br>To: Qgis Developer List <<a href="mailto:qgis-developer@lists.osgeo.org">qgis-developer@lists.osgeo.org</a>><br>Message-ID: <BANLkTinAZdHUuhN=kV0opT8Np=<a href="mailto:KuVhJrOw@mail.gmail.com">KuVhJrOw@mail.gmail.com</a>><br>
Content-Type: text/plain; charset=UTF-8<br><br>Hi devs,<br><br>we found that in QgsLabel class there is missed implementation<br>for setLabelFieldName method. This method listed in header file<br>src/core/qgslabel.h (line 163) but not listed in .cpp file. Also this<br>
method missed from Python bindings.<br><br>This is a bit confusing, regardiong to the API docs this method<br>exists but in reality it doesn't. May be it is better to remove it<br>completely?<br><br>Thanks<br><br>--<br>
Alexander Bruy<br><br><br>------------------------------<br><br>_______________________________________________<br>Qgis-developer mailing list<br><a href="mailto:Qgis-developer@lists.osgeo.org">Qgis-developer@lists.osgeo.org</a><br>
<a href="http://lists.osgeo.org/mailman/listinfo/qgis-developer" target="_blank">http://lists.osgeo.org/mailman/listinfo/qgis-developer</a><br><br><br>End of Qgis-developer Digest, Vol 63, Issue 34<br>**********************************************<br>
</blockquote></div><br>