61 lines
2.5 KiB
HTML
61 lines
2.5 KiB
HTML
<html>
|
|
<head>
|
|
<!-- this gmaps key generated for http://openlayers.org/dev/ -->
|
|
<script src='http://maps.google.com/maps?file=api&v=2&key=ABQIAAAA9XNhd8q0UdwNC7YSO4YZghSPUCi5aRYVveCcVYxzezM4iaj_gxQ9t-UajFL70jfcpquH5l1IJ-Zyyw'></script>
|
|
<script src="../../OLLoader.js"></script>
|
|
<script src="../../../lib/deprecated.js"></script>
|
|
<script type="text/javascript">
|
|
|
|
var name = 'Test Layer';
|
|
var url = "http://octo.metacarta.com/cgi-bin/mapserv";
|
|
var params = { map: '/mapdata/vmap_wms.map',
|
|
layers: 'basic',
|
|
format: 'image/jpeg'};
|
|
|
|
function test_Layer_WMS_Reproject (t) {
|
|
var validkey = (window.location.protocol == "file:") ||
|
|
(window.location.host == "localhost") ||
|
|
(window.location.host == "openlayers.org");
|
|
if (OpenLayers.BROWSER_NAME == "opera" || OpenLayers.BROWSER_NAME == "safari") {
|
|
t.plan(1);
|
|
t.debug_print("Can't test google reprojection in Opera or Safari.");
|
|
} else if(validkey) {
|
|
t.plan(5);
|
|
|
|
var map = new OpenLayers.Map('map');
|
|
var layer = new OpenLayers.Layer.Google("Google");
|
|
map.addLayer(layer);
|
|
var wmslayer = new OpenLayers.Layer.WMS(name, url, params,
|
|
{isBaseLayer: false, reproject:true, buffer: 2});
|
|
wmslayer.isBaseLayer=false;
|
|
map.addLayer(wmslayer);
|
|
map.setCenter(new OpenLayers.LonLat(0,0), 5);
|
|
var tile = wmslayer.grid[0][0];
|
|
tile.draw(true); // the tile queue defers the drawing
|
|
t.eq( tile.bounds.left, -22.5, "left side matches" );
|
|
t.eq( tile.bounds.right, -11.25, "right side matches" );
|
|
t.eq( tile.bounds.bottom.toFixed(6), '11.178402', "bottom side matches" );
|
|
t.eq( tile.bounds.top.toFixed(6), '21.943046', "top side matches" );
|
|
map.destroy();
|
|
} else {
|
|
t.plan(1);
|
|
t.debug_print("can't test google layer from " +
|
|
window.location.host);
|
|
}
|
|
|
|
var map = new OpenLayers.Map('map');
|
|
layer = new OpenLayers.Layer.WMS(name, url, params, {buffer: 2});
|
|
map.addLayer(layer);
|
|
map.setCenter(new OpenLayers.LonLat(0,0), 5);
|
|
var tile = layer.grid[0][0];
|
|
t.ok( tile.bounds.equals(new OpenLayers.Bounds(-33.75, 33.75, -22.5, 45)), "okay");
|
|
|
|
map.destroy();
|
|
}
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<div id="map" style="width:500px;height:550px"></div>
|
|
</body>
|
|
</html>
|