<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 &quot;Sorry, no imagery avaialable here&quot;. 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">&lt;<a href="mailto:qgis-developer-request@lists.osgeo.org">qgis-developer-request@lists.osgeo.org</a>&gt;</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 &#39;help&#39; 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 &quot;Re: Contents of Qgis-developer digest...&quot;<br><br><br>Today&#39;s Topics:<br><br>  1. Re: QBrowser &amp; 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 &lt;<a href="mailto:madmanwoo@gmail.com">madmanwoo@gmail.com</a>&gt;<br>Subject: Re: [Qgis-developer] QBrowser &amp; Customization<br>To: Radim Blazek &lt;<a href="mailto:radim.blazek@gmail.com">radim.blazek@gmail.com</a>&gt;<br>
Cc: qgis-developer &lt;<a href="mailto:qgis-developer@lists.osgeo.org">qgis-developer@lists.osgeo.org</a>&gt;<br>Message-ID: &lt;<a href="mailto:BANLkTik3%2BTVghg4TK53-Yv7Z6ovRi%2Bg10g@mail.gmail.com">BANLkTik3+TVghg4TK53-Yv7Z6ovRi+g10g@mail.gmail.com</a>&gt;<br>
Content-Type: text/plain; charset=&quot;iso-8859-1&quot;<br><br>For what it&#39;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 &lt;<a href="mailto:radim.blazek@gmail.com">radim.blazek@gmail.com</a>&gt;wrote:<br><br>&gt; Hi all,<br>&gt; we are ready (Martin Dobias and me) to merge browser-and-customization<br>
&gt; branch to master.<br>&gt;<br>&gt; You can get idea about features in that branch from some snapshots:<br>&gt; <a href="https://picasaweb.google.com/radim.blazek/QGISCustomizationQBrowser" target="_blank">https://picasaweb.google.com/radim.blazek/QGISCustomizationQBrowser</a><br>
&gt;<br>&gt; Briefly for people who were not present at last HF:<br>&gt;<br>&gt; Customization support allows users to disable (hide) parts of QGIS UI.<br>&gt; You can see example of minimal (maximal)  customization of version 1.7<br>
&gt; on the first snapshot. It is possible to disable almost any element of<br>&gt; UI: menus, sub menus, toolbars, tools, parts of dialogs, docked<br>&gt; windows and status bar items. UI elements can be switched on/off<br>
&gt; either in tree (second snapshot) or interactively in QGIS application<br>&gt; using customization select tool and clicking on UI elements.<br>&gt; Customization is saved in separate settings and can be saved/loaded<br>
&gt; to/from file. There is also support for customized packages. If<br>&gt; customization file is included in installation package, it is loaded<br>&gt; the first time QGIS is started.<br>&gt;<br>&gt; The QBrowser is intended to be a geographic data resources browser and<br>
&gt; manager. Now it is implemented as a stand alone application but we<br>&gt; would like to include it also in QGIS as alternative &#39;Add layer&#39;<br>&gt; dialog. Currently it is supported only by ogr, gdal and wms providers.<br>
&gt; At this moment QBrowser allows you to browse file system (where it<br>&gt; identifies known geographic data) and defined WMS servers (shared with<br>&gt; QGIS). If you select a layer you can view its metadata, preview and<br>
&gt; attributes (for vectors). It is possible to assign CRS to a layer (if<br>&gt; supported by provider), create a new shapefile and manage WMS servers.<br>&gt;<br>&gt;<br>&gt; We would like to discuss some issues with other developers before the<br>
&gt; merge:<br>&gt;<br>&gt; QBrowser:<br>&gt;<br>&gt; A1) All the data format specific functionality is implemented in<br>&gt; providers. Each provider which wants to show his data in browser must<br>&gt; implement 2 additional functions:<br>
&gt;    QGISEXTERN int dataCapabilities ()<br>&gt;    QGISEXTERN QgsDataItem * dataItem ( QString thePath, QgsDataItem*<br>&gt; parentItem )<br>&gt; The dataCapabilities function says what kind of data is supported<br>&gt; (File,Dir,Database,Net) so that e.g. WMS provider is not called on<br>
&gt; files or dirs. The dataItem() function returns QgsDataItem<br>&gt; representing either known geographic resources for given file system<br>&gt; path (gdal, ogr) or top level item (wms). It is important to design<br>&gt; providers interface well, because it may be implemented also by custom<br>
&gt; providers and we cannot change it easily in future (after release).<br>&gt; Please look at the QgsDataItem and its children methods and<br>&gt; implementation.<br>&gt;<br>&gt; A2) To get access from QBrowser to QgsWMSSourceSelect  via<br>
&gt; QgsDataItem, we had to move QgsWMSSourceSelect to wms provider. That<br>&gt; is beginning of providers specific UI migration to providers, which<br>&gt; has been discussed already before and generally accepted. To get<br>
&gt; select widget from main application we added in WMS provider another<br>&gt; function:<br>&gt;    QGISEXTERN QgsWMSSourceSelect * selectWidget( QWidget * parent,<br>&gt; Qt::WFlags fl )<br>&gt; Currently it is more or less a hack for QgisApp::addWmsLayer(). We<br>
&gt; should probably define some QgsSelect either with methods returning<br>&gt; URI or better signals for add new layer. Currently it is using<br>&gt; signals, because WMS selector can add more layers.<br>&gt;<br>&gt; Customization:<br>
&gt;<br>&gt; B1) The customization dialog tree is using Qt designer icons for<br>&gt; various widgets. It looks nice but it adds 192K to QGIS package. Is it<br>&gt; acceptable or do you prefer tree without icons?<br>&gt;<br>
&gt; B2) For dialogs, the interactive customization select tool can only be<br>&gt; activated by shortcut (because the dialogs are modal) which has to be<br>&gt; defined for main application. We have used Ctrl+M because it is not<br>
&gt; yet used and M is close to right Ctrl. May be we should spare such a<br>&gt; good key for better occasion?<br>&gt;<br>&gt; Please let us know your opinion or objections.<br>&gt;<br>&gt; Radim<br>&gt; _______________________________________________<br>
&gt; Qgis-developer mailing list<br>&gt; <a href="mailto:Qgis-developer@lists.osgeo.org">Qgis-developer@lists.osgeo.org</a><br>&gt; <a href="http://lists.osgeo.org/mailman/listinfo/qgis-developer" target="_blank">http://lists.osgeo.org/mailman/listinfo/qgis-developer</a><br>
&gt;<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 &lt;<a href="mailto:federico.fernandez@gmail.com">federico.fernandez@gmail.com</a>&gt;<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: &lt;BANLkTi=<a href="mailto:7AaqsFFbrqDsbmfjBoM0PD7WUhQ@mail.gmail.com">7AaqsFFbrqDsbmfjBoM0PD7WUhQ@mail.gmail.com</a>&gt;<br>
Content-Type: text/plain; charset=&quot;iso-8859-1&quot;<br><br>&gt;<br>&gt; Hi Federico,<br>&gt;<br>&gt; don&#39;t now that much about the cpp plugins, but is it really a cpp plugin<br>&gt; you need? What are your plans with the plugin?<br>
&gt;<br>&gt; Because it would be easier to make it a Python plugin I think (no fuss<br>&gt; with compiling etc etc).<br>&gt;<br>&gt; But if you really have to use cpp: try to ping somebody on IRC<br>&gt;<br>&gt; Regards,<br>
&gt;<br>&gt; Richard Duivenvoorde<br>&gt;<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 &lt;<a href="mailto:alexander.bruy@gmail.com">alexander.bruy@gmail.com</a>&gt;<br>Subject: [Qgis-developer] Re: QgsLabel: missed implementation of<br>
       setLabelFieldName<br>To: Qgis Developer List &lt;<a href="mailto:qgis-developer@lists.osgeo.org">qgis-developer@lists.osgeo.org</a>&gt;<br>Message-ID: &lt;BANLkTinAZdHUuhN=kV0opT8Np=<a href="mailto:KuVhJrOw@mail.gmail.com">KuVhJrOw@mail.gmail.com</a>&gt;<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&#39;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>