[OpenLayers-Users] Help with multiple items in layer

2010-08-17 Thread Lance Norskog
Hi folks- Here's the use case: I have a GeoRSS file with a point and one or more lines. I would like the point to appear by default, but the lines to appear when that point is selected. I started with georss-flickr.html, and have had some success. I can read multiple geometries after some

Re: [OpenLayers-Users] Map covers other layers

2010-08-17 Thread ahlah
Hi, did you find any solution? I have the same problem. br, AL -- View this message in context: http://osgeo-org.1803224.n2.nabble.com/Map-covers-other-layers-tp5418240p5430943.html Sent from the OpenLayers Users mailing list archive at Nabble.com.

Re: [OpenLayers-Users] Map covers other layers

2010-08-17 Thread Kalyan Kamepalli
AL, from my past experiences with OpenLayers, there should be atleast one layer set as baseLayer and the remaining layers should be transparent to have all the layers visible. If you have no layer set as baseLayer, it considers the last layer added as base layer and hides all other layers. I

[OpenLayers-Users] Weird http-error 500

2010-08-17 Thread andreia farrér
Hello there! I want to set up a WFS-T-application; the Data is stored in a PostGIS-DB and is served by GeoServer. If I call my application and check HttpFox I can see that the server provides a valid gml-file. But some milliseconds later I get the following message: 00:00:05.6852.249664

Re: [OpenLayers-Users] Map covers other layers

2010-08-17 Thread ahlah
Hi, my problem was caused by invalid Google Map API key. With valid key everything works ok. br, AL -- View this message in context: http://osgeo-org.1803224.n2.nabble.com/Map-covers-other-layers-tp5418240p5431251.html Sent from the OpenLayers Users mailing list archive at Nabble.com.

[OpenLayers-Users] arcgis server 10

2010-08-17 Thread Sarah Schuessler
Hi list, is there support for accessing arcgis server 10 (publishing data)? Or is it a better choice to access with geoserver and database? Any experience? Thanks! best regards Sarah ___ Users mailing list Users@openlayers.org

Re: [OpenLayers-Users] Define several states of view (Zoom/Area)

2010-08-17 Thread philippe.rief...@rwth-live.de
Hey Bryan, this is actually exactly what I need, now I only need this to get working with my map. I will try this out. Thank you for your help, cheers, Philippe -Ursprüngliche Nachricht- Von: users-boun...@openlayers.org [mailto:users-boun...@openlayers.org] Im Auftrag von BMcBride

Re: [OpenLayers-Users] Increasing gap between pan panels

2010-08-17 Thread Sarah Schuessler
Hi, I don`t know if this is the right solution for your problem: did you use margins for your different panels? best regards Sarah Hi, I want to increase gap between north, south, east and west pan panels. I have tried to change in style.css but didn't find

Re: [OpenLayers-Users] Increasing gap between pan panels

2010-08-17 Thread Imran Rajjad
you need to first increase the size of the container, then you can increase the size, most of the components get wrapped, secondly you can try modifying the images that make up the buttons regards, Imran On Tue, Aug 17, 2010 at 3:45 PM, Sarah Schuessler sarah_f...@yahoo.de wrote: Hi, I don`t

Re: [OpenLayers-Users] openlayers in ASP.NET

2010-08-17 Thread Frost89
You can read all about it here: http://docs.openlayers.org/library/introduction.html OpenLayers - Getting Started /Kristian Frost -- View this message in context: http://osgeo-org.1803224.n2.nabble.com/openlayers-in-ASP-NET-tp5431732p5431789.html Sent from the OpenLayers Users mailing list

[OpenLayers-Users] Switching between a Google/Bing base layer to WMS base layer...

2010-08-17 Thread Paul james
Hello guys... I have an application with Bing base layer with some WMS overlay Thats working fine : map = new OpenLayers.Map('MapTest', { units: m, projection:new OpenLayers.Projection(EPSG:900913), displayProjection: new OpenLayers.Projection(EPSG:4326),

Re: [OpenLayers-Users] Switching between a Google/Bing base layer to WMS base layer...

2010-08-17 Thread BMcBride
Make sure your wmsBaseLayer has the same projection as your Bing base layer (EPSG:900913). Have a look at the http://docs.openlayers.org/library/layers.html layers documentation and note particularly this part: The currently active base layer determines the available projection (coordinate

Re: [OpenLayers-Users] arcgis server 10

2010-08-17 Thread BMcBride
Hi Sarah, You can test OpenLayers with http://resources.arcgis.com/content/arcgisserver/10.0/sample-gis-server-and-gis-services ESRI's sample servers . I did a quick test on the http://openlayers.org/dev/examples/arcgis93rest.html OpenLayers ArcGIS Server 9.3 Rest API Example and it appears

Re: [OpenLayers-Users] Switching between a Google/Bing base layer to WMS base layer...

2010-08-17 Thread Paul james
Thanks... But how can I do that? I tried add to that layer : projection: new OpenLayers.Projection(EPSG:900913), But without success... var wmsBaseLayer = new OpenLayers.Layer.WMS( TestWmsBaseLayer, _mapfile, { LAYERS: ['WmsBaseLayer'],

Re: [OpenLayers-Users] edit points in Geometry of a vector?

2010-08-17 Thread ulao
Worked out for me thx. -- View this message in context: http://osgeo-org.1803224.n2.nabble.com/edit-points-in-Geometry-of-a-vector-tp5417230p5432286.html Sent from the OpenLayers Users mailing list archive at Nabble.com. ___ Users mailing list

[OpenLayers-Users] SphericalMercator.inverseMercator on VE?

2010-08-17 Thread ulao
I'm trying to do a new OpenLayers.Layer.SphericalMercator.inverseMercator(lon,lat). It seem to work fine on yahoo and google but not VE. Here is how I set up the map layers // create Google layers GoogleAerial = new OpenLayers.Layer.Google(

Re: [OpenLayers-Users] arcgis server 10

2010-08-17 Thread Sarah Schuessler
Thanks for testing and suggestion! I will check these different suggestions for our needs and report back then. best regards Sarah Hi Sarah, You can test OpenLayers with

[OpenLayers-Users] WFS GetFeature Example

2010-08-17 Thread mortac8
I am looking at the WFS GetFeature example [1] and trying to figure out how to edit and save the feature back to the WFS. var layer = new OpenLayers.Layer.WMS( States WMS/WFS, http://server:8080/geoserver/ows;, {layers: 'acme:cities', format:

Re: [OpenLayers-Users] WFS GetFeature Example

2010-08-17 Thread Alexandre Dube
Ashley, This is not the example you should be looking for, see this one instead : http://www.openlayers.org/dev/examples/wfs-protocol-transactions.html Regards, Alexandre On 10-08-17 11:20 AM, mortac8 wrote: I am looking at the WFS GetFeature example [1] and trying to figure out how to

Re: [OpenLayers-Users] WFS GetFeature Example

2010-08-17 Thread mortac8
Alexandre, I forgot to mention that I'm trying to avoid having the WFS features in my Vector layer for performance reasons. I was looking at the WFS GetFeature example which uses OpenLayers.Protocol.WFS.fromWMSLayer because I wanted to grab and edit just one feature at a time. Is this

[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] Styling OpenLayer.Control.AgsQueryTask

2010-08-17 Thread Frank
Hi, Problem mostly solved... I finded out where it gets drawed: AgsControl.js, line 457: if(this.displayResults === true) { this.showResults(); } then it does this.layer.addFeature(this._resultFeatures); So I guess the solution if I wanted custom style would be to add a styleMap to