Re: [OpenLayers-Users] [Tilecache] Building static tilecache with ESRI software

2009-02-25 Thread Matt Bartolome
On Wed, Feb 25, 2009 at 9:40 AM, Eric Wolf ebw...@gmail.com wrote: I'm trying to figure out the easiest/best way to create a static tile cache (prerendered) of a map layout created in ArcGIS to be accessed using OpenLayers. I don't know if this the best way but at first glance I would probably

[OpenLayers-Users] Layer.Tilecache does not match display projection

2009-01-13 Thread Matt Bartolome
Hi, I'm trying to use a static pre-generated Tilecache layer in my map. The projection is EPSG:2230. For some reason the layer is shifted about 18 miles to the west and south of what the display coordinates indicate (when I mouse over the map). For example if I do a map.setCenter with a known

[OpenLayers-Users] OpenLayers.Layer.TileCache problem

2008-12-29 Thread Matt Bartolome
Hi, When I try to add a static tilecache layer to my map I'm getting what looks like a 15 mile shift to the South-West, When I serve it through tilecache's WMS server the same cache lines up as expected with all my other layers. static = new OpenLayers.Layer.TileCache( static, /media/tilecache,

[OpenLayers-Users] OpenLayers.Layer.TileCache problem

2008-12-29 Thread Matt Bartolome
Hi, When I try to add a static tilecache layer to my map I'm getting what looks like a 15 mile shift to the south-west. When I serve it through tilecache's WMS server the same cache lines up as expected with all my other layers. static = new OpenLayers.Layer.TileCache( static, /media/tilecache,

[OpenLayers-Users] using more than one Layer.TileCache in a map?

2008-12-01 Thread Matt Bartolome
I have some pre-generated tilecaches. layer_a = new OpenLayers.Layer.TileCache( a, tilecache_servers, 62851963); layer_b = new OpenLayers.Layer.TileCache( b, tilecache_servers, 62731963, {transparent: true}); base_layers = [layer_a, layer_b]; map.addLayers(base_layers); I was