分类: 代码

5 篇文章

vue实现圆盘摇杆代码
<template> <view style="position: relative;"> <view ref="toucharea" id="toucharea" class='toucharea' @touchstart="onTouchStart" @touchmove="onTouchMove" @touchcancel=…
openlayers构建离线地图
参考文档 http://linwei.xyz/ol3-primer/ch05/05-03.html http://openlayers.vip/examples/line-arrows.html 项目需要使用内网环境,故无法使用百度地图等在线地图.采用openlayers实现构建离线地图 通过shp加载shp矢量地图文件 <template>…
Websocket封装类
/** * websocket处理封装 */ class WebSocketClass { /** * websocket 连接句柄 * @var Websocket */ ws = null /** * 服务器地址 * @var */ serverUrl /** * 心跳配置 * @var object */ heartbeat = { open…