import * as ol from 'ol' import * as style from 'ol/style' import * as layer from 'ol/layer' import * as source from 'ol/source' import * as geom from 'ol/geom' import * as proj from 'ol/proj' import * as interaction from 'ol/interaction' import * as extent from "ol/extent"; import * as format from "ol/format"; import { Coordinate } from 'ol/coordinate' import * as turf from '@turf/turf' import VideoImg from './22.png' const videoPointStyle = () => { const _style = [] const img = VideoImg _style.push(new style.Style({ image: new style.Icon({ src: `.${img}`, scale: 1 }) })) return _style } export default { videoPointStyle, }