You can subscribe to this list here.
2009 |
Jan
|
Feb
|
Mar
(17) |
Apr
|
May
|
Jun
(6) |
Jul
(10) |
Aug
(16) |
Sep
(4) |
Oct
(16) |
Nov
(8) |
Dec
(4) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2010 |
Jan
(5) |
Feb
(28) |
Mar
(35) |
Apr
(20) |
May
(13) |
Jun
(24) |
Jul
(14) |
Aug
(8) |
Sep
(19) |
Oct
(13) |
Nov
(16) |
Dec
(8) |
2011 |
Jan
(18) |
Feb
(10) |
Mar
(16) |
Apr
(14) |
May
(21) |
Jun
(20) |
Jul
(12) |
Aug
(18) |
Sep
(11) |
Oct
(1) |
Nov
(1) |
Dec
(1) |
2012 |
Jan
(1) |
Feb
(2) |
Mar
(6) |
Apr
(1) |
May
|
Jun
|
Jul
(4) |
Aug
(4) |
Sep
|
Oct
|
Nov
|
Dec
|
From: Lukas J. <luk...@de...> - 2010-07-15 12:31:01
|
Hello Edwin I just completed my implementation with clickable wmslayers trough WmsGetFeatureInfo. I found that there exists a way to request the data in a machine friendly way (GML) by setting infoFormat to "application/vnd.ogc.gml". This means that I get VectorFeatures straight from the request and therefore can reuse my exists WFS popuprenderers to render popups. No need for HTML templating :) While working with the implementation I added setDrilldown, setLayers and setUrls to WmsGetFeatureInfoOptions as well as getFeatures in the GetFeatureInfoListener class. These changes allow me to decide exactly what layers to query and they don't have to be served by the same server, which is the case when using using drilldown. I'm quite sure that drilldown and setLayers where added in OL 2.9, but I hope it's ok that I wrapped them as well. I'd like some feedback on the methods handling arrays (setLayers and getFeatures) as this is my first time using wrapped arrays in gwt-ol. Is this the way to do it or are there any better patterns? /Lukas -----Ursprungligt meddelande----- Från: Lukas Johansson [mailto:luk...@de...] Skickat: den 17 juni 2010 10:18 Till: Edwin Commandeur Kopia: gwt...@li... Ämne: Re: [Gwt-openlayers-users] Producing clickable layers from WMS Thanx I've totally missed that. I believed that I could request the data in a machine friendly format (for e.g. json). But it must be possible to create a template which will be easier to parse in my app code. Thank you! -----Ursprungligt meddelande----- Från: Edwin Commandeur [mailto:com...@gm...] Skickat: den 17 juni 2010 09:19 Till: Lukas Johansson Kopia: Couzic Mikael; Philipp Verhoeven; gwt...@li... Ämne: Re: [Gwt-openlayers-users] Producing clickable layers from WMS Hi Lukas, In the code in trunk there is a WMSGetFeatureInfo example, similar to the example you reference. It uses a simple proxy included in the latest GWT-OL from trunk. With WMSGetFeatureInfo you have to be aware that there is no standard for WMSGetFeatureInfo output. In GeoServer you can define templates for this output, see here: http://geoserver.org/display/GEOSDOC/GetFeatureInfo+templates It would be great if you want to contribute enhancements back to GWT-OL. Greetings, Edwin On 17 June 2010 08:55, Lukas Johansson <luk...@de...> wrote: > I will within a two weeks add this functionality to our app, (we're > currently using WFS but need to handle larger amount of data which get > impossible to load with WFS). > > The plan is to use the technique shown in > http://openlayers.org/dev/examples/getfeatureinfo-popup.html to be able to > produce popups for WMS-layers as well. > > I'm not sure if gwt-ol implements all that I need to use, but if not, I will > implement those parts myself and send them back as a patch. > > /Lukas > > Från: Couzic Mikael [mailto:mik...@gm...] > Skickat: den 16 juni 2010 13:21 > Till: Philipp Verhoeven > Kopia: gwt...@li... > Ämne: Re: [Gwt-openlayers-users] Producing clickable layers from WMS > > > > Hi Philipp, > > I needed this kind of functionnality, but I didn't use WMS, just WFS. > The idea is to get your polygons from the WFS protocol, and load them into > your VectorLayer. If your polygons are static, you can even use GML files. > But I'm not sure that's what you're looking for, as this solution implies > the WMS is completely independant from the polygons. > > Ask me if you want more info, I could even provide you with sample code if > you want. > > Cheers, > Mikael > > 2010/6/16 Philipp Verhoeven <ve...@go...> > > Hi, > > I'm looking for a solution to make any wms layer clickable. That means that > there should be areas - which are bounded by a polygon - that show an > information bubble when hovering over. > Does anyone have experience in this field? As far as I know gwt-openlayers > does not support this feature. > > I found a suitable example for openlayers using a WFS: > http://openlayers.org/dev/examples/getfeature-wfs.html > > It is possible to add the needed funcionality and build the .jar by myself, > right?! > > I'm thankful for any idea or comment on this. > > Cheers, > Philipp > > ------------------------------------------------------------------------------ > ThinkGeek and WIRED's GeekDad team up for the Ultimate > GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the > lucky parental unit. See the prize list and enter to win: > http://p.sf.net/sfu/thinkgeek-promo > _______________________________________________ > Gwt-openlayers-users mailing list > Gwt...@li... > https://lists.sourceforge.net/lists/listinfo/gwt-openlayers-users > > > > ------------------------------------------------------------------------------ > ThinkGeek and WIRED's GeekDad team up for the Ultimate > GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the > lucky parental unit. See the prize list and enter to win: > http://p.sf.net/sfu/thinkgeek-promo > _______________________________________________ > Gwt-openlayers-users mailing list > Gwt...@li... > https://lists.sourceforge.net/lists/listinfo/gwt-openlayers-users > > ------------------------------------------------------------------------------ ThinkGeek and WIRED's GeekDad team up for the Ultimate GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the lucky parental unit. See the prize list and enter to win: http://p.sf.net/sfu/thinkgeek-promo _______________________________________________ Gwt-openlayers-users mailing list Gwt...@li... https://lists.sourceforge.net/lists/listinfo/gwt-openlayers-users |
From: Edwin C. <com...@gm...> - 2010-07-07 11:20:53
|
Hi Chris, For now, I'd prefer if you send me the code as a patch created from mercurial (unified diff) so I can review it and merge it in trunk. If you keep working on GWT-OL and have more patches then I can add you as a developer. Greetings, Edwin On 6 July 2010 20:21, Christian Tzolov <chr...@gm...> wrote: > Hi all, > While playing with the GWT-OL I've implemented some methods and classes > still missing in GWT-OL. For instance the 'trasform' and the > 'intersectsBounds' methods in the Bounds class or the basic implementation > for the HttpProtocol (e.g. OpenLayers.Protocol.HTTP). > Is there a mechanism I can contribute this (and future) code back to the > project? > Cheers, > Chris > ------------------------------------------------------------------------------ > This SF.net email is sponsored by Sprint > What will you do first with EVO, the first 4G phone? > Visit sprint.com/first -- http://p.sf.net/sfu/sprint-com-first > _______________________________________________ > Gwt-openlayers-users mailing list > Gwt...@li... > https://lists.sourceforge.net/lists/listinfo/gwt-openlayers-users > > |
From: Christian T. <chr...@gm...> - 2010-07-06 18:22:05
|
Hi all, While playing with the GWT-OL I've implemented some methods and classes still missing in GWT-OL. For instance the 'trasform' and the 'intersectsBounds' methods in the Bounds class or the basic implementation for the HttpProtocol (e.g. OpenLayers.Protocol.HTTP). Is there a mechanism I can contribute this (and future) code back to the project? Cheers, Chris |
From: Edwin C. <com...@gm...> - 2010-07-02 14:48:33
|
Hi Giuseppe, Sounds great. Does that mean GWT-OL is used within GeoSDI? I would be glad to add you as developers to the project. Do you have SourceForge accounts? I need the SF usernames to grant you developer access :). Greetings, Edwin On 2 July 2010 12:34, Giuseppe La Scaleia <giu...@ge...> wrote: > Hi all, > First, great job. My colleague(Francesco Izzi) and I have implemented the > part for the management of GML and I personally have added something to > WMSGetFeatureInfo for managing cached Layers. I prepared a Maven project > with GWT-OL and the possibility to start the application with mvn jetty: > run. > Francesco and I work at the CNR IMAA and we develop for Civil Protection > Dept. and we ask the opportunity to commit the code that we wrote and join > the development team to add more features to the project. > Regards Giuseppe La Scaleia > > -- > Giuseppe La Scaleia > CNR - IMAA > geoSDI - NSDI > Sviluppo Software > > C.da S. Loja > 85050 Tito Scalo - POTENZA (PZ) > Italia > > phone: +39 0971427305 > fax: +39 0971 427271 > mob: +39 3804697436 > mail: giu...@ge... > skype: glascaleia > > web: http://www.geosdi.org > > > > ------------------------------------------------------------------------------ > This SF.net email is sponsored by Sprint > What will you do first with EVO, the first 4G phone? > Visit sprint.com/first -- http://p.sf.net/sfu/sprint-com-first > _______________________________________________ > Gwt-openlayers-users mailing list > Gwt...@li... > https://lists.sourceforge.net/lists/listinfo/gwt-openlayers-users > > |
From: Giuseppe La S. <giu...@ge...> - 2010-07-02 10:34:35
|
Hi all, First, great job. My colleague(Francesco Izzi) and I have implemented the part for the management of GML and I personally have added something to WMSGetFeatureInfo for managing cached Layers. I prepared a Maven project with GWT-OL and the possibility to start the application with mvn jetty: run. Francesco and I work at the CNR IMAA and we develop for Civil Protection Dept. and we ask the opportunity to commit the code that we wrote and join the development team to add more features to the project. Regards Giuseppe La Scaleia -- Giuseppe La Scaleia CNR - IMAA geoSDI - NSDI Sviluppo Software C.da S. Loja 85050 Tito Scalo - POTENZA (PZ) Italia phone: +39 0971427305 fax: +39 0971 427271 mob: +39 3804697436 mail: giu...@ge... skype: glascaleia web: http://www.geosdi.org |
From: Couzic M. <mik...@gm...> - 2010-07-01 10:36:00
|
Hi Vanessa, If you feel like you should use OpenLayers.Control.Button, then just implement it in GWT-OpenLayers ! That's how I became a contributor, I needed some functionnality that wasn't implemented, so I just did it myself. It's not that hard, and you can always ask for help if you need. I have 2 advices to help you start : - develop a working example using OpenLayers in JavaScript. It will help you get a grasp of the API. It doesn't have to be complicated, just do something like this : http://funmap.co.uk/openlayers-test/buttons.html - study an existing class of GWT-OL. Choose one that is as similar as possible to the one you want to implement. Please do not hesitate to ask for help if needed. Mikael Couzic 2010/7/1 Towers, Vanessa <Van...@ds...> > Hi Brad, > > I am also using Ext GWT for my UI widgets and I agree the toolbar would be > an alternative. In fact I am doing something similar currently. It's not > exactly what I am after as I think it looks a little strange having a set of > default buttons on the map already (such as the editing toolbar, hand tool, > zoombox - which are tied to the map) then another set in an external toolbar > (which also have functionality tied to the map). But it seems it might be > the only sensible option at this point. Maybe it would be easier to move > everything to an Ext GWT toolbar so they are all in the same place? > > Thanks, > > Vanessa > > > Date: Wed, 30 Jun 2010 08:36:18 -0400 > > From: Brad King <br...@gm...> > > Subject: Re: [Gwt-openlayers-users] OpenLayers.Control.Button > > [SEC=UNCLASSIFIED] > > To: gwt...@li... > > Message-ID: > > <AAN...@ma...> > > Content-Type: text/plain; charset="iso-8859-1" > > Hello, I was just wondering if this really has to be part of the map panel. > > I've been using Ext GWT for UI widgets, and they have a nice toolbar. You could place it just above the map panel in an overall container panel or layout. > > Brad > > On Wed, Jun 30, 2010 at 4:12 AM, Towers, Vanessa < Van...@ds...> wrote: > > > Hi, > > > > > > I noticed OpenLayers.Control.Button is yet to be supported in the > > > gwt-openlayers project. I'm currently working with the latest snapshot > > > openlayers_gwt-0.5-SNAPSHOT.jar. > > > > > > I really need to be able to put simple buttons in a custom toolbar > > > within the map panel. It's not something I've done in openlayers > > > previously. From what I can see this could be implemented using > > > OpenLayers.Control.Button if it was supported. I was wondering if this > > > was something I could easily implement myself and if so what would be > > > involved if someone could provide some guidance? > > > > > > Cheers, > > > > > > Vanessa > > > > > > IMPORTANT: This email remains the property of the Australian Defence > > > Organisation and is subject to the jurisdiction of section 70 of the > > > CRIMES ACT 1914. If you have received this email in error, you are > > > requested to contact the sender and delete the email. > > > > > > > > > > > > ---------------------------------------------------------------------- > > > -------- This SF.net email is sponsored by Sprint What will you do > > > first with EVO, the first 4G phone? > > > Visit sprint.com/first -- > *http://p.sf.net/sfu/sprint-com-first* <http://p.sf.net/sfu/sprint-com-first> > > > > _______________________________________________ > > > Gwt-openlayers-users mailing list > > > Gwt...@li... > > > > *https://lists.sourceforge.net/lists/listinfo/gwt-openlayers-users* <https://lists.sourceforge.net/lists/listinfo/gwt-openlayers-users> > > > > > > > > > > > > ------------------------------------------------------------------------------ > This SF.net email is sponsored by Sprint > What will you do first with EVO, the first 4G phone? > Visit sprint.com/first -- http://p.sf.net/sfu/sprint-com-first > _______________________________________________ > Gwt-openlayers-users mailing list > Gwt...@li... > https://lists.sourceforge.net/lists/listinfo/gwt-openlayers-users > > |
From: Towers, V. <Van...@ds...> - 2010-07-01 02:22:31
|
Hi Brad, I am also using Ext GWT for my UI widgets and I agree the toolbar would be an alternative. In fact I am doing something similar currently. It's not exactly what I am after as I think it looks a little strange having a set of default buttons on the map already (such as the editing toolbar, hand tool, zoombox - which are tied to the map) then another set in an external toolbar (which also have functionality tied to the map). But it seems it might be the only sensible option at this point. Maybe it would be easier to move everything to an Ext GWT toolbar so they are all in the same place? Thanks, Vanessa Date: Wed, 30 Jun 2010 08:36:18 -0400 From: Brad King <br...@gm...> Subject: Re: [Gwt-openlayers-users] OpenLayers.Control.Button [SEC=UNCLASSIFIED] To: gwt...@li... Message-ID: <AAN...@ma...> Content-Type: text/plain; charset="iso-8859-1" Hello, I was just wondering if this really has to be part of the map panel. I've been using Ext GWT for UI widgets, and they have a nice toolbar. You could place it just above the map panel in an overall container panel or layout. Brad On Wed, Jun 30, 2010 at 4:12 AM, Towers, Vanessa < Van...@ds...> wrote: > Hi, > > I noticed OpenLayers.Control.Button is yet to be supported in the > gwt-openlayers project. I'm currently working with the latest snapshot > openlayers_gwt-0.5-SNAPSHOT.jar. > > I really need to be able to put simple buttons in a custom toolbar > within the map panel. It's not something I've done in openlayers > previously. From what I can see this could be implemented using > OpenLayers.Control.Button if it was supported. I was wondering if this > was something I could easily implement myself and if so what would be > involved if someone could provide some guidance? > > Cheers, > > Vanessa > > IMPORTANT: This email remains the property of the Australian Defence > Organisation and is subject to the jurisdiction of section 70 of the > CRIMES ACT 1914. If you have received this email in error, you are > requested to contact the sender and delete the email. > > > > ---------------------------------------------------------------------- > -------- This SF.net email is sponsored by Sprint What will you do > first with EVO, the first 4G phone? > Visit sprint.com/first -- http://p.sf.net/sfu/sprint-com-first <http://p.sf.net/sfu/sprint-com-first> > _______________________________________________ > Gwt-openlayers-users mailing list > Gwt...@li... > https://lists.sourceforge.net/lists/listinfo/gwt-openlayers-users <https://lists.sourceforge.net/lists/listinfo/gwt-openlayers-users> > > |
From: Brad K. <br...@gm...> - 2010-06-30 12:44:36
|
Hello, I was just wondering if this really has to be part of the map panel. I've been using Ext GWT for UI widgets, and they have a nice toolbar. You could place it just above the map panel in an overall container panel or layout. Brad On Wed, Jun 30, 2010 at 4:12 AM, Towers, Vanessa < Van...@ds...> wrote: > Hi, > > I noticed OpenLayers.Control.Button is yet to be supported in > the gwt-openlayers project. I'm currently working with the latest snapshot > openlayers_gwt-0.5-SNAPSHOT.jar. > > I really need to be able to put simple buttons in a custom toolbar within > the map panel. It's not something I've done in openlayers previously. From > what I can see this could be implemented using OpenLayers.Control.Button if > it was supported. I was wondering if this was something I could easily > implement myself and if so what would be involved if someone could provide > some guidance? > > Cheers, > > Vanessa > > IMPORTANT: This email remains the property of the Australian Defence > Organisation and is subject to the jurisdiction of section 70 of the CRIMES > ACT 1914. If you have received this email in error, you are requested to > contact the sender and delete the email. > > > > ------------------------------------------------------------------------------ > This SF.net email is sponsored by Sprint > What will you do first with EVO, the first 4G phone? > Visit sprint.com/first -- http://p.sf.net/sfu/sprint-com-first > _______________________________________________ > Gwt-openlayers-users mailing list > Gwt...@li... > https://lists.sourceforge.net/lists/listinfo/gwt-openlayers-users > > |
From: Towers, V. <Van...@ds...> - 2010-06-30 08:13:10
|
Hi, I noticed OpenLayers.Control.Button is yet to be supported in the gwt-openlayers project. I'm currently working with the latest snapshot openlayers_gwt-0.5-SNAPSHOT.jar. I really need to be able to put simple buttons in a custom toolbar within the map panel. It's not something I've done in openlayers previously. From what I can see this could be implemented using OpenLayers.Control.Button if it was supported. I was wondering if this was something I could easily implement myself and if so what would be involved if someone could provide some guidance? Cheers, Vanessa IMPORTANT: This email remains the property of the Australian Defence Organisation and is subject to the jurisdiction of section 70 of the CRIMES ACT 1914. If you have received this email in error, you are requested to contact the sender and delete the email. |
From: Jon B. <jon...@go...> - 2010-06-29 13:29:32
|
Hi again, I've solved my error problem, now I've discovered that my map is there... but it has a height of 0px. I've tried the suggestions here but for some reason I always get the same result. Here is my code: VLayout mapLayout = new VLayout(); mapLayout.setWidth100(); mapLayout.setHeight100(); mapLayout.setBackgroundColor("#FFFF99"); mapWidget = createMap(); HLayout mapPanel = new HLayout(); mapPanel.setWidth100(); mapPanel.setHeight100(); mapPanel.addChild(mapWidget); mapLayout.addMember(mapPanel); I'm at a loss as to how I should fix this... any help would be appreciated! Thanks, Jon On 21 June 2010 16:08, Jon Britton <jon...@go...> wrote: > Hi guys, thanks for the swift replies. > > I don't think I've got a problem with SmartGWT after all, GWT-Openlayers > has just decided to break for me! I've started a new Eclipse project and > now can't get it working at all. I have no idea what's changed, but I get > the following error: > > 16:07:56.995 [ERROR] [testgwt] Unable to load module entry point class > org.test.client.Testgwt (see associated exception for details) > com.google.gwt.core.client.JavaScriptException: (NOT_FOUND_ERR): > NOT_FOUND_ERR: DOM Exception 8 > code: 8 > __gwt_ObjectId: 15 > INDEX_SIZE_ERR: 1 > DOMSTRING_SIZE_ERR: 2 > HIERARCHY_REQUEST_ERR: 3 > WRONG_DOCUMENT_ERR: 4 > INVALID_CHARACTER_ERR: 5 > NO_DATA_ALLOWED_ERR: 6 > NO_MODIFICATION_ALLOWED_ERR: 7 > NOT_FOUND_ERR: 8 > NOT_SUPPORTED_ERR: 9 > INUSE_ATTRIBUTE_ERR: 10 > INVALID_STATE_ERR: 11 > SYNTAX_ERR: 12 > INVALID_MODIFICATION_ERR: 13 > NAMESPACE_ERR: 14 > INVALID_ACCESS_ERR: 15 > VALIDATION_ERR: 16 > TYPE_MISMATCH_ERR: 17 > SECURITY_ERR: 18 > NETWORK_ERR: 19 > ABORT_ERR: 20 > URL_MISMATCH_ERR: 21 > QUOTA_EXCEEDED_ERR: 22 > at > com.google.gwt.dev.shell.BrowserChannelServer.invokeJavascript(BrowserChannelServer.java:195) > at > com.google.gwt.dev.shell.ModuleSpaceOOPHM.doInvoke(ModuleSpaceOOPHM.java:120) > at > com.google.gwt.dev.shell.ModuleSpace.invokeNative(ModuleSpace.java:507) > at > com.google.gwt.dev.shell.ModuleSpace.invokeNativeObject(ModuleSpace.java:264) > at > com.google.gwt.dev.shell.JavaScriptHost.invokeNativeObject(JavaScriptHost.java:91) > at com.google.gwt.dom.client.Node$.appendChild$(Node.java) > at com.google.gwt.user.client.DOM.appendChild(DOM.java:60) > at com.google.gwt.user.client.ui.ComplexPanel.add(ComplexPanel.java:90) > at > com.google.gwt.user.client.ui.AbsolutePanel.add(AbsolutePanel.java:75) > at org.test.client.Testgwt.onModuleLoad(Testgwt.java:56) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at > sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) > at > sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) > at java.lang.reflect.Method.invoke(Method.java:597) > at com.google.gwt.dev.shell.ModuleSpace.onLoad(ModuleSpace.java:369) > at > com.google.gwt.dev.shell.OophmSessionHandler.loadModule(OophmSessionHandler.java:185) > at > com.google.gwt.dev.shell.BrowserChannelServer.processConnection(BrowserChannelServer.java:380) > at > com.google.gwt.dev.shell.BrowserChannelServer.run(BrowserChannelServer.java:222) > at java.lang.Thread.run(Thread.java:619) > > > > On 21 June 2010 14:43, "Cerávolo, Rafael V.B." <raf...@gm...>wrote: > >> Hi Jon, >> >> I'm using SmartGWT with OpenLayers and it works (almost) fine! >> >> I'm using with a VLayout, but I suppose it will work with HLayout as well. >> >> >> I'm doing this: >> >> Layout v_layoutMapa = new VLayout(); >> this.addMember(v_layoutMapa); >> v_layoutMapa.addMember(m_mapWidget); >> v_layoutMapa.setWidth100(); >> v_layoutMapa.setHeight("*"); >> >> where "this" refers to a class that inherits from VLayout. >> >> But you will have some issues using with SmartGwt (well, actually, I >> didn't tested these issues without Smart to see if it is a SmartGwt problem >> or a OpenLayers problem): >> >> - When showing maps inside Tabs (the main tabs like in the SmartGwt >> showcase), switching from a tab with a map to another tab, the Features >> added to the map keep visible in the other tabs!!! (I solved this by hiding >> the map when the OnTabChange event is triggered) >> - Sometimes a "ghost" feature (duplicated from another existing >> feature) appears on the map when dragging it. Using a Timer for delaying the >> draw of the feature solved in some cases, but this problem is still not >> solved 100%. >> >> Regards, >> Rafael Ceravolo >> >> >> >> >> On 21/06/2010 08:16, Jon Britton wrote: >> >> Hi, >> >> I'm having trouble getting OpenLayers to work with SmartGWT. I've got a >> Smart GWT HLayout and I'm trying to add a MapWidget to it, but the map >> doesn't appear at all and I get no errors. >> >> Has anybody else been successful in using GWT-OpenLayers and SmartGWT >> together? >> >> Thanks, >> >> Jon >> >> >> ------------------------------------------------------------------------------ >> ThinkGeek and WIRED's GeekDad team up for the Ultimate >> GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the >> lucky parental unit. See the prize list and enter to win: >> http://p.sf.net/sfu/thinkgeek-promo >> >> >> _______________________________________________ >> Gwt-openlayers-users mailing lis...@li...https://lists.sourceforge.net/lists/listinfo/gwt-openlayers-users >> >> >> >> >> ------------------------------------------------------------------------------ >> ThinkGeek and WIRED's GeekDad team up for the Ultimate >> GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the >> lucky parental unit. See the prize list and enter to win: >> http://p.sf.net/sfu/thinkgeek-promo >> _______________________________________________ >> Gwt-openlayers-users mailing list >> Gwt...@li... >> https://lists.sourceforge.net/lists/listinfo/gwt-openlayers-users >> >> > |
From: Edwin C. <com...@gm...> - 2010-06-28 09:02:45
|
Hi Lukas, Thanks for the feedback on your own question. Great to hear that upgrading worked smoothly. Greetings, Edwin On 28 June 2010 10:35, Lukas Johansson <luk...@de...> wrote: > Answering my own question. I upgraded to 2.9.1 in our application which uses multiple baselayers, multiple WFSlayers, editing trough WFS and a whole lot other things. I haven't yet found anything that got broken other than a css class in OL that changed name. > /Lukas > > -----Ursprungligt meddelande----- > Från: Lukas Johansson [mailto:luk...@de...] > Skickat: den 9 juni 2010 16:36 > Till: gwt...@li... > Ämne: [Gwt-openlayers-users] Experience using OpenLayers 2.9? > > Anyone tested using 2.9 yet? Are there anything broken or does it work > seamless? > /Lukas > > ------------------------------------------------------------------------------ > ThinkGeek and WIRED's GeekDad team up for the Ultimate > GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the > lucky parental unit. See the prize list and enter to win: > http://p.sf.net/sfu/thinkgeek-promo > _______________________________________________ > Gwt-openlayers-users mailing list > Gwt...@li... > https://lists.sourceforge.net/lists/listinfo/gwt-openlayers-users > > > > ------------------------------------------------------------------------------ > This SF.net email is sponsored by Sprint > What will you do first with EVO, the first 4G phone? > Visit sprint.com/first -- http://p.sf.net/sfu/sprint-com-first > _______________________________________________ > Gwt-openlayers-users mailing list > Gwt...@li... > https://lists.sourceforge.net/lists/listinfo/gwt-openlayers-users > |
From: Lukas J. <luk...@de...> - 2010-06-28 08:35:58
|
Answering my own question. I upgraded to 2.9.1 in our application which uses multiple baselayers, multiple WFSlayers, editing trough WFS and a whole lot other things. I haven't yet found anything that got broken other than a css class in OL that changed name. /Lukas -----Ursprungligt meddelande----- Från: Lukas Johansson [mailto:luk...@de...] Skickat: den 9 juni 2010 16:36 Till: gwt...@li... Ämne: [Gwt-openlayers-users] Experience using OpenLayers 2.9? Anyone tested using 2.9 yet? Are there anything broken or does it work seamless? /Lukas ------------------------------------------------------------------------------ ThinkGeek and WIRED's GeekDad team up for the Ultimate GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the lucky parental unit. See the prize list and enter to win: http://p.sf.net/sfu/thinkgeek-promo _______________________________________________ Gwt-openlayers-users mailing list Gwt...@li... https://lists.sourceforge.net/lists/listinfo/gwt-openlayers-users |
From: Lukas J. <luk...@de...> - 2010-06-23 08:19:29
|
No one experienced or been able to reproduce this issue? I'm grateful for any help I can get. /Lukas -----Ursprungligt meddelande----- Från: Lukas Johansson [mailto:luk...@de...] Skickat: den 18 juni 2010 10:41 Till: gwt...@li... Ämne: [Gwt-openlayers-users] Safari and multiple urls for a WMS baselayer I'm having a issue with Safari (4.0.5 on windows). When I define a WMSlayer with a single url only it works fine, but when initiate it with an array of url:s the urls: are combined into a string where each url is separated with an ',' and this string is then used as the url to the WMS server. The constructor I call is: WMS.java public WMS(String name, String[] urls, WMSParams params, WMSOptions layerParams) { this(WMSImpl.create(name, new JStringArray(urls).getJSObject(), params.getJSObject(), layerParams.getJSObject())); } I've looked into JstringArray() and it simply copies all values from urls to a JStringArray so no problem there. In WMSImpl there is a comment about the Object/Array problem and this is solved by once more copying the values from the new array, seems ok. The new value is then passed to OpenLayers.Layer.WMS. So the bottom line is that I have no idea why this works in all mayor browsers except Safari. When I only use 1 url there is no problem. We have another OpenLayers (plain OpenLayers, non-GWT) application which also uses multiple url and that app does not show this symtoms. Anyone got a clue? ------------------------------------------------------------------------------ ThinkGeek and WIRED's GeekDad team up for the Ultimate GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the lucky parental unit. See the prize list and enter to win: http://p.sf.net/sfu/thinkgeek-promo _______________________________________________ Gwt-openlayers-users mailing list Gwt...@li... https://lists.sourceforge.net/lists/listinfo/gwt-openlayers-users |
From: Jon B. <jon...@go...> - 2010-06-21 15:09:15
|
Hi guys, thanks for the swift replies. I don't think I've got a problem with SmartGWT after all, GWT-Openlayers has just decided to break for me! I've started a new Eclipse project and now can't get it working at all. I have no idea what's changed, but I get the following error: 16:07:56.995 [ERROR] [testgwt] Unable to load module entry point class org.test.client.Testgwt (see associated exception for details) com.google.gwt.core.client.JavaScriptException: (NOT_FOUND_ERR): NOT_FOUND_ERR: DOM Exception 8 code: 8 __gwt_ObjectId: 15 INDEX_SIZE_ERR: 1 DOMSTRING_SIZE_ERR: 2 HIERARCHY_REQUEST_ERR: 3 WRONG_DOCUMENT_ERR: 4 INVALID_CHARACTER_ERR: 5 NO_DATA_ALLOWED_ERR: 6 NO_MODIFICATION_ALLOWED_ERR: 7 NOT_FOUND_ERR: 8 NOT_SUPPORTED_ERR: 9 INUSE_ATTRIBUTE_ERR: 10 INVALID_STATE_ERR: 11 SYNTAX_ERR: 12 INVALID_MODIFICATION_ERR: 13 NAMESPACE_ERR: 14 INVALID_ACCESS_ERR: 15 VALIDATION_ERR: 16 TYPE_MISMATCH_ERR: 17 SECURITY_ERR: 18 NETWORK_ERR: 19 ABORT_ERR: 20 URL_MISMATCH_ERR: 21 QUOTA_EXCEEDED_ERR: 22 at com.google.gwt.dev.shell.BrowserChannelServer.invokeJavascript(BrowserChannelServer.java:195) at com.google.gwt.dev.shell.ModuleSpaceOOPHM.doInvoke(ModuleSpaceOOPHM.java:120) at com.google.gwt.dev.shell.ModuleSpace.invokeNative(ModuleSpace.java:507) at com.google.gwt.dev.shell.ModuleSpace.invokeNativeObject(ModuleSpace.java:264) at com.google.gwt.dev.shell.JavaScriptHost.invokeNativeObject(JavaScriptHost.java:91) at com.google.gwt.dom.client.Node$.appendChild$(Node.java) at com.google.gwt.user.client.DOM.appendChild(DOM.java:60) at com.google.gwt.user.client.ui.ComplexPanel.add(ComplexPanel.java:90) at com.google.gwt.user.client.ui.AbsolutePanel.add(AbsolutePanel.java:75) at org.test.client.Testgwt.onModuleLoad(Testgwt.java:56) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:597) at com.google.gwt.dev.shell.ModuleSpace.onLoad(ModuleSpace.java:369) at com.google.gwt.dev.shell.OophmSessionHandler.loadModule(OophmSessionHandler.java:185) at com.google.gwt.dev.shell.BrowserChannelServer.processConnection(BrowserChannelServer.java:380) at com.google.gwt.dev.shell.BrowserChannelServer.run(BrowserChannelServer.java:222) at java.lang.Thread.run(Thread.java:619) On 21 June 2010 14:43, "Cerávolo, Rafael V.B." <raf...@gm...>wrote: > Hi Jon, > > I'm using SmartGWT with OpenLayers and it works (almost) fine! > > I'm using with a VLayout, but I suppose it will work with HLayout as well. > > I'm doing this: > > Layout v_layoutMapa = new VLayout(); > this.addMember(v_layoutMapa); > v_layoutMapa.addMember(m_mapWidget); > v_layoutMapa.setWidth100(); > v_layoutMapa.setHeight("*"); > > where "this" refers to a class that inherits from VLayout. > > But you will have some issues using with SmartGwt (well, actually, I > didn't tested these issues without Smart to see if it is a SmartGwt problem > or a OpenLayers problem): > > - When showing maps inside Tabs (the main tabs like in the SmartGwt > showcase), switching from a tab with a map to another tab, the Features > added to the map keep visible in the other tabs!!! (I solved this by hiding > the map when the OnTabChange event is triggered) > - Sometimes a "ghost" feature (duplicated from another existing > feature) appears on the map when dragging it. Using a Timer for delaying the > draw of the feature solved in some cases, but this problem is still not > solved 100%. > > Regards, > Rafael Ceravolo > > > > > On 21/06/2010 08:16, Jon Britton wrote: > > Hi, > > I'm having trouble getting OpenLayers to work with SmartGWT. I've got a > Smart GWT HLayout and I'm trying to add a MapWidget to it, but the map > doesn't appear at all and I get no errors. > > Has anybody else been successful in using GWT-OpenLayers and SmartGWT > together? > > Thanks, > > Jon > > > ------------------------------------------------------------------------------ > ThinkGeek and WIRED's GeekDad team up for the Ultimate > GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the > lucky parental unit. See the prize list and enter to win: > http://p.sf.net/sfu/thinkgeek-promo > > > _______________________________________________ > Gwt-openlayers-users mailing lis...@li...https://lists.sourceforge.net/lists/listinfo/gwt-openlayers-users > > > > > ------------------------------------------------------------------------------ > ThinkGeek and WIRED's GeekDad team up for the Ultimate > GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the > lucky parental unit. See the prize list and enter to win: > http://p.sf.net/sfu/thinkgeek-promo > _______________________________________________ > Gwt-openlayers-users mailing list > Gwt...@li... > https://lists.sourceforge.net/lists/listinfo/gwt-openlayers-users > > |
From: Cerávolo, R. V.B. <raf...@gm...> - 2010-06-21 13:45:45
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <meta content="text/html; charset=ISO-8859-1" http-equiv="Content-Type"> </head> <body bgcolor="#ffffff" text="#000000"> Hi Jon,<br> <br> I'm using SmartGWT with OpenLayers and it works (almost) fine!<br> <br> I'm using with a VLayout, but I suppose it will work with HLayout as well. <br> <br> I'm doing this:<br> <br> Layout v_layoutMapa = new VLayout();<br> this.addMember(v_layoutMapa);<br> v_layoutMapa.addMember(m_mapWidget);<br> v_layoutMapa.setWidth100();<br> v_layoutMapa.setHeight("*");<br> <br> where "this" refers to a class that inherits from VLayout.<br> <br> But you will have some issues using with SmartGwt (well, actually, I didn't tested these issues without Smart to see if it is a SmartGwt problem or a OpenLayers problem):<br> <ul> <li>When showing maps inside Tabs (the main tabs like in the SmartGwt showcase), switching from a tab with a map to another tab, the Features added to the map keep visible in the other tabs!!! (I solved this by hiding the map when the OnTabChange event is triggered)</li> <li>Sometimes a "ghost" feature (duplicated from another existing feature) appears on the map when dragging it. Using a Timer for delaying the draw of the feature solved in some cases, but this problem is still not solved 100%.</li> </ul> Regards,<br> Rafael Ceravolo<br> <br> <br> <br> On 21/06/2010 08:16, Jon Britton wrote: <blockquote cite="mid:AAN...@ma..." type="cite">Hi, <div><br> </div> <div>I'm having trouble getting OpenLayers to work with SmartGWT. I've got a Smart GWT HLayout and I'm trying to add a MapWidget to it, but the map doesn't appear at all and I get no errors.</div> <div><br> </div> <div>Has anybody else been successful in using GWT-OpenLayers and SmartGWT together?</div> <div><br> </div> <div>Thanks,</div> <div><br> </div> <div>Jon</div> <pre wrap=""> <fieldset class="mimeAttachmentHeader"></fieldset> ------------------------------------------------------------------------------ ThinkGeek and WIRED's GeekDad team up for the Ultimate GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the lucky parental unit. See the prize list and enter to win: <a class="moz-txt-link-freetext" href="http://p.sf.net/sfu/thinkgeek-promo">http://p.sf.net/sfu/thinkgeek-promo</a></pre> <pre wrap=""> <fieldset class="mimeAttachmentHeader"></fieldset> _______________________________________________ Gwt-openlayers-users mailing list <a class="moz-txt-link-abbreviated" href="mailto:Gwt...@li...">Gwt...@li...</a> <a class="moz-txt-link-freetext" href="https://lists.sourceforge.net/lists/listinfo/gwt-openlayers-users">https://lists.sourceforge.net/lists/listinfo/gwt-openlayers-users</a> </pre> </blockquote> <br> </body> </html> |
From: Philipp V. <ve...@go...> - 2010-06-21 11:37:37
|
Hi, for me it worked by putting the mapwidget in a dockpanel: DockPanel dp = new DockPanel(); dp.setHeight("100%"); dp.setWidth("100%"); dp.add(OLmap.getMapWidget(), DockPanel.CENTER); window.addItem(dp); Cheers, Philipp 2010/6/21 Lukas Johansson <luk...@de...> > Haven’t tried with smartGWT but I guess that the map doesn’t get sized. > > Check with firebug (or any other inspect tool) what size the div containing > the map has. If it’s 0x0 then try to set a larger size in firebug. if > you’re lucky the map shows and you can start trying different strategies to > get it sized. > > /Lukas > > > > *Från:* Jon Britton [mailto:jon...@go...] > *Skickat:* den 21 juni 2010 13:17 > *Till:* gwt-openlayers-users > *Ämne:* [Gwt-openlayers-users] GWT-OpenLayers and SmartGWT > > > > Hi, > > > > I'm having trouble getting OpenLayers to work with SmartGWT. I've got a > Smart GWT HLayout and I'm trying to add a MapWidget to it, but the map > doesn't appear at all and I get no errors. > > > > Has anybody else been successful in using GWT-OpenLayers and SmartGWT > together? > > > > Thanks, > > > > Jon > > > ------------------------------------------------------------------------------ > ThinkGeek and WIRED's GeekDad team up for the Ultimate > GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the > lucky parental unit. See the prize list and enter to win: > http://p.sf.net/sfu/thinkgeek-promo > _______________________________________________ > Gwt-openlayers-users mailing list > Gwt...@li... > https://lists.sourceforge.net/lists/listinfo/gwt-openlayers-users > > |
From: Lukas J. <luk...@de...> - 2010-06-21 11:35:39
|
Haven't tried with smartGWT but I guess that the map doesn't get sized. Check with firebug (or any other inspect tool) what size the div containing the map has. If it's 0x0 then try to set a larger size in firebug. if you're lucky the map shows and you can start trying different strategies to get it sized. /Lukas Från: Jon Britton [mailto:jon...@go...] Skickat: den 21 juni 2010 13:17 Till: gwt-openlayers-users Ämne: [Gwt-openlayers-users] GWT-OpenLayers and SmartGWT Hi, I'm having trouble getting OpenLayers to work with SmartGWT. I've got a Smart GWT HLayout and I'm trying to add a MapWidget to it, but the map doesn't appear at all and I get no errors. Has anybody else been successful in using GWT-OpenLayers and SmartGWT together? Thanks, Jon |
From: Jon B. <jon...@go...> - 2010-06-21 11:17:06
|
Hi, I'm having trouble getting OpenLayers to work with SmartGWT. I've got a Smart GWT HLayout and I'm trying to add a MapWidget to it, but the map doesn't appear at all and I get no errors. Has anybody else been successful in using GWT-OpenLayers and SmartGWT together? Thanks, Jon |
From: Couzic M. <mik...@gm...> - 2010-06-19 09:46:13
|
Hi Philipp, If you're still interested, I added a new example to the showcase. Please ask if you need help. Mikael 2010/6/16 Philipp Verhoeven <phi...@go...> > Hi Mikael, > > for me it would be enough to get the polygons from the WFS. If you like, > please send me some sample code. > > Thanks for your help! > > Cheers, > Philipp > > 2010/6/16 Couzic Mikael <mik...@gm...> > > Hi Philipp, >> >> I needed this kind of functionnality, but I didn't use WMS, just WFS. >> The idea is to get your polygons from the WFS protocol, and load them into >> your VectorLayer. If your polygons are static, you can even use GML files. >> But I'm not sure that's what you're looking for, as this solution implies >> the WMS is completely independant from the polygons. >> >> Ask me if you want more info, I could even provide you with sample code if >> you want. >> >> Cheers, >> Mikael >> >> >> 2010/6/16 Philipp Verhoeven <ve...@go...> >> >>> Hi, >>> >>> >>> I'm looking for a solution to make any wms layer clickable. That means >>> that there should be areas - which are bounded by a polygon - that show an >>> information bubble when hovering over. >>> Does anyone have experience in this field? As far as I know >>> gwt-openlayers does not support this feature. >>> >>> I found a suitable example for openlayers using a WFS: >>> http://openlayers.org/dev/examples/getfeature-wfs.html >>> >>> It is possible to add the needed funcionality and build the .jar by >>> myself, right?! >>> >>> I'm thankful for any idea or comment on this. >>> >>> Cheers, >>> Philipp >>> >>> >>> ------------------------------------------------------------------------------ >>> ThinkGeek and WIRED's GeekDad team up for the Ultimate >>> GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the >>> lucky parental unit. See the prize list and enter to win: >>> http://p.sf.net/sfu/thinkgeek-promo >>> _______________________________________________ >>> Gwt-openlayers-users mailing list >>> Gwt...@li... >>> https://lists.sourceforge.net/lists/listinfo/gwt-openlayers-users >>> >>> >> > |
From: Lukas J. <luk...@de...> - 2010-06-18 08:41:00
|
I'm having a issue with Safari (4.0.5 on windows). When I define a WMSlayer with a single url only it works fine, but when initiate it with an array of url:s the urls: are combined into a string where each url is separated with an ',' and this string is then used as the url to the WMS server. The constructor I call is: WMS.java public WMS(String name, String[] urls, WMSParams params, WMSOptions layerParams) { this(WMSImpl.create(name, new JStringArray(urls).getJSObject(), params.getJSObject(), layerParams.getJSObject())); } I've looked into JstringArray() and it simply copies all values from urls to a JStringArray so no problem there. In WMSImpl there is a comment about the Object/Array problem and this is solved by once more copying the values from the new array, seems ok. The new value is then passed to OpenLayers.Layer.WMS. So the bottom line is that I have no idea why this works in all mayor browsers except Safari. When I only use 1 url there is no problem. We have another OpenLayers (plain OpenLayers, non-GWT) application which also uses multiple url and that app does not show this symtoms. Anyone got a clue? |
From: Lukas J. <luk...@de...> - 2010-06-17 08:17:43
|
Thanx I've totally missed that. I believed that I could request the data in a machine friendly format (for e.g. json). But it must be possible to create a template which will be easier to parse in my app code. Thank you! -----Ursprungligt meddelande----- Från: Edwin Commandeur [mailto:com...@gm...] Skickat: den 17 juni 2010 09:19 Till: Lukas Johansson Kopia: Couzic Mikael; Philipp Verhoeven; gwt...@li... Ämne: Re: [Gwt-openlayers-users] Producing clickable layers from WMS Hi Lukas, In the code in trunk there is a WMSGetFeatureInfo example, similar to the example you reference. It uses a simple proxy included in the latest GWT-OL from trunk. With WMSGetFeatureInfo you have to be aware that there is no standard for WMSGetFeatureInfo output. In GeoServer you can define templates for this output, see here: http://geoserver.org/display/GEOSDOC/GetFeatureInfo+templates It would be great if you want to contribute enhancements back to GWT-OL. Greetings, Edwin On 17 June 2010 08:55, Lukas Johansson <luk...@de...> wrote: > I will within a two weeks add this functionality to our app, (we're > currently using WFS but need to handle larger amount of data which get > impossible to load with WFS). > > The plan is to use the technique shown in > http://openlayers.org/dev/examples/getfeatureinfo-popup.html to be able to > produce popups for WMS-layers as well. > > I'm not sure if gwt-ol implements all that I need to use, but if not, I will > implement those parts myself and send them back as a patch. > > /Lukas > > Från: Couzic Mikael [mailto:mik...@gm...] > Skickat: den 16 juni 2010 13:21 > Till: Philipp Verhoeven > Kopia: gwt...@li... > Ämne: Re: [Gwt-openlayers-users] Producing clickable layers from WMS > > > > Hi Philipp, > > I needed this kind of functionnality, but I didn't use WMS, just WFS. > The idea is to get your polygons from the WFS protocol, and load them into > your VectorLayer. If your polygons are static, you can even use GML files. > But I'm not sure that's what you're looking for, as this solution implies > the WMS is completely independant from the polygons. > > Ask me if you want more info, I could even provide you with sample code if > you want. > > Cheers, > Mikael > > 2010/6/16 Philipp Verhoeven <ve...@go...> > > Hi, > > I'm looking for a solution to make any wms layer clickable. That means that > there should be areas - which are bounded by a polygon - that show an > information bubble when hovering over. > Does anyone have experience in this field? As far as I know gwt-openlayers > does not support this feature. > > I found a suitable example for openlayers using a WFS: > http://openlayers.org/dev/examples/getfeature-wfs.html > > It is possible to add the needed funcionality and build the .jar by myself, > right?! > > I'm thankful for any idea or comment on this. > > Cheers, > Philipp > > ------------------------------------------------------------------------------ > ThinkGeek and WIRED's GeekDad team up for the Ultimate > GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the > lucky parental unit. See the prize list and enter to win: > http://p.sf.net/sfu/thinkgeek-promo > _______________________________________________ > Gwt-openlayers-users mailing list > Gwt...@li... > https://lists.sourceforge.net/lists/listinfo/gwt-openlayers-users > > > > ------------------------------------------------------------------------------ > ThinkGeek and WIRED's GeekDad team up for the Ultimate > GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the > lucky parental unit. See the prize list and enter to win: > http://p.sf.net/sfu/thinkgeek-promo > _______________________________________________ > Gwt-openlayers-users mailing list > Gwt...@li... > https://lists.sourceforge.net/lists/listinfo/gwt-openlayers-users > > |
From: Edwin C. <com...@gm...> - 2010-06-17 07:19:01
|
Hi Lukas, In the code in trunk there is a WMSGetFeatureInfo example, similar to the example you reference. It uses a simple proxy included in the latest GWT-OL from trunk. With WMSGetFeatureInfo you have to be aware that there is no standard for WMSGetFeatureInfo output. In GeoServer you can define templates for this output, see here: http://geoserver.org/display/GEOSDOC/GetFeatureInfo+templates It would be great if you want to contribute enhancements back to GWT-OL. Greetings, Edwin On 17 June 2010 08:55, Lukas Johansson <luk...@de...> wrote: > I will within a two weeks add this functionality to our app, (we’re > currently using WFS but need to handle larger amount of data which get > impossible to load with WFS). > > The plan is to use the technique shown in > http://openlayers.org/dev/examples/getfeatureinfo-popup.html to be able to > produce popups for WMS-layers as well. > > I’m not sure if gwt-ol implements all that I need to use, but if not, I will > implement those parts myself and send them back as a patch. > > /Lukas > > Från: Couzic Mikael [mailto:mik...@gm...] > Skickat: den 16 juni 2010 13:21 > Till: Philipp Verhoeven > Kopia: gwt...@li... > Ämne: Re: [Gwt-openlayers-users] Producing clickable layers from WMS > > > > Hi Philipp, > > I needed this kind of functionnality, but I didn't use WMS, just WFS. > The idea is to get your polygons from the WFS protocol, and load them into > your VectorLayer. If your polygons are static, you can even use GML files. > But I'm not sure that's what you're looking for, as this solution implies > the WMS is completely independant from the polygons. > > Ask me if you want more info, I could even provide you with sample code if > you want. > > Cheers, > Mikael > > 2010/6/16 Philipp Verhoeven <ve...@go...> > > Hi, > > I'm looking for a solution to make any wms layer clickable. That means that > there should be areas - which are bounded by a polygon - that show an > information bubble when hovering over. > Does anyone have experience in this field? As far as I know gwt-openlayers > does not support this feature. > > I found a suitable example for openlayers using a WFS: > http://openlayers.org/dev/examples/getfeature-wfs.html > > It is possible to add the needed funcionality and build the .jar by myself, > right?! > > I'm thankful for any idea or comment on this. > > Cheers, > Philipp > > ------------------------------------------------------------------------------ > ThinkGeek and WIRED's GeekDad team up for the Ultimate > GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the > lucky parental unit. See the prize list and enter to win: > http://p.sf.net/sfu/thinkgeek-promo > _______________________________________________ > Gwt-openlayers-users mailing list > Gwt...@li... > https://lists.sourceforge.net/lists/listinfo/gwt-openlayers-users > > > > ------------------------------------------------------------------------------ > ThinkGeek and WIRED's GeekDad team up for the Ultimate > GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the > lucky parental unit. See the prize list and enter to win: > http://p.sf.net/sfu/thinkgeek-promo > _______________________________________________ > Gwt-openlayers-users mailing list > Gwt...@li... > https://lists.sourceforge.net/lists/listinfo/gwt-openlayers-users > > |
From: Lukas J. <luk...@de...> - 2010-06-17 06:55:13
|
I will within a two weeks add this functionality to our app, (we're currently using WFS but need to handle larger amount of data which get impossible to load with WFS). The plan is to use the technique shown in http://openlayers.org/dev/examples/getfeatureinfo-popup.html to be able to produce popups for WMS-layers as well. I'm not sure if gwt-ol implements all that I need to use, but if not, I will implement those parts myself and send them back as a patch. /Lukas Från: Couzic Mikael [mailto:mik...@gm...] Skickat: den 16 juni 2010 13:21 Till: Philipp Verhoeven Kopia: gwt...@li... Ämne: Re: [Gwt-openlayers-users] Producing clickable layers from WMS Hi Philipp, I needed this kind of functionnality, but I didn't use WMS, just WFS. The idea is to get your polygons from the WFS protocol, and load them into your VectorLayer. If your polygons are static, you can even use GML files. But I'm not sure that's what you're looking for, as this solution implies the WMS is completely independant from the polygons. Ask me if you want more info, I could even provide you with sample code if you want. Cheers, Mikael 2010/6/16 Philipp Verhoeven <ve...@go...> Hi, I'm looking for a solution to make any wms layer clickable. That means that there should be areas - which are bounded by a polygon - that show an information bubble when hovering over. Does anyone have experience in this field? As far as I know gwt-openlayers does not support this feature. I found a suitable example for openlayers using a WFS: http://openlayers.org/dev/examples/getfeature-wfs.html It is possible to add the needed funcionality and build the .jar by myself, right?! I'm thankful for any idea or comment on this. Cheers, Philipp ------------------------------------------------------------------------------ ThinkGeek and WIRED's GeekDad team up for the Ultimate GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the lucky parental unit. See the prize list and enter to win: http://p.sf.net/sfu/thinkgeek-promo _______________________________________________ Gwt-openlayers-users mailing list Gwt...@li... https://lists.sourceforge.net/lists/listinfo/gwt-openlayers-users |
From: Couzic M. <mik...@gm...> - 2010-06-16 11:20:49
|
Hi Philipp, I needed this kind of functionnality, but I didn't use WMS, just WFS. The idea is to get your polygons from the WFS protocol, and load them into your VectorLayer. If your polygons are static, you can even use GML files. But I'm not sure that's what you're looking for, as this solution implies the WMS is completely independant from the polygons. Ask me if you want more info, I could even provide you with sample code if you want. Cheers, Mikael 2010/6/16 Philipp Verhoeven <ve...@go...> > Hi, > > I'm looking for a solution to make any wms layer clickable. That means that > there should be areas - which are bounded by a polygon - that show an > information bubble when hovering over. > Does anyone have experience in this field? As far as I know gwt-openlayers > does not support this feature. > > I found a suitable example for openlayers using a WFS: > http://openlayers.org/dev/examples/getfeature-wfs.html > > It is possible to add the needed funcionality and build the .jar by myself, > right?! > > I'm thankful for any idea or comment on this. > > Cheers, > Philipp > > > ------------------------------------------------------------------------------ > ThinkGeek and WIRED's GeekDad team up for the Ultimate > GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the > lucky parental unit. See the prize list and enter to win: > http://p.sf.net/sfu/thinkgeek-promo > _______________________________________________ > Gwt-openlayers-users mailing list > Gwt...@li... > https://lists.sourceforge.net/lists/listinfo/gwt-openlayers-users > > |
From: Philipp V. <ve...@go...> - 2010-06-16 09:47:06
|
Hi, I'm looking for a solution to make any wms layer clickable. That means that there should be areas - which are bounded by a polygon - that show an information bubble when hovering over. Does anyone have experience in this field? As far as I know gwt-openlayers does not support this feature. I found a suitable example for openlayers using a WFS: http://openlayers.org/dev/examples/getfeature-wfs.html It is possible to add the needed funcionality and build the .jar by myself, right?! I'm thankful for any idea or comment on this. Cheers, Philipp |