examples-wechat.html 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. <!--********************************************************************
  2. * Copyright© 2000 - 2021 SuperMap Software Co.Ltd. All rights reserved.
  3. *********************************************************************-->
  4. <!DOCTYPE html>
  5. <html>
  6. <head>
  7. <meta charset="utf-8" />
  8. <meta http-equiv="X-UA-Compatible" content="IE=edge" />
  9. <meta http-equiv="pragma" content="no-cache" />
  10. <meta http-equiv="Cache-Control" content="no-cache, must-revalidate" />
  11. <meta http-equiv="expires" content="0" />
  12. <title data-i18n="resources.title_examplesLeaflet"></title>
  13. <link rel="shortcut icon" type="image/x-icon" href="../../web/img/favicon.ico" />
  14. <meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport" />
  15. <script
  16. type="text/javascript"
  17. include="jquery,bootstrap,template,admin-lte,jquery.scrollto,i18n,lazyload"
  18. src="../js/include-web.js"
  19. ></script>
  20. <link rel="stylesheet" href="../css/common.css" />
  21. <link rel="stylesheet" href="../css/header.css" />
  22. <link rel="stylesheet" href="../css/sideBar.css" />
  23. <link rel="stylesheet" href="../css/examples.css" />
  24. <script type="text/javascript" src="../js/utils.js"></script>
  25. <style>
  26. /* 删除头部和侧边栏 */
  27. header {
  28. display: none;
  29. }
  30. aside {
  31. display: none;
  32. }
  33. .content-wrapper {
  34. margin: 0px;
  35. }
  36. .examples-container {
  37. margin-top: 0px;
  38. }
  39. #charts-list {
  40. padding: 5px;
  41. }
  42. .category,
  43. .box.box-default,
  44. .box-body {
  45. padding: 0;
  46. }
  47. .box-header {
  48. padding: 2px;
  49. }
  50. .col-xs-6 {
  51. padding: 0 5px 2px;
  52. }
  53. .category-title {
  54. font-size: 18px;
  55. }
  56. .box-header > .fa,
  57. .box-header > .glyphicon,
  58. .box-header > .ion,
  59. .box-header .box-title {
  60. font-size: 15px;
  61. margin-left: -15px;
  62. }
  63. .icl-footer {
  64. margin-top: 0px;
  65. }
  66. .contact-main,
  67. .home-link,
  68. .home-link a {
  69. padding: 0px 3px;
  70. text-align: center;
  71. }
  72. .icl-copyright {
  73. height: auto;
  74. padding: 10px 0;
  75. line-height: normal;
  76. }
  77. #charts-list .chart .chart-link .chart-thumb {
  78. height: 130px !important;
  79. }
  80. </style>
  81. </head>
  82. <body class="hold-transition skin-blue sidebar-mini" data-spy="scroll" data-target="#scrollSpy">
  83. <!-- ./wrapper -->
  84. <div class="wrapper"></div>
  85. <script>
  86. $('.wrapper').load('../template/example.html', function() {
  87. var navigation = {
  88. nav: {
  89. title: 'SuperMap iClient 10i(2020)',
  90. path: '../../web/',
  91. isLocal: window.isLocal
  92. }
  93. };
  94. utils.loadTemplate('.icl-header', '../template/header.html', navigation);
  95. $body = $('body');
  96. $body.append("<script type='text/javascript' src='./config.js'><\/script>");
  97. $body.append("<script type='text/javascript' src='../js/localization.js'><\/script>");
  98. $body.append("<script type='text/javascript' src='../js/common.js'><\/script>");
  99. $body.append("<script type='text/javascript' src='../js/sidebar.js'><\/script>");
  100. $body.append("<script type='text/javascript' src='../js/example.js'><\/script>");
  101. $body.append("<script type='text/javascript' src='../js/wechat.js'><\/script>");
  102. });
  103. </script>
  104. <!-- ./wrapper end-->
  105. </body>
  106. </html>