[OpenLayers-Users] Problems when using IE7 page zoom feature

2009-04-15 Thread hcan
IE7 has a zoom feature.(In IE7, If you look at lower Right Corner, there is a button that let you set the zoom level of your webpage). You can also use CTRL + and CTRL – to change the size. Firefox 3 has the same feature Meny-View-Zoom-Zoom in/Zoom out. In FF this works fine, but in IE7 the

[OpenLayers-Users] Mapserver and Openlayers - Pink Tiles

2009-04-15 Thread sendeman
Hi All, I'm new to Openlayers and Mapserver. I want to add a map generated by mapserver to my openlayers map. I have made a simple html-file in my http-root to test the openlayers/mapserver configuration (see below). The map file seems to work. I was able to generate an image with: shp2img -m

Re: [OpenLayers-Users] How to add many(400) markers to the map?

2009-04-15 Thread Adams
Try increasing the cell size. If you don't want to do that, implement 'g' using nested dictionaries, that way you won't be creating or reading through an array with as many elements as pixels in the view port. - Original Message - From: willson talentp1...@yahoo.com.cn To:

Re: [OpenLayers-Users] Problems when using IE7 page zoom feature

2009-04-15 Thread Christopher Schmidt
On Wed, Apr 15, 2009 at 01:20:39AM -0700, hcan wrote: IE7 has a zoom feature.(In IE7, If you look at lower Right Corner, there is a button that let you set the zoom level of your webpage). You can also use CTRL + and CTRL ??? to change the size. Firefox 3 has the same feature

Re: [OpenLayers-Users] How to add many(400) markers to the map?

2009-04-15 Thread Adams
Or a single dictionary, i.e.: g = {}; .. g[_+x+,+y] = for each ... - Original Message - From: Adams ch...@genieknows.com To: users users@openlayers.org Sent: Wednesday, April 15, 2009 8:26:01 AM GMT -04:00 Atlantic Time (Canada) Subject: Re: [OpenLayers-Users] How to add many(400)

Re: [OpenLayers-Users] SelectFeature deactivate and VML renderer

2009-04-15 Thread Andreas Hocevar
Thanks for reporting this Kris. See http://trac.openlayers.org/ticket/2048 for a fix. Regards, Andreas. Kris Geusebroek wrote: Hi, I have a selectFeature control configured for multiple layers. In combination with the VML renderer this control shows strange behavior when deactivated

Re: [OpenLayers-Users] Mapserver and Openlayers - Pink Tiles

2009-04-15 Thread Alexander Petkov
On Wed, Apr 15, 2009 at 5:13 AM, sendeman martijnsendens...@gmail.com wrote: Hi All, I'm new to Openlayers and Mapserver. I want to add a map generated by mapserver to my openlayers map. I have made a simple html-file in my http-root to test the openlayers/mapserver configuration (see

Re: [OpenLayers-Users] Mapserver and Openlayers - Pink Tiles

2009-04-15 Thread Christopher Schmidt
On Wed, Apr 15, 2009 at 08:32:06AM -0600, Alexander Petkov wrote: On Wed, Apr 15, 2009 at 5:13 AM, sendeman martijnsendens...@gmail.com wrote: Hi All, I'm new to Openlayers and Mapserver. I want to add a map generated by mapserver to my openlayers map. I have made a simple html-file in

Re: [OpenLayers-Users] Mapserver and Openlayers - Pink Tiles

2009-04-15 Thread sendeman
At a first glance your mapserv path appears to be incorrect. Where is mapserv installed relative to your www root directory? My first guess is to try /bin/mapserv. Alex Thanks for your reply! I tried your suggestion. I think I had already tried it like this before myself, but it doesn't work

Re: [OpenLayers-Users] Mapserver and Openlayers - Pink Tiles

2009-04-15 Thread Chris Adams
The path to the 'mapserv' application should be in fact a URL, which can be accessed from any computer suitable for viewing the map. The path to your map file is a file path within the server. i.e. layer = new OpenLayers.Layer.MapServer(MyMap,http://myserver/cgi-bin/mapserv;, {map:

Re: [OpenLayers-Users] Mapserver and Openlayers - Pink Tiles

2009-04-15 Thread sendeman
The path to the 'mapserv' application should be in fact a URL, which can be accessed from any computer suitable for viewing the map. The path to your map file is a file path within the server. i.e. layer = new OpenLayers.Layer.MapServer(MyMap,http://myserver/cgi-bin/mapserv;, {map:

Re: [OpenLayers-Users] Mapserver and Openlayers - Pink Tiles

2009-04-15 Thread Chris Adams
Try using wget to download one of the tiles, mapserv will often put error messages in place of the image (i.e. maybe your paths to mapserv the map file are correct). Also, you need to specify each layer by name when you create your OpenLayers.Layer.MapServer, or at least I have not found a

[OpenLayers-Users] WMSCapabilities

2009-04-15 Thread Steve . Toutant
Hi, I got this error OpenLayers.Format.WMSCapabilities is not a constructor when trying this var capabilitiesFormat = new OpenLayers.Format.WMSCapabilities(); I included this script in my code script src=http://openlayers.org/api/OpenLayers.js;/script Should I include something else? Thanks

Re: [OpenLayers-Users] WMSCapabilities

2009-04-15 Thread Bart van den Eijnden (OSGIS)
Hi Steve, this was not part of OpenLayers 2.7 which you are accessing there (API is last stable version so 2.7 currently). Instead you should use trunk which will become OpenLayers 2.8 soon. Best regards, Bart steve.tout...@inspq.qc.ca wrote: Hi, I got this error

[OpenLayers-Users] Open Source GIS workshop and dedicated presentation Track at WAURISA, May 4th-6th, 2009, Seattle, WA, USA

2009-04-15 Thread karsten vennemann
The CUGOS group http://www.linkedin.com/redirect?url=http%3A%2F%2Fgroups%2Egoogle%2Ecom%2Fgroup%2Fcugosurlhash=P-6J_t=disc_detail_link http://groups.google.com/group/cugos (a chapter of OSGEO) is doing an introductory workshop on Open Source GIS at the upcoming WAURISA conference in Bellevue,

Re: [OpenLayers-Users] WMSCapabilities

2009-04-15 Thread Christopher Schmidt
On Wed, Apr 15, 2009 at 07:41:49PM +0200, Bart van den Eijnden (OSGIS) wrote: Hi Steve, this was not part of OpenLayers 2.7 which you are accessing there (API is last stable version so 2.7 currently). Instead you should use trunk which will become OpenLayers 2.8 soon. And while you're in

[OpenLayers-Users] minScale maxScale on layer

2009-04-15 Thread toni hernández
hi, Does anyone know if it is possible to set the minscale and maxscale on a layer so it shows and hides depending on the scale of the map. If tried to specify minScale:100, maxScale: 5000 (so the layer appears between the two scales) on the layer but the layer is still always visible.

Re: [OpenLayers-Users] minScale maxScale on layer

2009-04-15 Thread Christopher Schmidt
On Wed, Apr 15, 2009 at 10:19:56PM +0200, toni hernández wrote: hi, Does anyone know if it is possible to set the minscale and maxscale on a layer so it shows and hides depending on the scale of the map. If tried to specify minScale:100, maxScale: 5000 (so the layer appears between the

Re: [OpenLayers-Users] minScale maxScale on layer

2009-04-15 Thread Bill Thoen
There's a good description on that subject right here: http://trac.openlayers.org/wiki/SettingZoomLevels - Bill Thoen toni hernández wrote: Does anyone know if it is possible to set the minscale and maxscale on a layer so it shows and hides depending on the scale of the map. If tried to

Re: [OpenLayers-Users] Mapserver and Openlayers - Pink Tiles

2009-04-15 Thread Martijn Senden
Hi again, Thanks!! (As I had already e-mailed to the list, (via the forum)), I had included a directory statement for the for geoviewerbin alias: # Path to cgi-bin folder Alias /geoviewerbin C:\OSGeo4W/bin # Settings for access to geoviewerbin folder Directory C:\OSGeo4W/bin AllowOverride

Re: [OpenLayers-Users] Mapserver and Openlayers - Pink Tiles

2009-04-15 Thread Richard Greenwood
On Wed, Apr 15, 2009 at 3:43 PM, Martijn Senden martijnsendens...@gmail.com wrote: Hi again, Thanks!! (As I had already e-mailed to the list, (via the forum)), I had included a directory statement for the for geoviewerbin alias: # Path to cgi-bin folder Alias /geoviewerbin C:\OSGeo4W/bin

[OpenLayers-Users] Load Tile on Mouse Stop?

2009-04-15 Thread Dyck, Wayne
Brain, Really cool application. Could you register a moveend event and have your tiles redrawn at that point? For example, map.events.register(moveend, map, redrawTiles); function redrawTiles(evt){ // Code to redraw the tiles here }

[OpenLayers-Users] clientside

2009-04-15 Thread Nicholas Efremov-Kendall
Hello all, I'll apologize now for the novice's questions to the list. I'm developing a site which can't run on Mapserver. That is, the hosting environment doesn't want to be responsible for the maintenance of the binaries, or the php module. Can anyone suggest a direction or example which