Re: [OpenLayers-Users] Save Strategy

2009-06-02 Thread Roald de Wit
Hi, Wesley might not be subscribed to the dev list. This is where you can find the latest release candidate: http://openlayers.org/api/2.8-rc5/OpenLayers.js and quoting Chris Schmidt: "As always, the source is available at http://openlayers.org/download/. Bug reports can be filed in Trac, under

Re: [OpenLayers-Users] Save Strategy

2009-06-02 Thread Eric Lemoine
On Wednesday, June 3, 2009, Wesley wrote: > Thanks Eric. > > Wich version do I have to use to make the following example code work? 2.8-rc5 or SVN trunk. Try the URL provided in the 2.8 RC5 announcement email. > > I'm getting this error when I use OpenLayers.Strategy.Save and > OpenLayers.Proto

Re: [OpenLayers-Users] mouse events on vector and marker layers?

2009-06-02 Thread Daniel Kastl
Wendell Turner schrieb: > I would like to get mouse events on multiple kinds of > layers, or more specifically, on some Vector layers and a > Marker layer. I can get events on Vector layers, or a > Marker layer, but not both. I'm using svn from a few days > ago. > Is there a strong reason not

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] Save Strategy

2009-06-02 Thread Wesley
Thanks Eric. Wich version do I have to use to make the following example code work? I'm getting this error when I use OpenLayers.Strategy.Save and OpenLayers.Protocol.WFS. code: wfs = new OpenLayers.Layer.Vector("Editable Features", { strategies: [new OpenLayers.Strategy.BBOX(),

[OpenLayers-Users] mouse events on vector and marker layers?

2009-06-02 Thread Wendell Turner
I would like to get mouse events on multiple kinds of layers, or more specifically, on some Vector layers and a Marker layer. I can get events on Vector layers, or a Marker layer, but not both. I'm using svn from a few days ago. when I define two Vector layers, and call: myselectControl = ne

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

2009-06-02 Thread Stephen Woodbridge
Arnd, Thank you these are really nice examples of OpenLayers. The styles_unique_with_group.html is exactly the kind of example I was looking for. I did notice that it has trouble displaying the popups in Firefox 3.0.10. I'm not sure why but you might want to look into that. Thank you for shari

[OpenLayers-Users] Popup can not be closed when zooming

2009-06-02 Thread Asle Benoni
Hello, I have some popups from a WFS layer and a KML layer . When I click the point the popup shows. If I zoom in or out without closing the popup the popup stays and I cannot close it. Is there a way to automatically close any popups that are open when zooming in or out? Thanks for any help

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

2009-06-02 Thread Nicholas Efremov-Kendall
I don't know if it's public or not, but you should be able to view all but the PHP on www.fastionline.org On Tue, Jun 2, 2009 at 5:43 AM, Albin Blaschka wrote: > Stephen Woodbridge wrote: > > Does anyone have a public page/example that demonstrates creating a > > point feature and adding text att

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

2009-06-02 Thread Arnd Wippermann
Hi Stephen, As an example for editing attributes look at http://gis.ibbeck.de/ginfo/apps/OLExamples/OL26/examples/styles_unique_with_ group.html or in a more complex environment http://gis.ibbeck.de/ginfo/apps/OL27Client/OL27ClientGis.asp?WMC=./data/WMC/ !Google_World.wmc.xml I use different po

Re: [OpenLayers-Users] How to define a custom Proj4js.defs["myown"]?

2009-06-02 Thread Mike Adair
It should be something like: +proj=stere +lat_0=90 +lat_ts=60 +lon_0=263 +k=??? +x_0=345 +y_0=745 +ellps=WGS84 +datum=WGS84 +units=m I'm not positive about the lon_0 param, and the k param is a ratio of resolution at standard parallel to another resolution value but I'm not sure what t

[OpenLayers-Users] How make my loading efficient and on time

2009-06-02 Thread newbie
Dear All, I need to get opinion here is in making things work efficiently. I would like you to visit this page http://gamsolutions.dnsalias.com/maps/replay1.htm the deviceId you can select as 00772 and the date be it between 01/05/2009 and 31/05/2009 and the speed lets keep it to 2. So

[OpenLayers-Users] How to define a custom Proj4js.defs["myown"]?

2009-06-02 Thread stephane.poirier
Hi All, How to define a custom Proj4js.def["myown"] when it is not in http://spatialreference.org/ref but when I have the following projection parameters? > polar_stereographic:straight_vertical_longitude_from_pole = 263.f ; > polar_stereographic:standard_parallel = 60.f ; > polar_stereographic:

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

2009-06-02 Thread Alexandre Dube
Hi Mike, I would also be interested to see how you achieved it. If you do share some code, please use the OL mailing list. Regards, Alexandre Mike Adair wrote: > I did a EditFeatureAttributes control a few months ago that first did a > WFS DescribeFeatureType query to determine the attributes

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

2009-06-02 Thread Mike Adair
I did a EditFeatureAttributes control a few months ago that first did a WFS DescribeFeatureType query to determine the attributes for a feature type and then created a form with inputs for each attribute. It registered with featureAdded and featureSelected events on the WFS layer to open and p

[OpenLayers-Users] Switching projection on loaded map

2009-06-02 Thread Fabian Patzke
Hi, I want to build an option in my OL map app so that a user can switch the used projection of the map to another. For example my map is in EPSG:4326. Than I add some layers to the map and the user can use the map. If one want it should be possible to switch to EPSG:32632 via a button and the map

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

2009-06-02 Thread Alexandre Dube
Hi Stephen, Here's an old demo I made demonstrating creation/modification/deletion of line features (1). The highlight and display popup is done by a custom "HighlightFeature" control but with OpenLayers 2.8 you can achieve this with the SelectFeature control instead. Hope this helps, Alexand

[OpenLayers-Users] Download a vector layer

2009-06-02 Thread Luca Casagrande
Hello everybody. What do you think is the best way to download a vector layer created by the user? I am thinking of using the GML serialize function and then pass it to a script for the download, but I don't know if there are better solutions. Any idea? Thank you very much Luca -- View this mes

Re: [OpenLayers-Users] TMS Tileorigin property bug?

2009-06-02 Thread Christopher Schmidt
On Tue, Jun 02, 2009 at 11:10:33AM +0200, Frank Broniewski wrote: > Hello list, > > I am trying to align a tiled map I got to a national reference system. Things > are partially working, but I have some alignment problems. Browsing through > the docs, I found the tileOrigin property of the TMS L

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

2009-06-02 Thread Albin Blaschka
Stephen Woodbridge wrote: > Does anyone have a public page/example that demonstrates creating a > point feature and adding text attributes to it? This seems like it would > be a common use case. > Creating the vector feature is straight forward. It would be nice if > after you create the point, tha

[OpenLayers-Users] TMS Tileorigin property bug?

2009-06-02 Thread Frank Broniewski
Hello list, I am trying to align a tiled map I got to a national reference system. Things are partially working, but I have some alignment problems. Browsing through the docs, I found the tileOrigin property of the TMS Layer. But there seems to be no effect when setting this. Looking through t