| 12345678910111213141516171819202122232425262728 |
- <template>
- <div class="iframe-wrap">
- <iframe id="mapFrame" ref="mapFrame" src="http://localhost:14000/gis/" frameborder="none"/>
- </div>
- </template>
- <script>
- export default {
- name: 'ChartMap',
- created() {
- window['is'] = this
- window['mapFrame'] = this.$refs.mapFrame
- }
- }
- </script>
- <style scoped lang="scss">
- .iframe-wrap {
- width: 100%;
- height: 100%;
- iframe {
- width: 100%;
- height: 100%;
- }
- }
- </style>
|