OpenLayers base layers problem
2012-05-18 00:19:26.674737+02 by Dan Lyke 3 comments
Can someone with experience with OpenLayers take a look at http://www.flutterby.net/Map_Test and tell me why my base layers aren't?
2012-05-18 00:19:26.674737+02 by Dan Lyke 3 comments
Can someone with experience with OpenLayers take a look at http://www.flutterby.net/Map_Test and tell me why my base layers aren't?
[ related topics: Maps and Mapping ]
comments in descending chronological order (reverse):
#Comment Re: made: 2012-05-18 20:21:46.795509+02 by: Dan Lyke
Oh, and I need to do a bunch more, especially about stacked images and correlating times, but the map at the bottom of http://www.flutterby.net/2011-11-24_Yosemite is a step towards data integration.
#Comment Re: made: 2012-05-18 03:58:43.180823+02 by: Dan Lyke
Thank you, I think that fixed it.
#Comment Re: made: 2012-05-18 01:28:18.710204+02 by: ebwolf
Um... Yeah, you are saying "allOverlays: True" when you first create the map:
var map = new OpenLayers.Map('map1', {allOverlays: true});
Try this:
var map = new OpenLayers.Map('map1');