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: Edwin C. <com...@gm...> - 2010-04-22 07:05:57
|
Hi Andrew, OpenLayers 2.9 should be backwards compatible with previous OL versions. However, it would be nice to test-drive GWT-OL with the 2.9-rc1. Greetings, Edwin On 22 April 2010 08:56, Andrew Hughes <ahh...@gm...> wrote: > OpenLayers 2.9 seems almost like it's ready for imminent release. Should we > think about somehow preparing for this now? > http://trac.openlayers.org/wiki/Release/2.9 > > ------------------------------------------------------------------------------ > > _______________________________________________ > Gwt-openlayers-users mailing list > Gwt...@li... > https://lists.sourceforge.net/lists/listinfo/gwt-openlayers-users > > |
From: Andrew H. <ahh...@gm...> - 2010-04-22 06:56:54
|
OpenLayers 2.9 seems almost like it's ready for imminent release. Should we think about somehow preparing for this now? http://trac.openlayers.org/wiki/Release/2.9 |
From: Jon B. <jon...@go...> - 2010-04-20 14:37:04
|
Hi, How can I set the number of image reload attempts for WMS layers using gwt-openlayers? Cheers, Jon |
From: Jon B. <jon...@go...> - 2010-04-20 13:59:52
|
Hi, Currently the Layer.addOptions(..) method is not available in gwt-openlayers. I've created a ticket for this, but would really appreciate any updates regarding this issue. Thanks! Jon |
From: Jon B. <man...@go...> - 2010-04-19 13:56:37
|
I should also add that I had problems with displaying OSM data correctly with the release version of gwt-openlayers. Everythjing works fine with the recent snapshot version though! Jon On 19 April 2010 14:54, Jon Britton <man...@go...>wrote: > I use OSM and gwt-openlayers successfully using the following code. This > is for the Mapnik rendering but the same can be done for Osmarender. I > don't think I needed to download anything extra to do this, it just worked > out of the box. > > MapOptions defaultMapOptions = new MapOptions(); > defaultMapOptions.setControls(new JObjectArray(new JSObject[] {})); > defaultMapOptions.setProjection("EPSG:900913"); > defaultMapOptions.setDisplayProjection(new Projection("EPSG:4326")); > defaultMapOptions.setMaxExtent(new > Bounds(-20037508.34,-20037508.34,20037508.34,20037508.34)); > defaultMapOptions.setNumZoomLevels(19); > defaultMapOptions.setUnits("m"); > > MapWidget mw = new MapWidget("100%", "100%", defaultMapOptions); > mw.getMap().addLayer(OSM.Mapnik("Mapnik")); > > Obviously, the key line is the last line :-) > > Jon > > On 19 April 2010 08:09, Edwin Commandeur <com...@gm...>wrote: > >> Hi Hans, >> >> I am not sure about TMS, but in OL I think it has been superseded by >> OSM. For OSM you need to include a small javascript library created by >> OSM itself. >> >> However, I am not an OSM user, so I can't tell you the details. >> >> The easiest way is to look in a recent OpenLayers example and then see >> if you can do sth similar with GWT-OL. >> >> Greetings, >> Edwin >> >> 2010/4/19 Hans Terje Møller <han...@ho...>: >> > Hi. >> > >> > I wrote you a few days ago, but didn't get a response, so I'm trying >> again. >> > >> > I am currently trying to use OSM in gwt-openlayers but have gotten >> stuck. I >> > try importing OSM by creating a TMS layer. >> > This is how the code look so far: >> > >> > TMSOptions tmsOptions = new TMSOptions(); >> > >> > tmsOptions.setFormat("image/png"); >> > >> > tmsOptions.setDisplayOutsideMaxExtent(false); >> > >> > tmsOptions.setProjection("EPSG:4392"); >> > >> > TMS tmsLayer = new TMS("OpenStreetMaps", " >> http://tile.openstreetmap.org/", >> > tmsOptions); >> > >> > map.addLayers(new Layer[] {tmsLayer}); >> > >> > This only loads a bunch of red tiles which tells me that the image can't >> be >> > loaded. And when I right click one of those tiles I get this url: >> > http://tile.openstreetmap.org/1.0.0/undefined/2/1/1.undefined. >> > And the url I need is this: http://tile.openstreetmap.org/2/1/1.pngwhich is >> > a working url that I have from another example. From what I understand, >> I >> > haven't managed to define the format, but how do I do this? >> > >> > I would greatly appreciate some guidelines on how to get OSM working!! >> > >> > Regards, >> > Hans Terje Møller >> > >> > >> > >> >> >> ------------------------------------------------------------------------------ >> Download Intel® Parallel Studio Eval >> Try the new software tools for yourself. Speed compiling, find bugs >> proactively, and fine-tune applications for parallel performance. >> See why Intel Parallel Studio got high marks during beta. >> http://p.sf.net/sfu/intel-sw-dev >> _______________________________________________ >> Gwt-openlayers-users mailing list >> Gwt...@li... >> https://lists.sourceforge.net/lists/listinfo/gwt-openlayers-users >> > > |
From: Jon B. <man...@go...> - 2010-04-19 13:54:48
|
I use OSM and gwt-openlayers successfully using the following code. This is for the Mapnik rendering but the same can be done for Osmarender. I don't think I needed to download anything extra to do this, it just worked out of the box. MapOptions defaultMapOptions = new MapOptions(); defaultMapOptions.setControls(new JObjectArray(new JSObject[] {})); defaultMapOptions.setProjection("EPSG:900913"); defaultMapOptions.setDisplayProjection(new Projection("EPSG:4326")); defaultMapOptions.setMaxExtent(new Bounds(-20037508.34,-20037508.34,20037508.34,20037508.34)); defaultMapOptions.setNumZoomLevels(19); defaultMapOptions.setUnits("m"); MapWidget mw = new MapWidget("100%", "100%", defaultMapOptions); mw.getMap().addLayer(OSM.Mapnik("Mapnik")); Obviously, the key line is the last line :-) Jon On 19 April 2010 08:09, Edwin Commandeur <com...@gm...> wrote: > Hi Hans, > > I am not sure about TMS, but in OL I think it has been superseded by > OSM. For OSM you need to include a small javascript library created by > OSM itself. > > However, I am not an OSM user, so I can't tell you the details. > > The easiest way is to look in a recent OpenLayers example and then see > if you can do sth similar with GWT-OL. > > Greetings, > Edwin > > 2010/4/19 Hans Terje Møller <han...@ho...>: > > Hi. > > > > I wrote you a few days ago, but didn't get a response, so I'm trying > again. > > > > I am currently trying to use OSM in gwt-openlayers but have gotten stuck. > I > > try importing OSM by creating a TMS layer. > > This is how the code look so far: > > > > TMSOptions tmsOptions = new TMSOptions(); > > > > tmsOptions.setFormat("image/png"); > > > > tmsOptions.setDisplayOutsideMaxExtent(false); > > > > tmsOptions.setProjection("EPSG:4392"); > > > > TMS tmsLayer = new TMS("OpenStreetMaps", "http://tile.openstreetmap.org/ > ", > > tmsOptions); > > > > map.addLayers(new Layer[] {tmsLayer}); > > > > This only loads a bunch of red tiles which tells me that the image can't > be > > loaded. And when I right click one of those tiles I get this url: > > http://tile.openstreetmap.org/1.0.0/undefined/2/1/1.undefined. > > And the url I need is this: http://tile.openstreetmap.org/2/1/1.pngwhich is > > a working url that I have from another example. From what I understand, I > > haven't managed to define the format, but how do I do this? > > > > I would greatly appreciate some guidelines on how to get OSM working!! > > > > Regards, > > Hans Terje Møller > > > > > > > > > ------------------------------------------------------------------------------ > Download Intel® Parallel Studio Eval > Try the new software tools for yourself. Speed compiling, find bugs > proactively, and fine-tune applications for parallel performance. > See why Intel Parallel Studio got high marks during beta. > http://p.sf.net/sfu/intel-sw-dev > _______________________________________________ > Gwt-openlayers-users mailing list > Gwt...@li... > https://lists.sourceforge.net/lists/listinfo/gwt-openlayers-users > |
From: Edwin C. <com...@gm...> - 2010-04-19 07:09:38
|
Hi Hans, I am not sure about TMS, but in OL I think it has been superseded by OSM. For OSM you need to include a small javascript library created by OSM itself. However, I am not an OSM user, so I can't tell you the details. The easiest way is to look in a recent OpenLayers example and then see if you can do sth similar with GWT-OL. Greetings, Edwin 2010/4/19 Hans Terje Møller <han...@ho...>: > Hi. > > I wrote you a few days ago, but didn't get a response, so I'm trying again. > > I am currently trying to use OSM in gwt-openlayers but have gotten stuck. I > try importing OSM by creating a TMS layer. > This is how the code look so far: > > TMSOptions tmsOptions = new TMSOptions(); > > tmsOptions.setFormat("image/png"); > > tmsOptions.setDisplayOutsideMaxExtent(false); > > tmsOptions.setProjection("EPSG:4392"); > > TMS tmsLayer = new TMS("OpenStreetMaps", "http://tile.openstreetmap.org/", > tmsOptions); > > map.addLayers(new Layer[] {tmsLayer}); > > This only loads a bunch of red tiles which tells me that the image can't be > loaded. And when I right click one of those tiles I get this url: > http://tile.openstreetmap.org/1.0.0/undefined/2/1/1.undefined. > And the url I need is this: http://tile.openstreetmap.org/2/1/1.png which is > a working url that I have from another example. From what I understand, I > haven't managed to define the format, but how do I do this? > > I would greatly appreciate some guidelines on how to get OSM working!! > > Regards, > Hans Terje Møller > > > |
From: Hutchins, M. C. <cha...@nr...> - 2010-04-14 21:30:28
|
Is it possible to change the map's projection (i.e. from EPSG:4326 to EPSG:3411) without destroying the map and its layers? If so, how? Thanks, Chad Chad Hutchins Meteorologist Naval Research Laboratory Marine Meteorology Division Email: cha...@nr... |
From: Jon B. <jon...@go...> - 2010-04-14 16:00:24
|
Hi, I've got a map with a few WMS layers and a list box with a list of projections. When the user chooses a projection, I want to map projection to change but keep the same layers. Any idea how I should go about this? Simply setting the projection using Map.setOptions(MapOptions) doesn't work! Thanks, Jon |
From: Edwin C. <com...@gm...> - 2010-04-01 20:14:29
|
Hi Brian, mergeNewParams is defined on HTTPRequestLayer from which WMS should derive through GridLayer. Greetings, Edwin On 1 April 2010 21:29, Brian Walawender <Bri...@no...> wrote: > Edwin, > > > > I've built the code from the latest mercurial source. Which method contains > the mergeNewParams? I can't find it in: > > > > org.gwtopenmaps.openlayers.client.layer.Layer > > > > or > > > > org.gwtopenmaps.openlayers.client.layer.WMS > > > > Thanks. > > > > bw > > > > -----Original Message----- > From: Edwin Commandeur [mailto:com...@gm...] > Sent: Thursday, April 01, 2010 2:18 PM > To: greg > Cc: gwt-openlayers-users > Subject: Re: [Gwt-openlayers-users] Feature request mergeNewParams > > > > Hi Greg, > > > > The 0.5 snapshot code contains the mergeNewParams method and I just > > added a link to the 0.5-snapshot to the site > > (http://gwt-openlayers.sourceforge.net/) > > > > The snapshot url for the upcoming release is: > > http://gwt-openlayers.sourceforge.net/latest/openlayers_gwt-0.5-SNAPSHOT.jar > > > > Greetings, > > Edwin > > > > On 1 April 2010 20:18, greg <Gre...@no...> wrote: > >> We are needing to use the mergeNewParams method of openLayers and > >> don't see that method in openLayer GWT yet. Could this be implemented? > >> > >> Thanks, > >> > >> Greg Machala > >> ITO National Weather Service, Birmingham, AL > >> > >> > >> >> ------------------------------------------------------------------------------ > >> Download Intel® Parallel Studio Eval > >> Try the new software tools for yourself. Speed compiling, find bugs > >> proactively, and fine-tune applications for parallel performance. > >> See why Intel Parallel Studio got high marks during beta. > >> http://p.sf.net/sfu/intel-sw-dev > >> _______________________________________________ > >> Gwt-openlayers-users mailing list > >> Gwt...@li... > >> https://lists.sourceforge.net/lists/listinfo/gwt-openlayers-users > >> > > > > ------------------------------------------------------------------------------ > > Download Intel® Parallel Studio Eval > > Try the new software tools for yourself. Speed compiling, find bugs > > proactively, and fine-tune applications for parallel performance. > > See why Intel Parallel Studio got high marks during beta. > > http://p.sf.net/sfu/intel-sw-dev > > _______________________________________________ > > Gwt-openlayers-users mailing list > > Gwt...@li... > > https://lists.sourceforge.net/lists/listinfo/gwt-openlayers-users |
From: Brian W. <Bri...@no...> - 2010-04-01 19:29:39
|
Edwin, I've built the code from the latest mercurial source. Which method contains the mergeNewParams? I can't find it in: org.gwtopenmaps.openlayers.client.layer.Layer or org.gwtopenmaps.openlayers.client.layer.WMS Thanks. bw -----Original Message----- From: Edwin Commandeur [mailto:com...@gm...] Sent: Thursday, April 01, 2010 2:18 PM To: greg Cc: gwt-openlayers-users Subject: Re: [Gwt-openlayers-users] Feature request mergeNewParams Hi Greg, The 0.5 snapshot code contains the mergeNewParams method and I just added a link to the 0.5-snapshot to the site (http://gwt-openlayers.sourceforge.net/) The snapshot url for the upcoming release is: http://gwt-openlayers.sourceforge.net/latest/openlayers_gwt-0.5-SNAPSHOT.jar Greetings, Edwin On 1 April 2010 20:18, greg <Gre...@no...> wrote: > We are needing to use the mergeNewParams method of openLayers and > don't see that method in openLayer GWT yet. Could this be implemented? > > Thanks, > > Greg Machala > ITO National Weather Service, Birmingham, AL > > > ---------------------------------------------------------------------------- -- > Download Intel® Parallel Studio Eval > Try the new software tools for yourself. Speed compiling, find bugs > proactively, and fine-tune applications for parallel performance. > See why Intel Parallel Studio got high marks during beta. > http://p.sf.net/sfu/intel-sw-dev > _______________________________________________ > Gwt-openlayers-users mailing list > Gwt...@li... > https://lists.sourceforge.net/lists/listinfo/gwt-openlayers-users > ---------------------------------------------------------------------------- -- Download Intel® Parallel Studio Eval Try the new software tools for yourself. Speed compiling, find bugs proactively, and fine-tune applications for parallel performance. See why Intel Parallel Studio got high marks during beta. http://p.sf.net/sfu/intel-sw-dev _______________________________________________ Gwt-openlayers-users mailing list Gwt...@li... https://lists.sourceforge.net/lists/listinfo/gwt-openlayers-users |
From: Edwin C. <com...@gm...> - 2010-04-01 19:18:04
|
Hi Greg, The 0.5 snapshot code contains the mergeNewParams method and I just added a link to the 0.5-snapshot to the site (http://gwt-openlayers.sourceforge.net/) The snapshot url for the upcoming release is: http://gwt-openlayers.sourceforge.net/latest/openlayers_gwt-0.5-SNAPSHOT.jar Greetings, Edwin On 1 April 2010 20:18, greg <Gre...@no...> wrote: > We are needing to use the mergeNewParams method of openLayers and > don't see that method in openLayer GWT yet. Could this be implemented? > > Thanks, > > Greg Machala > ITO National Weather Service, Birmingham, AL > > > ------------------------------------------------------------------------------ > Download Intel® Parallel Studio Eval > Try the new software tools for yourself. Speed compiling, find bugs > proactively, and fine-tune applications for parallel performance. > See why Intel Parallel Studio got high marks during beta. > http://p.sf.net/sfu/intel-sw-dev > _______________________________________________ > Gwt-openlayers-users mailing list > Gwt...@li... > https://lists.sourceforge.net/lists/listinfo/gwt-openlayers-users > |
From: greg <Gre...@no...> - 2010-04-01 18:18:45
|
We are needing to use the mergeNewParams method of openLayers and don't see that method in openLayer GWT yet. Could this be implemented? Thanks, Greg Machala ITO National Weather Service, Birmingham, AL |
From: Edwin C. <com...@gm...> - 2010-04-01 06:13:05
|
Hi Jon, Thanks for adding the ticket. I can't give a date for the next release, but it has already been too long since the previous. The only thing that is holding me back is that I want a server-side proxy to be in, but I haven't had time to seriously work on that (there is some code that fails in a basic WFS(Protocol) example). This weekend I will look at a place where to put the latest snapshots, so they can be downloaded easily (perhaps from some personal website, but that is not ideal). It happens more frequently that people ask for builds with the latest changes, so it would be very good to have a "nightly build" location. Greetings, Edwin On 31 March 2010 23:00, Jon Britton <jon...@go...> wrote: > Hi Edwin, I've just created a ticket. > How soon do you intent to bring out a new release? Is there any access to > nightly builds etc? > Thanks, > Jon > On 31 March 2010 21:37, Edwin Commandeur <com...@gm...> wrote: >> >> Hi John, >> >> Could you make a ticket for that in Trac, see: >> http://gwt-openlayers.sourceforge.net/ >> under report an issue. >> >> That would be a simple thing to add to a new release which I am eager >> to bring out soon. >> >> Greetings, >> Edwin >> >> >> On 31 March 2010 20:14, Jon Britton <jon...@go...> wrote: >> > Hi, >> > I've been using gwt-openlayers and it's great, however I need to be able >> > to >> > programmatically switch between base layers. It seems that the >> > Map.setBaseLayer method isn't currently supported. Are there any plans >> > to >> > implement this in the near future? Does anybody know of a different way >> > to >> > do it in the meantime? >> > Thanks! >> > Jon >> > >> > ------------------------------------------------------------------------------ >> > Download Intel® Parallel Studio Eval >> > Try the new software tools for yourself. Speed compiling, find bugs >> > proactively, and fine-tune applications for parallel performance. >> > See why Intel Parallel Studio got high marks during beta. >> > http://p.sf.net/sfu/intel-sw-dev >> > _______________________________________________ >> > Gwt-openlayers-users mailing list >> > Gwt...@li... >> > https://lists.sourceforge.net/lists/listinfo/gwt-openlayers-users >> > >> > >> >> >> ------------------------------------------------------------------------------ >> Download Intel® Parallel Studio Eval >> Try the new software tools for yourself. Speed compiling, find bugs >> proactively, and fine-tune applications for parallel performance. >> See why Intel Parallel Studio got high marks during beta. >> http://p.sf.net/sfu/intel-sw-dev >> _______________________________________________ >> Gwt-openlayers-users mailing list >> Gwt...@li... >> https://lists.sourceforge.net/lists/listinfo/gwt-openlayers-users > > |
From: Jon B. <jon...@go...> - 2010-03-31 21:00:56
|
Hi Edwin, I've just created a ticket. How soon do you intent to bring out a new release? Is there any access to nightly builds etc? Thanks, Jon On 31 March 2010 21:37, Edwin Commandeur <com...@gm...> wrote: > Hi John, > > Could you make a ticket for that in Trac, see: > http://gwt-openlayers.sourceforge.net/ > under report an issue. > > That would be a simple thing to add to a new release which I am eager > to bring out soon. > > Greetings, > Edwin > > > On 31 March 2010 20:14, Jon Britton <jon...@go...> wrote: > > Hi, > > I've been using gwt-openlayers and it's great, however I need to be able > to > > programmatically switch between base layers. It seems that the > > Map.setBaseLayer method isn't currently supported. Are there any plans > to > > implement this in the near future? Does anybody know of a different way > to > > do it in the meantime? > > Thanks! > > Jon > > > ------------------------------------------------------------------------------ > > Download Intel® Parallel Studio Eval > > Try the new software tools for yourself. Speed compiling, find bugs > > proactively, and fine-tune applications for parallel performance. > > See why Intel Parallel Studio got high marks during beta. > > http://p.sf.net/sfu/intel-sw-dev > > _______________________________________________ > > Gwt-openlayers-users mailing list > > Gwt...@li... > > https://lists.sourceforge.net/lists/listinfo/gwt-openlayers-users > > > > > > > ------------------------------------------------------------------------------ > Download Intel® Parallel Studio Eval > Try the new software tools for yourself. Speed compiling, find bugs > proactively, and fine-tune applications for parallel performance. > See why Intel Parallel Studio got high marks during beta. > http://p.sf.net/sfu/intel-sw-dev > _______________________________________________ > Gwt-openlayers-users mailing list > Gwt...@li... > https://lists.sourceforge.net/lists/listinfo/gwt-openlayers-users > |
From: Edwin C. <com...@gm...> - 2010-03-31 20:38:11
|
Hi John, Could you make a ticket for that in Trac, see: http://gwt-openlayers.sourceforge.net/ under report an issue. That would be a simple thing to add to a new release which I am eager to bring out soon. Greetings, Edwin On 31 March 2010 20:14, Jon Britton <jon...@go...> wrote: > Hi, > I've been using gwt-openlayers and it's great, however I need to be able to > programmatically switch between base layers. It seems that the > Map.setBaseLayer method isn't currently supported. Are there any plans to > implement this in the near future? Does anybody know of a different way to > do it in the meantime? > Thanks! > Jon > ------------------------------------------------------------------------------ > Download Intel® Parallel Studio Eval > Try the new software tools for yourself. Speed compiling, find bugs > proactively, and fine-tune applications for parallel performance. > See why Intel Parallel Studio got high marks during beta. > http://p.sf.net/sfu/intel-sw-dev > _______________________________________________ > Gwt-openlayers-users mailing list > Gwt...@li... > https://lists.sourceforge.net/lists/listinfo/gwt-openlayers-users > > |
From: Jon B. <jon...@go...> - 2010-03-31 17:15:05
|
Hi, I've been using gwt-openlayers and it's great, however I need to be able to programmatically switch between base layers. It seems that the Map.setBaseLayer method isn't currently supported. Are there any plans to implement this in the near future? Does anybody know of a different way to do it in the meantime? Thanks! Jon |
From: Brad K. <br...@gm...> - 2010-03-29 18:31:16
|
I'd like to put some text on an overlay next to the icons. I can do this in google maps gwt by getting the layer map pane, and putting custom text panels on it. Is there a similar approach that would work for GWT OpenLayers ? |
From: Brad K. <br...@gm...> - 2010-03-29 14:45:37
|
Hello, how does one add a KML overlay to a base map using GWT-OpenLayers ? I'm having trouble correlating the Javascript samples to similar objects in the GWT version. For example, is it possible to use the http protocol to load kml in the GWT library ? I didn't see a way to set the protocol in the layer options. I don't really care if I load it locally or via http, just something that works. Thanks. |
From: Edwin C. <com...@gm...> - 2010-03-25 13:15:20
|
Hi Dave, GWT-OL is build against OL 2.8. I would tend to go with OL 2.8 (stable) unless you hit upon some bug that is fixed in the latest OL source code (which is 2.9 or 2.9+some extra stuff). OL 2.9 is not officially released, but seems to be almost there. When it comes out GWT-OL will be build against that version. As long as it is still OL 2.x then OL should be backwards compatible. Only in OL 3.x will there be breaking changes according to the info provided by OL. When OL 3.x comes out the development of GWT-OL will possibly need to be split in two branches. Greetings, Edwin On 25 March 2010 10:54, Dave <dav...@pi...> wrote: > hi List, > > I am bout to do some more work using openlayers, which version of > Openlayers should I actual use ? > 2.8(Stable), 2.9 or the latest 2.8 version from source archive with all > the latest bug fixes! > > I am going to be doing some work with the google layers and code > reprojection. > > Dave. > > ------------------------------------------------------------------------------ > Download Intel® Parallel Studio Eval > Try the new software tools for yourself. Speed compiling, find bugs > proactively, and fine-tune applications for parallel performance. > See why Intel Parallel Studio got high marks during beta. > http://p.sf.net/sfu/intel-sw-dev > _______________________________________________ > Gwt-openlayers-users mailing list > Gwt...@li... > https://lists.sourceforge.net/lists/listinfo/gwt-openlayers-users > |
From: Dave <dav...@pi...> - 2010-03-25 09:55:02
|
hi List, I am bout to do some more work using openlayers, which version of Openlayers should I actual use ? 2.8(Stable), 2.9 or the latest 2.8 version from source archive with all the latest bug fixes! I am going to be doing some work with the google layers and code reprojection. Dave. |
From: Paweł P. <ppa...@gm...> - 2010-03-24 11:17:36
|
Nevermind, it was my mistake. All you have to do is: drawPathFeatureOptions.getJSObject().setProperty("multi", true); W dniu 24 marca 2010 11:31 użytkownik Paweł Pawlak <ppa...@gm...>napisał: > Hi! > > I am trying to add new object to database. I story my geometry as > MULITLINESTRING so I have to change the *multi *options to *true*. In > JavaScript it looks like this: > > *line: new OpenLayers.Control.DrawFeature( > vecotrLayer, OpenLayers.Handler.Path, > {handlerOptions: {multi: true}} * > > and it works! > > In Java my code looks like this: > * > DrawFeatureOptions drawPathFeatureOptions = new > DrawFeatureOptions(); > > HandlerOptions handlerOptions = new HandlerOptions(); // > <----------- PROBLEM it does not work, there is no constructor!!!!! > drawPathFeatureOptions.setHandlerOptions(handlerOptions) // > <----------- PROBLEM > > PathHandler pathHandler = new PathHandler(); > drawLine = new DrawFeature(vectorLayer, pathHandler, > drawPathFeatureOptions) ;* > > > How to set the handlerOptions property multi to true if I can not even > create this object?? Am I doing something wrong?? > Please help... > > Regards, > Poul > |
From: Paweł P. <ppa...@gm...> - 2010-03-24 10:31:15
|
Hi! I am trying to add new object to database. I story my geometry as MULITLINESTRING so I have to change the *multi *options to *true*. In JavaScript it looks like this: *line: new OpenLayers.Control.DrawFeature( vecotrLayer, OpenLayers.Handler.Path, {handlerOptions: {multi: true}} * and it works! In Java my code looks like this: * DrawFeatureOptions drawPathFeatureOptions = new DrawFeatureOptions(); HandlerOptions handlerOptions = new HandlerOptions(); // <----------- PROBLEM it does not work, there is no constructor!!!!! drawPathFeatureOptions.setHandlerOptions(handlerOptions) // <----------- PROBLEM PathHandler pathHandler = new PathHandler(); drawLine = new DrawFeature(vectorLayer, pathHandler, drawPathFeatureOptions) ;* How to set the handlerOptions property multi to true if I can not even create this object?? Am I doing something wrong?? Please help... Regards, Poul |
From: Mikael C. <mik...@cl...> - 2010-03-19 12:49:41
|
If I understand well, it is a z-index problem between OL and GWT/SmartGWT. Don't know if there's a way around this, I guess you'll go faster by just programmatically removing the features when the tabs are clicked. Any better idea ? 2010/3/19 Felix Bache <nar...@gm...> > Hi there, > > I´m using GWT 2.0.3 and SmartGWT 2.1 together with a snapshot version of > OpenLayers GWT from the reposity. All the maps I use in my projects are > stored in a SmartGWT Tab. If I load a VectorFeature and change to > another Tab the points stay on top of the new content, so these features > are always visible. Is there a way to fix this? I also had this problem > with the standard scale... > > Thanks in advance! > Felix > > > > ------------------------------------------------------------------------------ > Download Intel® Parallel Studio Eval > Try the new software tools for yourself. Speed compiling, find bugs > proactively, and fine-tune applications for parallel performance. > See why Intel Parallel Studio got high marks during beta. > http://p.sf.net/sfu/intel-sw-dev > _______________________________________________ > Gwt-openlayers-users mailing list > Gwt...@li... > https://lists.sourceforge.net/lists/listinfo/gwt-openlayers-users > -- Mikael Couzic Pôle Business Intelligence Groupe Cliris |
From: Felix B. <nar...@gm...> - 2010-03-19 10:15:22
|
Hi there, I´m using GWT 2.0.3 and SmartGWT 2.1 together with a snapshot version of OpenLayers GWT from the reposity. All the maps I use in my projects are stored in a SmartGWT Tab. If I load a VectorFeature and change to another Tab the points stay on top of the new content, so these features are always visible. Is there a way to fix this? I also had this problem with the standard scale... Thanks in advance! Felix |