Skip to content

Commit

Permalink
Stop using deprecated Layer.GML in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
fredj committed Nov 18, 2011
1 parent a04df3e commit 9f836cd
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion tests/manual/big-georss.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,13 @@
"http://labs.metacarta.com/wms/vmap0", {layers: 'basic'} );
map.addLayer(layer);
map.zoomToExtent(new OpenLayers.Bounds(-94.617035,33.010025,-89.645401,36.492752));
map.addLayer(new OpenLayers.Layer.GML("GML", "arkansas.rss", {format: OpenLayers.Format.GeoRSS}));
map.addLayer(new OpenLayers.Layer.Vector("arkansas", {
protocol: new OpenLayers.Protocol.HTTP({
url: "arkansas.rss",
format: new OpenLayers.Format.GeoRSS()
}),
strategies: [new OpenLayers.Strategy.Fixed()]
}));
}
</script>
</head>
Expand Down

0 comments on commit 9f836cd

Please sign in to comment.