123456789101112131415161718192021222324252627282930313233343536 |
- <!--********************************************************************
- * Copyright© 2000 - 2021 SuperMap Software Co.Ltd. All rights reserved.
- *********************************************************************-->
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="UTF-8" />
- <title data-i18n="resources.title_componentsIdentify_Vue"></title>
- <script type="text/javascript" include="vue" src="../js/include-web.js"></script>
- <script include="iclient-leaflet-vue" src="../../dist/leaflet/include-leaflet.js"></script>
- <style>
- #main {
- margin: 0 auto;
- width: 100%;
- height: 100%;
- }
- </style>
- </head>
- <body style=" margin: 0;overflow: hidden;background: #fff;width: 100%;height:100%;position: absolute;top: 0;">
- <div id="main">
- <sm-web-map server-url="https://iportal.supermap.io/iportal" map-id="801571284">
- <sm-identify :layer-names="['民航数据']"></sm-identify>
- </sm-web-map>
- </div>
- <script>
- new Vue({
- el: '#main',
- mounted() {
- this.$message.info(resources.msg_clickLayerToPopup);
- }
- });
- </script>
- </body>
- </html>
|