From b88400380fc66a554f72011e2ecbc11723361544 Mon Sep 17 00:00:00 2001 From: crschmidt Date: Fri, 14 Sep 2007 02:10:52 +0000 Subject: [PATCH] make kamap map the default layer in this demo, rather than a standard, non-kamap openlayers map git-svn-id: http://svn.openlayers.org/trunk/openlayers@4285 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf --- examples/kamap.html | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/examples/kamap.html b/examples/kamap.html index 5ef50f2d8d..366a22f169 100644 --- a/examples/kamap.html +++ b/examples/kamap.html @@ -13,10 +13,6 @@ function init(){ map = new OpenLayers.Map('map'); - var ol_wms = new OpenLayers.Layer.WMS( "World Map", - "http://labs.metacarta.com/wms/vmap0?", - {layers: 'basic'} ); - var jpl_wms = new OpenLayers.Layer.KaMap( "Satellite", "http://www.openlayers.org/world/index.php", {g: "satellite", map: "world"}); var dm_wms = new OpenLayers.Layer.WMS( "Canada", @@ -25,7 +21,7 @@ "prov_bound,fedlimit,rail,road,popplace", transparent: "true", format: "image/png" }); - map.addLayers([ol_wms, jpl_wms, dm_wms]); + map.addLayers([jpl_wms, dm_wms]); map.addControl(new OpenLayers.Control.LayerSwitcher()); map.zoomToMaxExtent(); }