Re: [OpenLayers-Users] How to SetUp Open Layers for an XML/WMS Service

2010-06-29 Thread Roald de Wit
Hi, On 30/06/10 16:35, Kalyan Kamepalli wrote: var map = new OpenLayers.Map('map', { maxExtent: new OpenLayers.Bounds(545130525,258147752,546437807,259455034) maxResolution: 5000 } ); Try adding a comma at the end of your maxExtent line, like below: var map = new OpenLayers.

Re: [OpenLayers-Users] Options for fighting the 180 degree problem - any server able to do it? Other approaches?

2010-06-08 Thread Roald de Wit
Hi, Please note that GeoServer's dateline wrapping solution only works for WMS layers. There is no official solution for vector layers yet. At the Australian Bureau of Meteorology we are doing some work to get around the issue (with limited success). I'd be happy to discuss our approach and pos

Re: [OpenLayers-Users] Does anyone have the projection definitions for all EPSG codes in Proj4js format?

2010-06-05 Thread Roald de Wit
Hi Vadim, I don't think there is any pre-cooked list out there, but it should not be hard to create one yourself. Just write a script that loops through all EPSG codes that you're interested in, requests the proj4js output from spatialreference.org and adds that to one .js file (or many if you

Re: [OpenLayers-Users] WFS Not Returning Coordinates

2010-05-28 Thread Roald de Wit
Hi Blake, You can work around this issue by providing the property names explicitly in the options of your protocol, including the name of the geometry. Example: propertyNames: 'year,seq,name,storm_start,storm_end,msGeometry'.split(',') Note that MapServer by default chooses 'msGeometry'

Re: [OpenLayers-Users] Nodelist Info / GetFeatureInfo not working

2010-05-14 Thread Roald de Wit
sition: new OpenLayers.Pixel(2, 15) >> })); >> >> map.events.register('click', map, function (e) { >> document.getElementById('nodelist').innerHTML = "Loading... please >> wait..."; >> var params = { >> REQUEST: "Ge

Re: [OpenLayers-Users] doing a search with a buffer

2010-05-14 Thread Roald de Wit
Hi, What you want is more difficult than I realised. If you can retrieve the geometry of the feature you are interested in, you could use that in your filter (instead of the point). Have a look at the getfeature-wfs example on how to do that [1]. If you cannot retrieve your geometry it's going

Re: [OpenLayers-Users] doing a search with a buffer

2010-05-09 Thread Roald de Wit
Hi, From your other post ('drawing a polygon over selected region'), I assume that you're using MapServer. You can quite easily add a spatial filter to your WFS request. var radius = 100 * 1000; // 100km // create point from your lat and lon of your selected feature

Re: [OpenLayers-Users] Nodelist Info / GetFeatureInfo not working

2010-05-09 Thread Roald de Wit
an't believe why the same code with the same request > on the same server is once getting a response and the other time it is > not. Is there a possibility that it is a proxy-issue or maybe a > problem with the encoding? > > Thanks, Pascal > > Am 09.05.2010 um 01:05 schrieb

Re: [OpenLayers-Users] Nodelist Info / GetFeatureInfo not working

2010-05-08 Thread Roald de Wit
Hi, Have you looked at the request that OL is sending to GS? The FireBug addin for Firefox has a 'Net' tab that shows you every request that your application sends, including what response it gets back. That might help you find out what's wrong. Regards, Roald On 09/05/10 03:21, boxplot wrote:

Re: [OpenLayers-Users] WFS-T insert error

2010-05-08 Thread Roald de Wit
Hi João, I noticed that the coordinates that get inserted seem to be in spherical mercator projection (or at least some projection that uses meters instead of degrees) without specifying the SRS in the WFS POST anywhere. Try by either providing the correct projection or by converting your point

Re: [OpenLayers-Users] Show huge vector layers

2010-05-03 Thread Roald de Wit
Hi René, About a year ago, I tackled a similar problem [1] by putting FeatureServer [2] in front of my WFS server, acting as a WPS (sort of). Nowadays there are a few applications that can do real WPS (OGC standard), like PyWPS, Zoo, deegree (IIRC). The nice thing with FS was that I only need

Re: [OpenLayers-Users] Possible to change feature style before adding feature collection?

2009-11-19 Thread Roald de Wit
Hi, adsaero wrote: > Your suggestion might work! Could you point me to some kind of reference > online where I can check into that further? > This should help you: http://docs.openlayers.org/library/feature_styling.html It's a bit of a read, but well worth it. And here is an example: http://

Re: [OpenLayers-Users] Possible to change feature style before adding feature collection?

2009-11-18 Thread Roald de Wit
your last line: track_layer.addFeatures(testfeatures); ? Regards, Roald -- Roald de Wit Software Engineer roald.de...@lisasoft.com Commercial Support for Open Source GIS Software http://lisasoft.com/LISAsoft/SupportedProducts/ The contents of this email are confidential and may be subject to legal or

Re: [OpenLayers-Users] Possible to change feature style before adding feature collection?

2009-11-18 Thread Roald de Wit
.openlayers.org/apidocs/files/OpenLayers/Layer/Vector-js.html#OpenLayers.Layer.Vector.EVENT_TYPES Regards, Roald -- Roald de Wit Software Engineer roald.de...@lisasoft.com Commercial Support for Open Source GIS Software http://lisasoft.com/LISAsoft/SupportedProducts/ The contents of this email are confidential and may be

Re: [OpenLayers-Users] Using MapCruncher-produced tiles with OpenLayers; We'll pay someone :)

2009-11-15 Thread Roald de Wit
Hi, Maybe you can show an example of what goes wrong. I've never used MapCruncher. From their site, it seems that it should output in spherical mercator projection [1]. That means that your base maps and any other raster layers must be in that projection too. Vector layers can be reprojected i

Re: [OpenLayers-Users] GeoServer Proxy Extension OpenLayers

2009-11-13 Thread Roald de Wit
Hi stash, I could be mistaken, but the GS ProxyExtension is not going to help you if you don't serve your OL web app from the same domain (localhost:8080 in your case, IIRC). Can you give a bit more information on what your setup looks like? Do you use Apache for example or another web server?

Re: [OpenLayers-Users] WFS

2009-11-11 Thread Roald de Wit
t; I read tasmania_roads from my GeoServer( localhost:8080 ), but the > tasmania_roads not appear. Where is the mistake? > What if you add 'localhost:8080' to the list of allowedHosts in your proxy.cgi? Regards, Roald -- Roald de Wit Software Engineer roald.de...@lisasoft.com Co

Re: [OpenLayers-Users] Broken image for no tile, on Chrome

2009-11-11 Thread Roald de Wit
Hi Warren, Warren Vick wrote: > Hi Andreas, > > I was on 2.7, but have just updated to 2.8. > > I already had this line in my code, but unfortunately missing tiles still > show as broken on Chrome. > OpenLayers.Util.onImageLoadErrorColor = "transparent"; > > I tried the CSS too, but still no joy.

Re: [OpenLayers-Users] White band inside maps

2009-11-10 Thread Roald de Wit
Alessandro Ronchi wrote: > Do you know what can cause those white bands on this openlayers app: > http://ambiente.comune.forli.fc.it/antenne/mappa/ > > ? > .content img { margin: ... } :-D Regards, Roald ___ Users mailing list Users@openlayers.o

Re: [OpenLayers-Users] store getfeatureinfo results in variables

2009-11-05 Thread Roald de Wit
80? And your GeoServer is on port 8080? If you place your proxy.cgi in your cgi-bin directory, it should work (make sure its exececutable). Or otherwise, why not setup Apache to proxy pass all requests to /geoserver/* to http://localhost:8080/geoserver/*? Then you don't need a proxy script at al

Re: [OpenLayers-Users] GML2/GML3 functions no read function

2009-11-04 Thread Roald de Wit
there another way to read an XML tree. > > regards > > > Dave. > ___ > Users mailing list > Users@openlayers.org > http://openlayers.org/mailman/listinfo/users > -- Roald de Wit Software Engineer roald.de...@lisasoft.com C

Re: [OpenLayers-Users] Marker and projection

2009-11-04 Thread Roald de Wit
Daniel, It is better to use Layer.Vector instead. You can style vector layers to have icons too. If you manually add points to a Vector layer, you'd still need to reproject yourself (IIRC). Regards, Roald Daniel Degasperi wrote: > Hi, > is there any plan to integrate the reprojection in "Marke

Re: [OpenLayers-Users] Highlighting changes in the KML layer

2009-11-04 Thread Roald de Wit
as > 'old'). > > Supposing that I do that - what would I need to do to change the aspect > (change color/make bigger) of the "new" items? > > I'm afraid this will consume some memory and resources - but I guess I > will see when it's ready... &

Re: [OpenLayers-Users] split WMS GetFeatureInfo results

2009-11-04 Thread Roald de Wit
Hi, Yes, your proxy script it probably not in the right location. Is it in the same directory as your example html? If not, change either the location of your proxy script or the path pointing to it in the example. You also need to make sure that your web server can run that script. Good luck,

Re: [OpenLayers-Users] split WMS GetFeatureInfo results

2009-11-04 Thread Roald de Wit
butes and show them. Here is a standard GetFeature example using WFS: http://www.openlayers.org/dev/examples/getfeature-wfs.html Roald de Wit wrote: > Hi stash, > > stash wrote: > >> Hello, >> thanks for your answer. I use geoserver and therefore I could use WFS too. >

Re: [OpenLayers-Users] split WMS GetFeatureInfo results

2009-11-04 Thread Roald de Wit
Hi stash, stash wrote: > Hello, > thanks for your answer. I use geoserver and therefore I could use WFS too. > But with a WFS you get only a xml (gml) I thought and i want to display the > featureinfo. is this possible with wfs, too? > > Could you show me an example of how to integrate such an wfs

Re: [OpenLayers-Users] Problems adding polygon data from GML

2009-11-04 Thread Roald de Wit
Hi David, David Alda Fernandez de Lezea wrote: > Is there anything here that makes you know that the response of the WFS > Service is in GML v3? > > How can you specify it in the map file? > > The getFeature request I use is this: > > http://192.168.1.65/cgi-bin/mapserv.exe?map=../htdocs/MFD/ejem

Re: [OpenLayers-Users] split WMS GetFeatureInfo results

2009-11-04 Thread Roald de Wit
Hi, If you want more control *and* if your WMS server supports WFS (like MapServer and GeoServer), you could also consider sending a WFS GetFeature request and tell the service exactly what attributes you want to have returned. You can retrieve them as GML or GeoJSON for example (or KML, etc)

Re: [OpenLayers-Users] Highlighting changes in the KML layer

2009-11-04 Thread Roald de Wit
Hi Adrian, Adrian Popa wrote: > Thank you for the hint. I suppose I shouldn't expect to see a working > demo of what I need :) > Do you know if the patches presented in ticket 1259 are already part > of openlayers (since the latest version is from january last year?) The patches in that ticket a

Re: [OpenLayers-Users] Grouping Features into "one" feature using Styles or other means

2009-10-05 Thread Roald de Wit
hen be able to see every point applicable when zoomed in. Have you checked out the OpenLayers examples page [1]? Type in the 'Filter by keywords' field the word 'cluster' and you'll see two examples that do exactly what you are looking for. :-) [1] http://openlayers.org/dev/examp

Re: [OpenLayers-Users] viewing an external webpage within below openlayers map

2009-10-05 Thread Roald de Wit
he name of your (i)frame (you would need to load jQuery before you can do this) It would assume you have an (i)frame with the name 'framename' like this: But, this is just one option. Others might have better suggestions. Regards, Roald [1] http://jquery.com/ -- Roald de Wit So

Re: [OpenLayers-Users] Result of expression 'map' [undefined] is not an object.

2009-10-04 Thread Roald de Wit
gt;>>>> } >>>>>> ); >>>>>> }; >>>>>> >>>>>> var cities = new OpenLayers.Layer.GML >>>>>> ("7th Century Cities", "data/cities.gml", >>>>>> { >>>>

Re: [OpenLayers-Users] rotating vectors with the mouse

2009-09-30 Thread Roald de Wit
Hi Kelly, kstump wrote: > I'm trying to implement a special handler that will rotate a shape around a > point when the user drags it, instead of actually moving the shape, and I'm > getting a little lost in all the choices... > > does it make sense to implement a new "move" in Openlayers.Handler.D

Re: [OpenLayers-Users] Forcing a redraw of a Vector Layer

2009-07-07 Thread Roald de Wit
h your patch? Regards, Roald -- Roald de Wit Software Engineer roald.de...@lisasoft.com Commercial Support for Open Source GIS Software http://lisasoft.com/LISAsoft/SupportedProducts/ The contents of this email are confidential and may be subject to legal or professional privilege and copyright.

Re: [OpenLayers-Users] Forcing a redraw of a Vector Layer

2009-07-06 Thread Roald de Wit
Styles: > true, extractAttributes: true })})}); > map.addLayer(locations); > > setTimeout('locations.redraw()', 3); > > Regards, > Adrian > > ___________ > Users mailing list > Users@openlayers.org > http://o

[OpenLayers-Users] Blog post: Erdas IWS Server & ECWP for OpenLayers

2009-06-11 Thread Roald de Wit
of the layers on iws.erdas.com for your web maps experiments. Have fun, and let us know how you get on. [1] http://iws.erdas.com/gis/openlayers-and-image-web-server.aspx -- Roald de Wit Software Engineer roald.de...@lisasoft.com Commercial Support for Open Source GIS Software http://lisas

Re: [OpenLayers-Users] Vector-like feature interaction with large, complex layers

2009-06-05 Thread Roald de Wit
Hi Tom, When your geometries are too many or too complex (or both) you need to compromise somewhere. There are 2 more approaches you can take: 1) Use an approach similar to what Eric mentioned. Use a WMS layer, but on hover send a request to the server to get the id (and possible other attribu

Re: [OpenLayers-Users] Save Strategy

2009-06-02 Thread Roald de Wit
t an error message: " OpenLayers.Strategy.Save is not a constructor". >>> >> You most probably don't use a version of OpenLayers that includes the >> strategy. >> >> >>> it's wrong? >>> >>> Thanks! >>> >

Re: [OpenLayers-Users] Example of creating a POI with attributes

2009-06-02 Thread Roald de Wit
Hi Mike, If you could make this control availabe somehow, that would be great! It might be a nice candidate for an addin [1]. Cheers, Roald [1] http://trac.openlayers.org/wiki/Addins Mike Adair wrote: > I did a EditFeatureAttributes control a few months ago that first did a > WFS DescribeFeat

Re: [OpenLayers-Users] How can I display a map with a position changing marker.

2009-05-17 Thread Roald de Wit
do it? The vector? > Now is the time to look at the OL examples: http://openlayers.org/dev/examples/ :-) Regards, Roald -- Roald de Wit Software Engineer roald.de...@lisasoft.com Commercial Support for Open Source GIS Software http://lisasoft.com/LISAsoft/SupportedProducts/ The conte

Re: [OpenLayers-Users] problem loading GML

2009-05-16 Thread Roald de Wit
Hi Nicholas, First of all: please reply to the list instead of directly to me! :-) Nicholas Efremov-Kendall wrote: > Hi Roald, > > The issue is that in the localhost (which is apache not IIS) it > doesn't give an error, and then does not show the points. I thought > the issue was because I didn

Re: [OpenLayers-Users] problem loading GML

2009-05-16 Thread Roald de Wit
Hi Nicholas, Nicholas Efremov-Kendall wrote: > I'm trying to load a GML file as an overlay. My localhost > implementation does not produce an error, but will not show the GML > points. The live version on angeloelmi.com > gives me a pop-up error, which says that the GML

Re: [OpenLayers-Users] One layer with two wms servers

2009-05-12 Thread Roald de Wit
t;> >> >> ___ >> Users mailing list >> Users@openlayers.org >> http://openlayers.org/mailman/listinfo/users >> > ___ >

Re: [OpenLayers-Users] Circle Function

2009-04-29 Thread Roald de Wit
lat,lng,radius,id,description,lineColour,fillColour){ > > > > } > > > > href=”javascript:createCircle(’-25.12345’,’26.12345’,’250’,’1’,’Description’,’#0,’#C0C0C0’)”>Circle > > > > If possible, if I click on the circle it should display a popup with >

Re: [OpenLayers-Users] FW: SelectFeatureControl invalid when set style to vector?

2009-04-29 Thread Roald de Wit
penLayers: http://docs.openlayers.org/library/feature_styling.html Regards, Roald -- Roald de Wit Software Engineer roald.de...@lisasoft.com Commercial Support for Open Source GIS Software http://lisasoft.com/LISAsoft/SupportedProducts/ The contents of this email are confidential and may be subj

Re: [OpenLayers-Users] Error when using XMLHTTPRequest (throughrefreshing a wfs layer every n seconds)

2009-04-28 Thread Roald de Wit
his new license is causing us (and probably more projects). Regards, Roald [1] http://www.dwheeler.com/essays/floss-license-slide.html -- Roald de Wit Software Engineer roald.de...@lisasoft.com Commercial Support for Open Source GIS Software http://lisasoft.com/LISAsoft/SupportedProducts

Re: [OpenLayers-Users] Setting default header parameter for all ajax requests

2009-04-28 Thread Roald de Wit
Authorization: "BASIC " + usrPsw} >> } >> ); >> >> But when I look at the request header sent it does not appear.. >> >> Help [?] >> >> my rgds >> >> Milan >> > > > > >> __

Re: [OpenLayers-Users] Node was not found: code:8 - fixed in 2.6+ ?????

2009-04-27 Thread Roald de Wit
Hi Peter, First of all, 2.8 will be released soon, so you might want to skip 2.7 altogether. Second: getFeaturesLayer().addFeatures([.feature]); You seem to be adding an array with a '.feature'. Note the dot. Is that a typo? Why not try 2.7 or 2.8-rc1 with a development copy of your site? Th

Re: [OpenLayers-Users] please help to understand loading of geojson layers

2009-04-26 Thread Roald de Wit
Hi Timmie, Timmie wrote: > Can you help me to understand how they load the statistical data? > It is done within the world_borders layer by GeoJSON fromat. > > But where and how to they get the file? > http://www.redhat.com/about/where-is-open-source/world_borders.js ('View Source' and FireBug

Re: [OpenLayers-Users] change projection layer dynamically

2009-04-26 Thread Roald de Wit
mage/png"} , buffer: 0, minScale:8607} > ); > > thanks for trying. > > 2009/4/26 Roald de Wit <mailto:roald.de...@lisasoft.com>> > > Hi, > > I'm trying to find out if it is one layer (or layername) that you > request or dif

Re: [OpenLayers-Users] change projection layer dynamically

2009-04-25 Thread Roald de Wit
Hi, I'm trying to find out if it is one layer (or layername) that you request or different layers (or layer names) for different zones. If it is the former, I would have no idea how to solve your problem. If it is the latter, the MapServer solution would be perfect. You would then define 3 lay

Re: [OpenLayers-Users] change projection layer dynamically

2009-04-25 Thread Roald de Wit
fine the new > projection when setting the map. The only problem is that I have to be > comparing the coordinates with every new zoom or pan. > > > > > 2009/4/25 Roald de Wit <mailto:roald.de...@lisasoft.com>> > > Hi Toni, > > OpenLayers cannot com

Re: [OpenLayers-Users] DragFeature - how to prevent dragging of features??

2009-04-24 Thread Roald de Wit
Hi Plen, In OpenLayers 2.8 you will be able to select features on multiple layers! So, the easiest option for you is to have 2 layers, one with a drag control and the other without and a selectFeature control that handles both layers. For an example how to select features on multiple layers, se

Re: [OpenLayers-Users] change projection layer dynamically

2009-04-24 Thread Roald de Wit
Hi Toni, OpenLayers cannot combine WMS layers with different projections nor can it easily switch projections, certainly not on the fly based on the region you are viewing! What I advise you to do is the following if you have no control over these WMS servers and cannot have them serve all imag

Re: [OpenLayers-Users] Creating an ogc:Filter combining ogc:BBOX and others

2009-04-24 Thread Roald de Wit
Just created a ticket for this: http://trac.openlayers.org/ticket/2061 Roald de Wit wrote: > Hi David, > > As you figured and Chris advised, use the new WFS protocol (available in > 2.8-rc1 onwards). > Have a look here how to have OL create the filter for you [1]. > > A &#

Re: [OpenLayers-Users] How to use OpenLayers requesting WFS with Spatial Operations

2009-04-24 Thread Roald de Wit
Hi Myeonghun Jeong, Can you explain what you try to do? Do you want to display a WFS layer on your map that automatically requests the correct features within the BBOX of the viewport or do you want to have control over what BBOX you send to the WFS server and send your WFS 'manually'? Maybe i

Re: [OpenLayers-Users] Creating an ogc:Filter combining ogc:BBOX and others

2009-04-24 Thread Roald de Wit
Hi David, As you figured and Chris advised, use the new WFS protocol (available in 2.8-rc1 onwards). Have a look here how to have OL create the filter for you [1]. A 'hidden' feature of the new WFS Protocol, or better: the BBOX strategy is to combine the BBOX with your own filter! Here is an ex

Re: [OpenLayers-Users] Map size without javascript

2009-04-19 Thread Roald de Wit
t; > > > > > Med venlig hilsen > > Ian Wermer Gibson > IT konsulent > > JO Informatik ApS > Trækbanen 16 A 1.sal > 3000 Helsingør > (+45) 49 20 20 67 > > Dir. tlf: (+45) 48 40 40 16 * i...@jo-informatik.dk > > __

Re: [OpenLayers-Users] Javascript Error - ScrollWheel disabled - IE - scroll on map

2009-02-24 Thread Roald de Wit
egards, Roald -- Roald de Wit Software Engineer roald.de...@lisasoft.com Commercial Support for Open Source GIS Software http://lisasoft.com/LISAsoft/SupportedProducts/ The contents of this email are confidential and may be subject to legal or professional privilege and copyright. No represen

Re: [OpenLayers-Users] Javascript Error - ScrollWheel disabled - IE - scroll on map

2009-02-19 Thread Roald de Wit
> up the latest build and start afresh. > > Do you need a copy of the mod? I installed it directly in the single file > build and could copy out the lines if you need it. > > David > > -Original Message- > From: Roald de Wit [mailto:roald.de...@lisasoft.com

Re: [OpenLayers-Users] Problems with OL and jQuery UI in IE6/7

2009-02-19 Thread Roald de Wit
Hi Fredrik, Does your problem still occur when you do a 'document.namespaces' [1] before executing any other JavaScript? Cheers, Roald [1] http://www.mail-archive.com/users@openlayers.org/msg01838.html Lindmark Fredrik wrote: Thank you for your answer but it unfortunatly doesent solve my pro

Re: [OpenLayers-Users] Javascript Error - ScrollWheel disabled - IE - scroll on map

2009-02-03 Thread Roald de Wit
sted patch and will go with the try/catch method you described. Assuming you did as you described below: put the construction around the whole contents of 'getMousePosition', there is no need for a copy of the mod. Thanks anyway! Cheers, Roald > David > > -----Original

Re: [OpenLayers-Users] Javascript Error - ScrollWheel disabled - IE - scroll on map

2009-02-02 Thread Roald de Wit
: > > > itbeyond_david > > > > __________ > >Check out our websites: www.ExplorOz.com and www.itbeyond.com.au > > > __ --

Re: [OpenLayers-Users] Hover control sample (share)

2009-01-19 Thread Roald de Wit
l > > > > This combine the above idea ( multiple data sources ) with the Hover > > control. The result is quite fast. What do you think ? > > This is a good idea! But it seems there is a lot of work to do on the > server side to prepare all the different detail leve

Re: [OpenLayers-Users] Cluster strategy on markers

2008-12-21 Thread Roald de Wit
Is there any form of having marker > clustering. I’ve successful used the cluster strategy on Vector type > layers but that strategt can’t be applied to Marker Layers right? Is > there any workaround for this? > > > > Thanks. > > > > Regards, > > > > Joã

Re: [OpenLayers-Users] OpenLayers Case Studies

2008-12-21 Thread Roald de Wit
our story to the > public for now, you can also contact me directly, but the mailing list > is always a better place to start.) > > Looking forward to feedback on the existing case study, or feedback from > you if you think your organization can be a case study. > > Regards, -- Roal

Re: [OpenLayers-Users] New PSC Member: Eric Lemoine

2008-12-01 Thread Roald de Wit
Congratulations Eric! Nice to see you are a PSC member now! Cheers, Roald On Tue, 2008-12-02 at 10:47 +1030, Erik Uzureau wrote: > The OpenLayers Project Steering Committee is proud to announce our > newest and eighth member: Eric Lemoine! > > Eric works for Camp-to-Camp and has been a solid par

Re: [OpenLayers-Users] How to add WMS Layer published by MapGuide

2008-10-06 Thread Roald de Wit
Hey Carls, carls wrote: > but another problem: > how to set the returned image as transparent? > Try adding "transparent: true" to your 'optionswms' . Cheers, Roald ___ Users mailing list Users@openlayers.org http://openlayers.org/mailman/listinfo/u

Re: [OpenLayers-Users] SelectFeature hover control interfering with click-and-drag

2008-09-07 Thread Roald de Wit
the Unsolicited > Electronic Messages Act 2007. If you do not wish to receive similar > communications in future, please notify the sender of this message. > ---------- > > > > > > This message has been scanned for malware by SurfControl plc. >

Re: [OpenLayers-Users] dynamic generated kml-layer

2008-06-16 Thread Roald de Wit
or him (dunno what he has running server side). -- Roald de Wit Software Engineer [EMAIL PROTECTED] Commercial Support for Open Source GIS Software http://lisasoft.com/LISAsoft/SupportedProducts/ ___ Users mailing list Users@openlayers.org http://o

Re: [OpenLayers-Users] dynamic generated kml-layer

2008-06-16 Thread Roald de Wit
sure how to dynamically add the current zoomlevel etc. Make sure you use Firebug in Firefox to test what requests are sent to your server. I hope this helps you in the right direction. Kind regards, Roald -- Roald de Wit Software Engineer [EMAIL PROTECTED] Commercial Support for Open Source

Re: [OpenLayers-Users] Disable Vector Layer Mouseover--Spinning CPU

2008-05-11 Thread Roald de Wit
Maybe you can provide a public URL that we can visit, so we can see what is happening and what the code is you're using? I cannot recall ever having experienced something like this, so I'm curious what causes this. Regards, Roald -- Roald de Wit Software Engineer [EMAIL PROTECTE

Re: [OpenLayers-Users] by example

2008-05-11 Thread Roald de Wit
add a 'view source' link to the examples with the contents syntax highlighted? Another thing: maybe make the left frame resizable? Cheers, Roald -- Roald de Wit Software Engineer [EMAIL PROTECTED] Commercial Support for Open Source GIS Software http://lisasoft.com/LISAsoft/Supp

Re: [OpenLayers-Users] CloudAmber drop shadow

2008-04-29 Thread Roald de Wit
list get easily forgotten, which would be a pity. Regards, Roald [1] http://trac.openlayers.org/wiki/HowToContribute -- Roald de Wit Software Engineer [EMAIL PROTECTED] Commercial Support for Open Source GIS Software http://lisasoft.com/LISAsoft/Supporte

Re: [OpenLayers-Users] Transparent WMS overlay on top of a Google layer

2008-04-11 Thread Roald de Wit
Hi Erik, You're nearly there! You need to set a maxResolution option, say: maxResolution: 156543.0339, for example. I don't know why that is (can somebody please explain?). You also need to change you projection to a projection object instead of a string (although in your example you can get

Re: [OpenLayers-Users] Help with Openlayers & Mapserver WMS

2008-02-18 Thread Roald de Wit
he > openlayers default of EPSG:4326 (using ogr2ogr OUT.shp IN.shp -a_srs > EPSG:4326). > > Any help would be appreciated. > > Thanks Heaps > > Neil > ___ > Users mailing list > Users@openlayers.org > http://op

Re: [OpenLayers-Users] redrawing a layer?

2008-01-22 Thread Roald de Wit
icer if any layer could be reloaded with something like layer.reload() or layer.refresh(). If there is more support for a more elegant way of refreshing, I'm more than happy to create a ticket to request for a feature like this. Greetings, Roald -- Roald de Wit Software Engineer [EMAIL PROTECTE

Re: [OpenLayers-Users] Change colors on a selected polygon (feature)

2008-01-22 Thread Roald de Wit
ture will be included in the next version of OL: 2.6. I presume that 2.6 will be released somewhere in March/April, so if you can wait for that, you should be fine. Roald -- Roald de Wit Software Engineer [EMAIL PROTECTED] Commercial Support for Open Source GIS Software http://lisasoft.com

Re: [OpenLayers-Users] GetFeatureInfo problems

2008-01-20 Thread Roald de Wit
GISLayerGetShape: DECLARE mycursor2 BINARY CURSOR FOR SELECT > "mag"::text,"depth"::text,asbinary(force_collection(force_2d(pos)),'NDR') > from public.quake_small WHERE codee = '0721' \r > > which returns results in Pgadmin query tool. > > B

Re: [OpenLayers-Users] Proxy settings again

2008-01-20 Thread Roald de Wit
fix 5 Hope this brings you any further. Kind regards, -- Roald de Wit Software Engineer [EMAIL PROTECTED] Commercial Support for Open Source GIS Software http://lisasoft.com/LISAsoft/SupportedProducts/ ___ Users mailing l

Re: [OpenLayers-Users] Node has no parent exception when trying to draw Polygon

2008-01-17 Thread Roald de Wit
> Firefox. > You need to create a full build to include that support: ./buildUncompressed.py full That should do the trick. Greetings, Roald -- Roald de Wit Software Engineer [EMAIL PROTECTED] Commercial Support for Open Source GIS Software http://lisasoft.com/LISAsoft/Su

Re: [OpenLayers-Users] google layer zoom

2008-01-17 Thread Roald de Wit
regards, Roald -- Roald de Wit Software Engineer [EMAIL PROTECTED] Commercial Support for Open Source GIS Software http://lisasoft.com/LISAsoft/SupportedProducts/ ___ Users mailing list Users@openlayers.org http://openlayers.org/mailman/listinfo/users

Re: [OpenLayers-Users] google layer zoom

2008-01-16 Thread Roald de Wit
to this ticket has already been applied. > > -- > Eric > ___ > Users mailing list > Users@openlayers.org > http://openlayers.org/mailman/listinfo/users -- Roald de Wit Software Engineer [EMAIL PROTECTED] Commercial Suppor

Re: [OpenLayers-Users] change the color of a layer - GML, KML, GeoRSS?

2008-01-07 Thread Roald de Wit
e is a kml file named Lines.kml which has > > different styles applied for various lines.But those colors are not > > appearing on the example html file.Any comment on this. > > Thanks in advance > > > > Cheers, > > Vishnu Prasad > > > -- Roald de W

Re: [OpenLayers-Users] Popups, Amber Cloud

2007-12-11 Thread Roald de Wit
trunk. Interested in doing this? Regards, -- Roald de Wit Software Engineer [EMAIL PROTECTED] Commercial Support for Open Source GIS Software http://lisasoft.com/LISAsoft/SupportedProducts/ ___ Users mailing list Users@openlayers.org http://openlaye

Re: [OpenLayers-Users] SVG Layers

2007-12-10 Thread Roald de Wit
re do what you suggest: save them to a temporary file. You can use imagemagick to convert to png and add to the image (just tested it and it works quite well). Things that are important are ordering of the layers and preserving their transparency (and the transparency of the features). Regards, -

Re: [OpenLayers-Users] Print / Saving Image

2007-12-10 Thread Roald de Wit
EQUEST['tiles'])); Then I got the map working. Of course now the challenge is to get the vectors and the markers working too. Anyone got code or ideas for that? Regards, -- Roald de Wit Software Engineer [EMAIL PROTECTED] Commercial Support for Open Source GIS

Re: [OpenLayers-Users] vector layer alignment problem

2007-12-03 Thread Roald de Wit
actively having to call map.updateSize()? I'm thinking of some kind of listener to some kind of event. If such a thing is possible, wouldn't it be a nice feature to have enabled by default? That way an OL map always works as expected. Regards, Roald -- Roald de Wit Software Engineer

Re: [OpenLayers-Users] Drawing on the fly route

2007-11-21 Thread Roald de Wit
data in a wrong format to a method, or maybe the right format to the wrong method... ;-) Kind regards, Roald -- Roald de Wit Software Engineer [EMAIL PROTECTED] Commercial Support for Open Source GIS Software http://lisasoft.com/LISAsoft/SupportedProducts/ __

Re: [OpenLayers-Users] [OpenLayers-Dev] Memory Leak in OpenLayers + IE

2007-11-15 Thread Roald de Wit
his problem or how to verify it but I am having a > lot of browser freeze ups with my testing. > > I am getting this with 2.5 loaded on my server and whatever is the most > recent online version. > > Is there any update on this? > > Cheers, > > Brad Spencer &

Re: [OpenLayers-Users] IE7 IMAGE_RELOAD_ATTEMPTS

2007-11-13 Thread Roald de Wit
g/search I just did a search, but couldn't find anything. You might have found a bug. Please try 2.5 first. Kind regards, Roald -- Roald de Wit Software Engineer [EMAIL PROTECTED] Commercial Support for Open Source GIS Software http://lisasoft.com/LISAsoft/Supp

Re: [OpenLayers-Users] tricky pan/zoom backgroundimage to get ...

2007-11-13 Thread Roald de Wit
auses the base layer to flicker. Same happens with the untiled resize. For me resize/animated tiled examples don't 'work': the layer disappears (white) and returns zoomed in/out. This could be because it's work in progress. Nice work though. Roald -- Roald de Wit Software Engi

Re: [OpenLayers-Users] tricky pan/zoom backgroundimage to get ...

2007-11-12 Thread Roald de Wit
lready > exists? > I hope I understand you correctly. Do you want something like this? http://www.smartmapbrowsing.org/demo.html According to the following ticket animated zooming is a new feature that will be available in version 2.6: http://trac.openlayers.org/ticket/442 Kind regards,

Re: [OpenLayers-Users] Saving Polygons

2007-09-20 Thread Roald de Wit
On Wed, 2007-09-19 at 21:32 -0400, Robert J Becraft wrote: > This example has the draw polygon feature... How can you capture the > polygons that are drawn and save them for future use and retrieval? > > http://www.openlayers.org/dev/examples/select-feature.html > Hi Robert, This example migh