Re: [OpenLayers-Users] How to set min/maxResolution for Layers on the OverviewMap?

2010-06-10 Thread Fabian Patzke (OL)
Thanks, with the trunk it's working as expected. -- View this message in context: http://osgeo-org.1803224.n2.nabble.com/How-to-set-min-maxResolution-for-Layers-on-the-OverviewMap-tp5130819p5162817.html Sent from the OpenLayers Users mailing list archive at Nabble.com.

[OpenLayers-Users] How to set min/maxResolution for Layers on the OverviewMap?

2010-06-02 Thread Fabian Patzke (OL)
Hi there, I wanted to set up my OverViewMap with 2 layers. The layers should be visible depending on the overviewmaps resolution. So I initialized my layers as following: var ov1 = new OpenLayers.Layer.WMS( name1 ,http://url1?; ,{ layers: 0 ,format: image/jpeg }

[OpenLayers-Users] Split Control aftersplit event

2009-08-26 Thread Fabian Patzke
Hi there, i want to use the split control on one of my Vector(WMS) Layers. So i set up a control based on the examples: http://www.openlayers.org/dev/examples/split-feature.html http://www.openlayers.org/dev/examples/wfs-snap-split.html my code is below. The control itself seems to work, if I use

Re: [OpenLayers-Users] Adding Feature to WFS in Vector Layer / Copying Features

2009-08-13 Thread Fabian Patzke
I made progress and it works now for me, but I stumbled over some weird behaviour further posting is an dev-list see: http://n2.nabble.com/Adding-Feature-to-WFS-in-Vector-Layer---Copying-Features-tp3416461p3435981.html Fabian Patzke wrote: I moved a bit further with my efforts. My

Re: [OpenLayers-Users] Switching projection on loaded map

2009-08-12 Thread Fabian Patzke
If anyone is interested how I solved my problem, see below. Fabian Patzke wrote: 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

Re: [OpenLayers-Users] Switch from one SLD to another

2009-08-12 Thread Fabian Patzke
TJMartin wrote: I have a shapefile loaded into GeoServer with 2 different SLDs to style the data differently depending a customer requirement. In OpenLayers i call the WMS with the various options (extents,projection etc) My map works but only with the SLD i attach to the data in

Re: [OpenLayers-Users] Adding Feature to WFS in Vector Laye r / Copying Features

2009-08-07 Thread Fabian Patzke
I moved a bit further with my efforts. My transaction is getting more and more complete. But the Coordinates are still missing. If anybody has an idea it would be great ;) wfs:Transaction xmlns:wfs=http://www.opengis.net/wfs; service=WFS version=1.0.0

Re: [OpenLayers-Users] What is the relationship between zoo m level and longitude/latitude

2009-08-07 Thread Fabian Patzke
Adrian Popa adrian_gh.p...@... writes: Hello everybody. I'm trying to zoom to view an area for which I have the minimum and maximum longitude/latitude. Basically I would like to zoom in to see a rectangle with known coordinates. I already calculated the center of this rectangle - so

[OpenLayers-Users] Adding Feature to WFS in Vector Layer / Copying Features

2009-08-05 Thread Fabian Patzke
Hi list, I try to build a copy function so that a user can select some features from a WFS and copy them to another. My WFS are not normal WFS Layers they are build in Vector Layers wfsLayer [layerArray[j].name] = new OpenLayers.Layer.Vector ( ... { strategies: [ new

Re: [OpenLayers-Users] Adding Feature to WFS in Vector Laye r / Copying Features

2009-08-05 Thread Fabian Patzke
Fabian Patzke pat...@... writes: If it helps this is the POST request made to my WFS: wfs:Transaction xmlns:wfs=http://www.opengis.net/wfs; service=WFS version=1.0.0 xsi:schemaLocation=http://www.opengis.net/wfs http://schemas.opengis.net/wfs/1.0.0/WFS-transaction.xsd http://www.FOO.BLA

[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

[OpenLayers-Users] Projection problem?

2009-01-20 Thread Fabian Patzke
Hi there, at the moment I am working on a university project. I am building a map and need to get the coordinates from my map to use them in a PHP script. There is no problem with getting them but they are in some way wrong. What I want is to get the coordinates in EPSG:32632 just like they are

Re: [OpenLayers-Users] Projection problem?

2009-01-20 Thread Fabian Patzke
Joao Duarte schrieb: ... I leave you with an example of how doing the last option: var lonlat = map.getLonLatFromPixel(e.xy).transform(new OpenLayers.Projection(EPSG:900913), new OpenLayers.Projection(EPSG:32632)); I see that you're already performing the transformation, but the source