map_image.html 1.3 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <!--********************************************************************
  2. * Copyright© 2000 - 2021 SuperMap Software Co.Ltd. All rights reserved.
  3. *********************************************************************-->
  4. <!DOCTYPE html>
  5. <html>
  6. <head>
  7. <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
  8. <title data-i18n="resources.title_image"></title>
  9. <script type="text/javascript" src="../js/include-web.js"></script>
  10. </head>
  11. <body style=" margin: 0;overflow: hidden;background: #fff;width: 100%;height:100%;position: absolute;top: 0;">
  12. <div id="map" style="margin:0 auto;width: 100%;height: 100%"></div>
  13. <script type="text/javascript" exclude="iclient-classic" src="../../dist/classic/include-classic.js"></script>
  14. <script type="text/javascript">
  15. var map, layer;
  16. map = new SuperMap.Map("map", {
  17. controls: [
  18. new SuperMap.Control.ScaleLine(),
  19. new SuperMap.Control.Zoom(),
  20. new SuperMap.Control.LayerSwitcher(),
  21. new SuperMap.Control.Navigation()]
  22. });
  23. var options = {numZoomLevels: 12, useCanvas: false};
  24. var bounds = new SuperMap.Bounds(-180, -90, 180, 90);
  25. layer = new SuperMap.Layer.Image(
  26. 'World_Day',
  27. 'images/Day.jpg',
  28. bounds,
  29. options
  30. );
  31. map.addLayer(layer);
  32. map.zoomToMaxExtent();
  33. </script>
  34. </body>
  35. </html>