openlayers 9D
iServer 9D
在VUE中地图页面作为一个组件写在了一个模态框里,然后需要的时候打开这个模态框,现在是模态框打开的时候不加载地图,关闭的时候才会加载地图,样式有没有问题不知道,但是抓包的时候发现打开模态框的时候根本就没有请求iServer加载地图资源,关闭模态框的时候才请求了iServer
<template>
<Modal :title="title" @on-ok="helpConfirm" @on-cancel="helpCancel" @on-visible-change="helpChange"
:styles="{top: '20px',width:'90%',height:'90%'}">
<div style="margin:0 auto;width: 100%;height: 100%">
<div id="map" style="margin:0 auto;width: 90%;height: 90%;float: left;"></div>
<div id="mouse-position" style="margin: 10px auto;width: 90%;height: 10%;display: none;"></div>
</div>
</Modal>
</template>