Openlayers Client - Layer crawfordcowi_2017_Color_NAIP_layer
Bounding Box
130000.0, -20000.0, 618000.0, 376000.0
Level and Resolutions
Level | Resolution |
---|---|
0 | 651.0416666666665 |
1 | 564.2361111111111 |
2 | 477.4305555555556 |
3 | 390.62500000000006 |
4 | 303.8194444444444 |
5 | 217.01388888888889 |
6 | 130.20833333333334 |
7 | 86.80555555555554 |
8 | 69.44444444444444 |
9 | 43.40277777777777 |
10 | 30.381944444444443 |
11 | 21.701388888888886 |
12 | 15.190972222222221 |
13 | 8.680555555555555 |
14 | 6.510416666666666 |
15 | 4.340277777777778 |
16 | 3.472222222222222 |
17 | 2.6041666666666665 |
18 | 1.736111111111111 |
19 | 0.8680555555555555 |
20 | 0.43402777777777773 |
21 | 0.1736111111111111 |
JavaScript code
<script src="static/OpenLayers.js"></script> <script type="text/javascript"> var map; function init(){ var mapOptions = { projection: new OpenLayers.Projection('EPSG:103411'), maxResolution: 651.0416666666665, resolutions: [651.0416666666665, 564.2361111111111, 477.4305555555556, 390.62500000000006, 303.8194444444444, 217.01388888888889, 130.20833333333334, 86.80555555555554, 69.44444444444444, 43.40277777777777, 30.381944444444443, 21.701388888888886, 15.190972222222221, 8.680555555555555, 6.510416666666666, 4.340277777777778, 3.472222222222222, 2.6041666666666665, 1.736111111111111, 0.8680555555555555, 0.43402777777777773, 0.1736111111111111], units: 'm', numZoomLevels: 22, maxExtent: new OpenLayers.Bounds(130000.0, -20000.0, 618000.0, 376000.0) }; map = new OpenLayers.Map('map', mapOptions); var layer = new OpenLayers.Layer.TMS('TMS crawfordcowi_2017_Color_NAIP_layer', '../tms/', {layername: 'crawfordcowi_2017_Color_NAIP_layer/EPSG103411', type: 'jpeg', tileSize: new OpenLayers.Size(256, 256) }); map.addLayer(layer) map.zoomToExtent(new OpenLayers.Bounds(130000.00, -20000.00, 618000.00, 376000.00)); } </script>