[OpenLayers-Users] Possibility to put a tiled image on OpenLayers

2010-04-21 Thread Jimmy Aumard
Hello, I have big image (.jpg) too heavy to load by OpenLayers. I tiled it and tiles are accessible. I would like to know if OpenLayers manage tiled images. I don't know if I'm clear. Thanks -- Aumard Jimmy Développeur KINAXIA c/o CICA / PacaEst 2229 Route des Crêtes F-06560 Sophia Antipolis

Re: [OpenLayers-Users] Possibility to put a tiled image on OpenLayers

2010-04-21 Thread Zac Spitzer
just use a server side map server which are designed for this purpose, z On 21 April 2010 17:16, Jimmy Aumard jimmy.aum...@gmail.com wrote: Hello, I have big image (.jpg) too heavy to load by OpenLayers. I tiled it and tiles are accessible. I would like to know if OpenLayers manage tiled

Re: [OpenLayers-Users] Possibility to put a tiled image on OpenLayers

2010-04-21 Thread Kris Geusebroek
Hi Jimmy, You can use a server to do that, but it is also possible if the tiles are served from a webserver. The directory structure or naming of the tiles has to be somewhat structured though. You can use the OpenLayers.Layer.TileCache class of openLayers if you confirm to that

[OpenLayers-Users] Hungarian translation

2010-04-21 Thread Balázs Bámer
Hi All, I need an OpenLayers.Lang.hu Hungarian dictionary. If I translate the .en and send it to you, will it be included in the next 2.9 release? If yes, is UTF-8 the desired encoding? best regards: Balázs Bámer ___ Users mailing list

Re: [OpenLayers-Users] Hungarian translation

2010-04-21 Thread Balázs Bámer
I need an OpenLayers.Lang.hu Hungarian dictionary. If I translate the The 2.9 rc3 already has it. Great! ___ Users mailing list Users@openlayers.org http://openlayers.org/mailman/listinfo/users

Re: [OpenLayers-Users] Hungarian translation

2010-04-21 Thread bartvde
Hi, there is already a hungarian translation in 2.9. http://trac.openlayers.org/browser/branches/openlayers/2.9/lib/OpenLayers/Lang/hu.js Best regards, Bart Hi All, I need an OpenLayers.Lang.hu Hungarian dictionary. If I translate the .en and send it to you, will it be included in the next

[OpenLayers-Users] gwtOpenLayersProxy problem?

2010-04-21 Thread noname666999
I saw http://gwt-openlayers.hg.sourceforge.net/hgweb/gwt-openlayers/gwt-openlayers/file/c26877cf76a4/showcase/src/org/gwtopenmaps/demo/openlayers/client/examples/vector/BasicWFS.java

[OpenLayers-Users] MousePosition displayProjection problem ortho-epsg:4326

2010-04-21 Thread Heiko Schröter
Hello, i have a problem with the MousePosition Control. The relevant code snippets are as follows: Proj4js.defs[EPSG:4326] = +proj=longlat +ellps=WGS84 +datum=WGS84 +no_defs; Proj4js.defs[EPSG:0815] = +proj=ortho +lon_0=0 +lat_0=90; Proj4js.defs[EPSG:0816] = +proj=ortho +lon_0=0 +lat_0=-90;

Re: [OpenLayers-Users] MousePosition displayProjection problem ortho-epsg:4326

2010-04-21 Thread JamSquad
Hey! You might have to transform your points when they trigger. Exasmple: lastLonLat =map.getLonLatFromViewPortPx(e.xy); lastLonLat = lastLonLat.transform(projGoogle,proj26917); This is using Proj4JS. If you transform it, the x, y position of your

[OpenLayers-Users] Openlayers Base Map Possible without WMS...?

2010-04-21 Thread ScottCh
Hi Folks, I'm developing an application which needs to be able to work when network access may be poor. I would like OpenLayers to display a default base map layer from a local hard drive, for example using an independent tile cache under these circumstances. At first I thought TileCache

[OpenLayers-Users] Filter evaluates only string values

2010-04-21 Thread sasamil
Hallo All, this piece of code (filter) evaluates only string values??! var strFilter = 'ogc:Filter xmlns:ogc=http://www.opengis.net/ogc;ogc:PropertyIsGreaterThanogc:PropertyNamenumberOfCitizens/ogc:PropertyNameogc:Literal'+value+'/ogc:Literal/ogc:PropertyIsGreaterThan/ogc:Filter'; var wfsurl =

Re: [OpenLayers-Users] Filter evaluates only string values

2010-04-21 Thread Andreas Hocevar
Hi, On Apr 21, 2010, at 15:02 , sasamil wrote: Hallo All, this piece of code (filter) evaluates only string values??! var strFilter = 'ogc:Filter

Re: [OpenLayers-Users] Openlayers Base Map Possible without WMS...?

2010-04-21 Thread Mapmaker
What about using OpenLayers.Layer.TMS. You could use MapTiler or Global Mapper or to cut the tiles and store them locally. -- View this message in context: http://n2.nabble.com/Openlayers-Base-Map-Possible-without-WMS-tp4936689p4936922.html Sent from the OpenLayers Users mailing list archive

[OpenLayers-Users] Layer SLD param path (relative?)

2010-04-21 Thread Florent Gravin
Hi, i'm using param SLD like this : wmsLayer = new OpenLayers.Layer.WMS( 'layer', 'http://localhost:8080/geoserver/wms', { layers: 'ns:mylayer', transparent: true, sld: 'http://localhost/geo/mySLD.sld' },{ transitionEffect: 'resize',opacity:1 } ); it works fine, but only in the case

Re: [OpenLayers-Users] MousePosition displayProjection problem ortho-epsg:4326

2010-04-21 Thread Mike Adair
Heiko, The problem might be that the implementation of the ortho code in Proj4js hasn't been validated yet (see the bottom of this page http://trac.osgeo.org/proj4js/wiki/UserGuide). However there is a bug report with a proposed fix in the trac system

Re: [OpenLayers-Users] Possibility to put a tiled image on OpenLayers

2010-04-21 Thread David Fawcett
Jimmy, Check out the OpenLayers example that pulls data from at Tiled Map Service: http://www.openlayers.org/dev/examples/tms.html Here is the URL that OpenLayers generated for one of the image tiles. http://labs.metacarta.com/wms-c/Basic.py/1.0.0/basic/5/32/22.png You should be able to

Re: [OpenLayers-Users] Layer SLD param path (relative?)

2010-04-21 Thread Andreas Hocevar
Hi, On Apr 21, 2010, at 15:37 , Florent Gravin wrote: Hi, i'm using param SLD like this : wmsLayer = new OpenLayers.Layer.WMS( 'layer', 'http://localhost:8080/geoserver/wms', { layers: 'ns:mylayer', transparent: true, sld: 'http://localhost/geo/mySLD.sld' },{

Re: [OpenLayers-Users] Possibility to put a tiled image on OpenLayers

2010-04-21 Thread Zac Spitzer
David's suggestion on gdal2tiles is a good one On 21 April 2010 23:40, David Fawcett david.fawc...@gmail.com wrote: Jimmy, Check out the OpenLayers example that pulls data from at Tiled Map Service: http://www.openlayers.org/dev/examples/tms.html Here is the URL that OpenLayers generated

Re: [OpenLayers-Users] MousePosition displayProjection problem ortho- epsg:4326

2010-04-21 Thread Heiko Schröter
Am Mittwoch 21 April 2010 15:39:36 schrieben Sie: Mike, thanks a lot for the info. This ortho proj seems to be the problem. Will try again when Proj4js has it fixed. Thanks JamSquad for your hint. It gave me the direction where to look further. Regards Heiko Heiko, The problem might be

Re: [OpenLayers-Users] Layer SLD param path (relative?)

2010-04-21 Thread Florent Gravin
Hi, thks for reply, so i have my wms server in http://localhost:8080/geoserver/wms so, if i want to put a SLD relative path as sld: './mySLD.sld', i have to put the mySLD.sld file somewhere in my geoserver directories... (tomcat/webapps/geoserver). i tried in /geoserver but with no results.. i

Re: [OpenLayers-Users] Layer SLD param path (relative?)

2010-04-21 Thread Andreas Hocevar
Hi, you may get a better reply on this on the GeoServer users list. But GeoServer supports file uris. So if you have your sld in /home/foo/styles/my.sld, your sld param in geoserver would be sld=file:///home/foo/styles/my.sld. By doing so, you don't need http to access your sld. I am not

[OpenLayers-Users] GeoJSON

2010-04-21 Thread pedro hernandez
Hi, This is my first post and I wanna congratulate for your project. I'm creating a layer based in geojson output. var geojson_format = new OpenLayers.Format.GeoJSON(); var gs = geojson_format.read( my_output ,FeatureCollection); And in this output I have some propierties I wanna

[OpenLayers-Users] GeoJSON

2010-04-21 Thread pedro hernandez
Hi, This is my first post and I wanna congratulate for your project. I'm creating a layer based in geojson output. var geojson_format = new OpenLayers.Format.GeoJSON(); var gs = geojson_format.read( my_output ,FeatureCollection); And in this output I have some propierties I wanna

Re: [OpenLayers-Users] Vector text labels with offsets?

2010-04-21 Thread Andreas Hocevar
On Apr 21, 2010, at 16:49 , geojoe wrote: I'm trying to get labels on a vector layer working in OpenLayers 2.7 ( Labels not showing by geojoe Apr 20) do they even work for 2.7? Labels were introduced in 2.8, and offsets are new in 2.9 I think. Regards, Andreas. Thanks, Joe --

Re: [OpenLayers-Users] loadurl into popup

2010-04-21 Thread Jtrsmith
in case anyone is interested i found a solution. i added popup.updateSize(); to the end of my loadurl function and it updates the size correctly. -- View this message in context: http://n2.nabble.com/loadurl-into-popup-tp4931711p4937661.html Sent from the OpenLayers Users mailing list archive

Re: [OpenLayers-Users] Projection problem

2010-04-21 Thread José Angel Rodríguez Leyva
Hi, I forgot to mention that. I tried to use this property but then map zooms to 0,0 coordinates and doesn't pan. Even if just create the map object without specify any extension, projection or add other layers than Google's. greetings jar 2010/4/20 Sarah Schuessler sarah_f...@yahoo.de: Hi,

Re: [OpenLayers-Users] Projection problem

2010-04-21 Thread José Angel Rodríguez Leyva
Hi, Thanks for your answer. I added Proj4js to the project. Verify that everythings is loaded so it can transforms coordinate from my projection to Google's. But I get the same result. Nevertheless if I put projection to mine and displayProjection to the Google one (as is explained -in

Re: [OpenLayers-Users] Ajax request filter

2010-04-21 Thread geojoe
Andreas, I've tried serializing the filter using the today_1 and today_2 date formats with the request and I get the same HTTP Error 400: Bad Request error in both cases. What am I doing wrong? Thanks, Joe var today_1 = mm+/+dd+/+yy; var today_2 = yy+-+mm+-+dd; dateFilter = new

Re: [OpenLayers-Users] Ajax request filter

2010-04-21 Thread Andreas Hocevar
Hi, can you please ask this question on the GeoServer users list? Make sure that you include the whole request url when asking the question, and also provide information on the backend you use (database, shapefile etc.). Regards, Andreas. On Apr 21, 2010, at 19:30 , geojoe wrote: Andreas,

Re: [OpenLayers-Users] Possibility to put a tiled image on OpenLayers

2010-04-21 Thread Phil Scadden
David's suggestion on gdal2tiles is a good one Note also http://www.maptiler.org/ for a gui to it. -- Phil Scadden, Senior Scientist GNS Science Ltd 764 Cumberland St, Private Bag 1930, Dunedin, New Zealand Ph +64 3 4799663, fax +64 3 477 5232 Notice: This email and any attachments are

[OpenLayers-Users] Vector feature now shown up by Firefox 3.5.3

2010-04-21 Thread Takeo Shibata
Hi I just create simple map using an image from WMS and Vectors from OSM file link. http://xhema.flossk.org:5000/osmdetail.html By IE 8, I can see that line features created by OpenLayers.Layer.Vector. However, by Firefox, I cannot see. And looks like it requests the file without extension

[OpenLayers-Users] OpenLayers.Layer.XYZ and ESRI Cache (EPSG:4326)

2010-04-21 Thread Andrew Hughes
Hi All, I've been unable to get a working non sphericalMercator XYZ layer working with an ESRI cache service. The symptom's to my problem is that the wrong '/${x}/${y}/${z}' tile indexes/url's are always requested. Obviousuly this is a result of *my* mis-configuration. I'm completely stuck on