Re: [OpenLayers-Users] Unable to get displayProjection working

2009-04-10 Thread George Mu'ammar
Hi CJ good to hear from you. The last time I faced this issue I also got the impression I was doing something wrong. Simply put I got what I wanted, ie the coordinates in EPSG 4326. But I had not included the Proj4s! I was baffled but stuck to it because it was what I wanted anyway. Therefore

[OpenLayers-Users] Unable to get displayProjection working

2009-04-10 Thread CJ Hendrix
My map is in EPSG:900913, but I want to use displayProjection so that the mousePosition control returns coordinates in EPSG:26716 (UTM zone 16 N, nad27). Proj4js is installed and I've downloaded the definition for EPSG:26716 from spatialrefernce.org and loaded it into the script with The map

[OpenLayers-Users] I Need help to dowload a projects

2009-04-10 Thread fsalas
Hi, In this moment I try to development one application web using openlayer and mapserver, i need make a GIS application with menus, Forms, etc. In internet I found an interesting project: "The PHP-Ext Open Source Project" in this url http://php-ext.quimera-solutions.com/?id=download, but I ca

Re: [OpenLayers-Users] Native google map type switching

2009-04-10 Thread Christopher Schmidt
On Fri, Apr 10, 2009 at 06:32:44AM -0700, alts...@yahoo.com wrote: > > Hi all, > > Is it possible to activate native google map type switcher for satellite, > normal and hybrid map? Currently I did it as 2 layers on openlayes with types > G_NORMAL_MAP and G_HYBRYD_MAP but I prefer to activate G

[OpenLayers-Users] Native google map type switching

2009-04-10 Thread altserg
Hi all, Is it possible to activate native google map type switcher for satellite, normal and hybrid map? Currently I did it as 2 layers on openlayes with types G_NORMAL_MAP and G_HYBRYD_MAP but I prefer to activate Google's native control for switching because I'm also using other my private l

Re: [OpenLayers-Users] OpenLayers - mixing Google and other projections - seeking an example?

2009-04-10 Thread Christopher Schmidt
On Fri, Apr 10, 2009 at 12:36:35AM -0600, Greg Cocks wrote: > Hello Again, > > > > I am trying to better learn how the Google projection works when mixed > with other datasets in an OpenLayers 'function'. I have built OpenLayers > 'functions' that bring them all in - but as you know they need t

Re: [OpenLayers-Users] Dynamic size of point using StyleMap

2009-04-10 Thread Jacolin Yves
Le Friday 10 April 2009 11:33:09 Arnd Wippermann, vous avez écrit : > Hi Yves, > > Perhaps that's what you search: > > http://openlayers.org/pipermail/users/2008-September/007482.html > > var style = new OpenLayers.Style(OpenLayers.Util.applyDefaults({ > pointRadius: "${scaledSize}" > }, OpenLa

Re: [OpenLayers-Users] Dynamic size of point using StyleMap

2009-04-10 Thread Arnd Wippermann
Hi Yves, Perhaps that's what you search: http://openlayers.org/pipermail/users/2008-September/007482.html var style = new OpenLayers.Style(OpenLayers.Util.applyDefaults({ pointRadius: "${scaledSize}" }, OpenLayers.Feature.Vector.style["default"]), { context: { scaledSize: functio

Re: [OpenLayers-Users] Dynamic size of point using StyleMap

2009-04-10 Thread jegou
Hi Yves, i don't know if i understand you question, but it's possible to use the map.getZoom() function in an OpenLayers.Style. I'm using it for a proportional symbol analysis, with a featureStyle featuring a context radius for the features, and the radius is function of the zoom level

Re: [OpenLayers-Users] Dynamic size of point using StyleMap

2009-04-10 Thread Jacolin Yves
Le Thursday 09 April 2009 18:03:32 Christopher Schmidt, vous avez écrit : > On Thu, Apr 09, 2009 at 05:49:20PM +0200, Jacolin Yves wrote: > > Hello, > > > > Is it possible to use zoomLevel variable in a symbolizer object in > > StyleMap? :) > > You can use min and max scale. > > -- Chris Hi Chris,