Re: [OpenLayers-Users] Looping through the features of a WMS layer

2010-08-20 Thread Frank
- > *Von:* users-boun...@openlayers.org [mailto:users-boun...@openlayers.org] > *Im Auftrag von *Frank > *Gesendet:* Donnerstag, 19. August 2010 02:11 > *An:* users@openlayers.org > *Betreff:* [OpenLayers-Users] Looping through the features of a WMS layer > > Hi, > > I want

[OpenLayers-Users] Looping through the features of a WMS layer

2010-08-18 Thread Frank
Hi, I want to get the map of Canada then loop through all provinces, in order to color them differently (I'm going to create a new Vector layer for each province and apply its own styleMap) : var wmsLayer = new OpenLayers.Layer.WMS("Canada", " http://www2.dmsolutions.ca/cgi-bin/mswms_gmap";, {

Re: [OpenLayers-Users] Styling OpenLayer.Control.AgsQueryTask

2010-08-17 Thread Frank
this.layer? (in my case I'll just set displayResults = false). Thanks, Francois On Tue, Aug 17, 2010 at 6:50 PM, Frank wrote: > Hi, > > I'm already able to style a layer, using the styleMap. > > But what I really want to do is when I do a esri query for all STATES (in > Uni

[OpenLayers-Users] Styling OpenLayer.Control.AgsQueryTask

2010-08-17 Thread Frank
Hi, I'm already able to style a layer, using the styleMap. But what I really want to do is when I do a esri query for all STATES (in United States), to just get the list of features in the callback and do any drawing myself. What it does right now is that it draws by default a semi-opaque orange

Re: [OpenLayers-Users] messageRequest method 'DELETE' not supported

2010-06-01 Thread Frank Broniewski
sue, your server does not understand the "DELETE" request ... so you may need to look there for help. Or you can patch the Format.GeoJSON to use another type of request for DELETEs Frank -- Frank BRONIEWSKI METRICO s.à r.l. géomètres technologies d'information géographique rue

Re: [OpenLayers-Users] getLonLatFromPixel in IE

2010-05-25 Thread Frank Broniewski
y.lat; ... } if you enable the console in IE8, you can do inside the event function: console.log(event) to see what you get Frank Am 25.05.2010 15:17, schrieb Luís de Sousa: > Hi Frank, > > Thank you for your help, but the problem isn't registering the listener,

[OpenLayers-Users] Format.geojson.write - missing crs with featurecollection

2010-05-25 Thread Frank Broniewski
Hi, I'm using Format.GeoJSON for talking with my server. When creating new Features and sending them to my server I saw that OL sends the new features as a featurecollection object. But there is no crs attached. Looking at the code, the crs is only attached to instances of OL.Features.Vector.

Re: [OpenLayers-Users] getLonLatFromPixel in IE

2010-05-25 Thread Frank Broniewski
Hi, I use map = new OpenLayers.Map(map_div); ... map.events.register("click", map, showCoords); where showCoords the function for display is. Alternatively see http://dev.openlayers.org/releases/OpenLayers-2.9.1/examples/events.html for an alternate example Frank > > &

[OpenLayers-Users] renderintent not persistent

2010-05-20 Thread Frank Broniewski
;delete"] and this is persistent, but I wonder why the renderintent does not keep its state. Frank -- Frank BRONIEWSKI METRICO s.à r.l. géomètres technologies d'information géographique rue des Romains 36 L-5433 NIEDERDONVEN tél.: +352 26 74 94 - 28 fax.: +352 26 74 94 99 http://www

Re: [OpenLayers-Users] Help with Strategy.save and protocol.http

2010-05-20 Thread Frank Broniewski
nvent the wheel a second time ... Well, thanks for the clarification so far. This should get me going with my project Frank -- Frank BRONIEWSKI METRICO s.à r.l. géomètres technologies d'information géographique rue des Romains 36 L-5433 NIEDERDONVEN tél.: +352 26 74 94 - 28 fax.: +352 26 7

[OpenLayers-Users] Help with Strategy.save and protocol.http

2010-05-19 Thread Frank Broniewski
m sure I have more questions, but these are the most basic ones concerning editing of features. Any info on these internals is greatly welcome Frank -- Frank BRONIEWSKI METRICO s.à r.l. géomètres technologies d'information géographique rue des Romains 36 L-5433 NIE

[OpenLayers-Users] Ie8 Popup Opacity issues

2010-05-17 Thread Frank Broniewski
ch is missing in the setOpacity() method. And there are some more issues with Ie and opacity, see the links mentioned below [1,2,3] I don't know the reason for setting opacity (and others, border, bg-color) by javascript, but would'nt it be better to set them by css altogether? Fr

Re: [OpenLayers-Users] multiple wms Layer

2010-05-03 Thread Frank Broniewski
baselayer can be visible at once, if you define your WMS layer as overlays you should be able to have more than one active Frank -- Frank BRONIEWSKI METRICO s.à r.l. géomètres technologies d'information géographique rue des Romains 36 L-5433 NI

Re: [OpenLayers-Users] Basic GeoServer OpenLayers map

2010-04-26 Thread Frank Broniewski
Hello Steven, if the text layer is at the same level as the HTML page try {location: "txtfile.txt"} . I don't think your relative path gets well translated Frank Am 26.04.2010 09:00, schrieb Steven Venter: > Hi Frank > > Thanks for your help. (this message was also

Re: [OpenLayers-Users] Basic GeoServer OpenLayers map

2010-04-25 Thread Frank Broniewski
t the end of the config ... Please show us a minimal example. Without that it is impossible for us to locate your problem. Frank Am 24.04.2010 08:38, schrieb Steven Venter: > Hi Frank > > If I put > http://localhost:8080/geoserver/wms?service=WMS&version=1.1.0&request=GetMap >

Re: [OpenLayers-Users] IE8 problem with VMS

2010-04-23 Thread Frank Broniewski
Hello, try to make sure that you start the map initialisation when everything else is loaded. I used to use Jquery's $(document).ready() but needed to switch to $(window).load() because ready() fired to early ... Frank Am 23.04.2010 13:56, schrieb Enrico Sartorello: > Hi, > > I&

Re: [OpenLayers-Users] Basic GeoServer OpenLayers map

2010-04-23 Thread Frank Broniewski
27;','',''], format: 'image/png' }, { isBaseLayer: true, singleTile: true } ); Frank Am 23.04.2010 14:11, schrieb Steven Venter: > Hi Frank > &g

Re: [OpenLayers-Users] Correct way to replace the layers in a map with a completely new set?

2010-04-22 Thread Frank Broniewski
Hi, how do you "destroy" the layers? Do you use map.removeLayer()? You could add the new baselayer first and then remove the old ones. But without some example code which shows the problem it is difficult to help you ... Frank Notice: this email is not confidential ;-) Am 23.04.

[OpenLayers-Users] Rootcontainers z-index

2010-04-13 Thread Frank Broniewski
marker layer and right now my markers are below the running track which is somewhat suboptimal ;-) Many thanks Frank -- Frank BRONIEWSKI METRICO s.à r.l. géomètres technologies d'information géographique rue des Romains 36 L-5433 NIEDERDONVEN tél.: +352 26 74 94 - 28 fax.: +352 26 74

Re: [OpenLayers-Users] Search Mailing Lists (via Nabble) does not work

2010-01-14 Thread Frank Broniewski
Nabble has changed to a new version and is now available on n2.nabble.com. Just follow the osgeo path to get to the OpenLayers mailing list Frank -- From: "Barbara Fiederer" Sent: Friday, January 15, 2010 5:38 AM To: Subject: [OpenLa

Re: [OpenLayers-Users] Missing for vector layer

2010-01-14 Thread Frank Broniewski
Thanks for the response, Eric. I tested that already without success. I found meanwhile a Mapserver Bug report concerning this issue: http://trac.osgeo.org/mapserver/ticket/3235 So it's (luckily) not an OpenLayers issue Frank -- From:

[OpenLayers-Users] Missing for vector layer

2010-01-14 Thread Frank Broniewski
tryName: "geom", version: "1.0.0" } ) } ); Frank Broniewski Metrico s.àr.l. ( http://www.metrico.

[OpenLayers-Users] WMSGetFeatureInfo: find out layer names

2010-01-05 Thread Frank Broniewski
OpenLayers.Format.WMSGetFeatureInfo(); var features = reader.read(response.text); Does the read_msGMLOutput give me more options to work with the returned XML? Or do I need to convert the response to an OpenLayers.Format.XML first? Many thanks Frank Frank Broniewski Metrico s.àr.l. ( http://www.metrico.lu ) 36

Re: [OpenLayers-Users] Mouseclick position in IE6

2009-07-21 Thread Frank Broniewski
and right had the same value as the misalignment from pixel click calculation. Assigning a width per javascript solves the wrong calculation. Maybe this info is useful to someone else ... Frank On Tuesday 21 July 2009 09:45:36 Frank Broniewski wrote: > Hello list, > > I have a map in a

[OpenLayers-Users] Mouseclick position in IE6

2009-07-21 Thread Frank Broniewski
on? I thought, Events.js->getMouseposition would be good for a start. But I fear to break more than repair when I substract some value from the determined mouse position for IE6. Many thanks Frank -- Frank Broniewski Metrico s.àr.l. ( http://www.metrico.lu ) 36, rue des Romains L-5433 Nied

Re: [OpenLayers-Users] Customize controls

2009-07-08 Thread Frank Broniewski
1); } else { zoomLevel += Math.round(deltaY/this.zoomStopHeight); } this.map.zoomTo(zoomLevel); this.moveZoomBar(); this.mouseDragStart = null; OpenLayers.Event.stop(evt); } } On Wednesday 08 July 2009 09:17:02 Frank Broniewski wrote:

[OpenLayers-Users] Customize controls

2009-07-08 Thread Frank Broniewski
n panel through means of css and style the slider? Or is it necessary to override the draw method in order to achieve that? many thanks Frank -- Frank Broniewski Metrico s.àr.l. ( http://www.metrico.lu ) 36, rue des Romains L-5433 Niederdonven Luxembourg Fon: +352 26 74 94 28 Fax: +

Re: [OpenLayers-Users] Control.WMSGetFeatureInfo styles are "undefined"

2009-06-24 Thread Frank Broniewski
Ok, I have created a bug report: http://trac.openlayers.org/ticket/2157 I hope I did everything right ... Frank -- Frank Broniewski Metrico s.àr.l. ( http://www.metrico.lu ) 36, rue des Romains L-5433 Niederdonven Luxembourg Fon: +352 26 74 94 28 Fax: +352 26 74 94 99

[OpenLayers-Users] Control.WMSGetFeatureInfo styles are "undefined"

2009-06-24 Thread Frank Broniewski
clicking', layers: [strasse], queryVisible: true, infoFormat: 'application/vnd.ogc.gml' } ) }; infoControls['click'].events.register("getfeatureinfo", this, showInfo); map.addControl(infoControls['click']); -- Fr

[OpenLayers-Users] TMS Tileorigin property bug?

2009-06-02 Thread Frank Broniewski
wanted to mention that ... :-) Frank -- Frank Broniewski Metrico s.àr.l. ( http://www.metrico.lu ) 36, rue des Romains L-5433 Niederdonven Luxembourg Fon: +352 26 74 94 28 Fax: +352 26 74 94 99 ___ Users mailing list Users@openlayers.org http

Re: [OpenLayers-Users] IE7 popup problem with 2.8 rc2

2009-05-08 Thread Frank Broniewski
javascript. Both files share the same data I just adopted the link to the openlayers library. The server is sometimes somewhat slow though at times ;-) On Friday 08 May 2009 13:44:00 Christopher Schmidt wrote: > On Fri, May 08, 2009 at 11:29:43AM +0200, Frank Broniewski wrote: > >

[OpenLayers-Users] IE7 popup problem with 2.8 rc2

2009-05-08 Thread Frank Broniewski
ry.getBounds().getCenterLonLat(), null, content, null, true, function (evt) { selectControl.unselect(selectedFeature); }); popup.minSize = new OpenLayers.Size(100,150); popup.maxSize = new OpenLayers.Size(400,300); -- Frank Broniewski Metrico s.àr.l. ( http://www.metrico.lu ) 36

Re: [OpenLayers-Users] selectcontrol and layers property

2009-05-07 Thread Frank Broniewski
I didn't find the time to reply yesterday, but I want to confirm that the rc2 indeed solves this. And it works fine so far with my 5 KML Layers. Good work! And by comparing the two docs (for v2.7 and v2.8) I can see that a lot of work has been done at the Control.SelectFeature level. Fran

[OpenLayers-Users] selectcontrol and layers property

2009-05-07 Thread Frank Broniewski
quot; I only can see that there is some kind of reference to the layers property -> "array of layers", but I fail to understand the meaning of this all ... If someone could shed some light onto the matter I would be grateful Frank -- Frank Broniewski Metrico s.àr.l. ( http://www.me

Re: [OpenLayers-Users] Problem in displaying GML layer

2008-12-09 Thread Frank Broniewski
me. Did you check your permissions on the gpx file (read)? Is the path correct? Did you check if your gpx file is valid? I am using the definition below, maybe it helps you. Frank pt = new OpenLayers.Layer.GML ( &q

Re: [OpenLayers-Users] hiking trail

2008-10-06 Thread Frank Broniewski
ach node and way some text for a popup > > How may I > - store nodes and ways and informations together in one GPX? > - display it also together in a layer? > > Thanks, Markus > > PS: What do you mean with this: > > Have you done this, "ie used the format"

[OpenLayers-Users] KML / Vector Performance

2008-09-12 Thread Frank Broniewski
engine is used? Many thanks for some enlightenment. Frank ___ Users mailing list Users@openlayers.org http://openlayers.org/mailman/listinfo/users

Re: [OpenLayers-Users] KML layer and zoom in hassle

2008-07-13 Thread Frank Broniewski
On Saturday 12 July 2008 14:35:09 Christopher Schmidt wrote: > On Fri, Jul 11, 2008 at 04:59:31PM +0200, Frank Broniewski wrote: > > Dear list, > > > > I am having some kind of weird issue with my KML layer in Openlayers. My > > application consists of two layers, a

[OpenLayers-Users] KML layer and zoom in hassle

2008-07-11 Thread Frank Broniewski
h a nice weekend and many thanks for any tipps Frank -- Frank Broniewski Metrico s.àr.l. ( http://www.metrico.lu ) 36, rue des Romains L-5433 Niederdonven Luxembourg Fon: +352 26 74 94 1 Fax: +352 26 74 94 99 ___ Users mailing list Users@openlayers.or

Re: [OpenLayers-Users] DEM browsers in OpenLayers

2008-04-09 Thread John R. Frank
On Wed, 9 Apr 2008, bwoodall wrote: > Well, I needed an excuse to play with the Control.Hover, which is the > basis for http://wardrobe.dhs.org/jrf/index.html. The code is rather > crude, but it works on Debian and FF (no performance features like > multi-urls or TC so the server might be slow ).

Re: [OpenLayers-Users] DEM browsers in OpenLayers

2008-04-08 Thread John R. Frank
> Has anyone seen a digital elevation model viewer (with data) freely > available on the Web? Perhaps using OpenLayers? I'm looking for an already operating tool that exposes the actual elevation data -- maybe as a third dimension in the mouse coordinate control. Perhaps I should ask on geowanki

[OpenLayers-Users] DEM browsers in OpenLayers

2008-04-08 Thread John R. Frank
Has anyone seen a digital elevation model viewer (with data) freely available on the Web? Perhaps using OpenLayers? John ___ Users mailing list Users@openlayers.org http://openlayers.org/mailman/listinfo/users

Re: [OpenLayers-Users] Map wrapping?

2008-03-08 Thread John R. Frank
> Hi - OpenLayers looks like a very nice mapping solution for us, if it > wraps maps, which seems uncertain. Does OpenLayers offer this > functionality when maps are panned or clicked-and-dragged? I think you are asking for this: http://openlayers.org/dev/examples/wrapDateLine.html Yes? Tha

Re: [OpenLayers-Users] MediaWikia

2007-11-03 Thread John R. Frank
On Fri, 2 Nov 2007, Robert J Becraft wrote: > Has anyone ever set up or tried to use the OpenLayers code in MediaWiki Robert, please let us know when you get this to work, so we can document it for everyone. This link might also be useful to you: http://jimbojw.com/wiki/index.php?title=Raw_HTML_

[OpenLayers-Users] improvements in the OpenLayers project's licenses

2007-09-13 Thread John R. Frank
layers.org/tags/ and provided in archive form from www.openlayers.org" We intend to make these changes in a few days. If you have any questions or comments, please direct them to users@openlayers.org Yours, John Frank on behalf of the OpenLayers PSC [1] http://labs.metacarta.com/license-explanatio