openlayers 动态显示坐标

HTML 页面

    <!DOCTYPE html>
<html>
    <head>
        <title>Accessible Map</title>
        <link rel="stylesheet" href="https://openlayers.org/en/v3.20.1/css/ol.css" type="text/css">
        <!-- The line below is only needed for old environments like Internet Explorer and Android 4.x -->
        <script
            src="https://cdn.polyfill.io/v2/polyfill.min.js?features=requestAnimationFrame,Element.prototype.classList,URL">
        </script>
        <script src="https://openlayers.org/en/v3.20.1/build/ol.js"></script>
        <style>
            a.skiplink {
                position: absolute;
                clip: rect(1px, 1px, 1px, 1px);
                padding: 0;
                border: 0;
                height: 1px;
                width: 1px;
                overflow: hidden;
            }

            a.skiplink:focus {
                clip: auto;
                height: auto;
                width: auto;
                background-color: #fff;
                padding: 0.3em;
            }

            #map:focus {
                outline: #4A74A8 solid 0.15em;
            }
        </style>
    </head>
    <body>
        <div id="map" class="map" tabindex="0"></div>
        <script>
            var longitude = 106.6280289;
            var latitude = 26.6220112;
            var socket = null;
            window.load = initWebSocket();

            function initWebSocket() {
                //初始化weosocket
                if (typeof(WebSocket) == "undefined") {
                    console.log("您的浏览器不支持WebSocket");
                } else {
                    console.log("您的浏览器支持WebSocket");
                    var ip = '127.0.0.1'
                    var port = 10086
                    var userId = 1;
                    //实现化WebSocket对象,指定要连接的服务器地址与端口  建立连接
                    var socketUrl = "ws://" + ip + ":" + port + "/webSocket/" + userId;
                    console.log(socketUrl);
                    if (socket != null) {
                        socket.close();
                        socket = null;
                    }
                    socket = new WebSocket(socketUrl);
                    //打开事件
                    socket.onopen = function() {
                        console.log("websocket已打开");
                        //socket.send("这是来自客户端的消息" + location.href + new Date());
                    };
                    /*
                    //获得消息事件
                    socket.onmessage = function(msg) {
                        var serverMsg = "收到服务端信息:" + msg.data;
                        console.log(serverMsg);
                        //发现消息进入    开始处理前端触发逻辑
                    };
                    */
                    //关闭事件
                    socket.onclose = function() {
                        console.log("websocket已关闭");
                    };
                    //发生了错误事件
                    socket.onerror = function() {
                        console.log("websocket发生了错误");
                    }
                }
            }
            //把经纬度发给后端
            function sendMessage() {
                getMessage();
                if (typeof(WebSocket) == "undefined") {
                    console.log("您的浏览器不支持WebSocket");
                } else {
                    var msg = '{' + "longitude:" + longitude + ",latitude:" + latitude + '}'
                    socket.send(msg);
                }
            }
            // 模拟后台数据
            var trackData = [
                {
                    "lon":longitude,
                    "lat":latitude
                },
            ]
            var features = []
            var map = new ol.Map({
                target: 'map',
                view: new ol.View({
                    center: ol.proj.fromLonLat([longitude, latitude]),
                    zoom: 20
                }),
                layers:[
                    
                ]
            })
             // 底图
            var tileLayer =  new ol.layer.Tile({
                        source: new ol.source.OSM()
                    });
            //接收后端传过来的经纬度
            function getMessage() {
                socket.onmessage = function(msg) {
                    var serverMsg = "收到服务端信息:" + msg.data;
                    var data = JSON.parse(msg.data);
                    let lonLat = {};
                    lonLat.lon = data[0];
                    lonLat.lat = data[1];
                    trackData = lonLat;
                    var coordinate = ol.proj.transform([lonLat.lon,lonLat.lat],'EPSG:4326','EPSG:3857')
                    features[0] = new ol.Feature({
                                            geometry: new ol.geom.Point(coordinate)
                    })
                    // 点图层
                     var addFeature = new ol.layer.Vector({
                                source: new ol.source.Vector({
                                    features: features
                                }),
                                style: new ol.style.Style({
                                    image: new ol.style.Circle({
                                        radius: 5,
                                        stroke: new ol.style.Stroke({
                                            color:'#fff'
                                        }),
                                        fill: new ol.style.Fill({
                                            color:'#f00'
                                        })
                                    })
                                })
                            })
                            
                            map.addLayer(tileLayer)
                            map.addLayer(addFeature)
                    }
                    //发现消息进入    开始处理前端触发逻辑
                };
            //每隔1秒钟发送一次
            var int = self.setInterval("sendMessage()", 200);
                 /*
                for(var i=0;i<trackData.length;i++){
                    // 将点转换成地图识别的格式
                    var coordinate = ol.proj.transform([trackData[i].lon,trackData[i].lat],'EPSG:4326','EPSG:3857')
                    features[i] = new ol.Feature({
                        geometry: new ol.geom.Point(coordinate)
                    })
                }
                */
                 
             

            
            
        </script>
    </body>
</html>

pom.xml

<!-- websocket -->
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-websocket</artifactId>
        <version>2.2.7.RELEASE</version><!--$NO-MVN-MAN-VER$-->
    </dependency>

后端Java

WebSocketConfig.java

    import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.web.socket.server.standard.ServerEndpointExporter;

/** 
* @version 创建时间:2020年10月13日 上午9:59:27
*/
@Configuration
public class WebSocketConfig {
     /**
     * ServerEndpointExporter 作用
     *
     * 这个Bean会自动注册使用@ServerEndpoint注解声明的websocket endpoint
     *
     * @return
     */
    @Bean
    public ServerEndpointExporter serverEndpointExporter() {
        return new ServerEndpointExporter();
    }
}

WebSocketServer.java

    import java.io.IOException;
import java.math.BigDecimal;
import java.util.Map;
import java.util.concurrent.ConcurrentHashMap;
import java.util.concurrent.atomic.AtomicInteger;

import javax.websocket.*;
import javax.websocket.server.PathParam;
import javax.websocket.server.ServerEndpoint;

import org.apache.commons.collections4.map.HashedMap;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.stereotype.Component;


/** 
* @version 创建时间:2020年10月13日 上午10:01:33
*/
@ServerEndpoint("/webSocket/{sid}")
@Component
public class WebSocketServer {
    //记录当前连接数
    private static AtomicInteger onlineNum = new AtomicInteger(); 
    
    //concurrent包的线程安全Set,用来存放每个客户端对应的WebSocketServer对象。
    private static ConcurrentHashMap<String, Session> sessionPlools = new ConcurrentHashMap();
    
    //发送消息
    public void sendMessage(Session session, String message) throws IOException {
        
        if(session != null) {
            synchronized (session) {
            session.getBasicRemote().sendText(message); 
            }
        }
    }
    
    //给指定用户发送信息
    public void sendInfo(String userName, String message) {
        Session session = sessionPlools.get(userName);
        try {
            sendMessage(session, message);
        } catch (IOException e) {
            e.printStackTrace();
        }
    }
    
    //建立连接调用
    @OnOpen
    public void onOpen(Session session, @PathParam(value = "sid")String userName){
        
        sessionPlools.put(userName, session);
        addOnlineCount();
        System.out.println(userName + "加入webSocket!当前人数为" + onlineNum);
        
        /*
        try {
            sendMessage(session, "欢迎" + userName + "加入连接!");
            
        } catch (IOException e) {
            e.printStackTrace();
        }
        */
    }
    
    //关闭连接
    public void onClose(@PathParam("sid")String userName) {
        sessionPlools.remove(userName);
        subOnlineCount();
        System.out.println(userName + "断开webSocket连接!当前人数为" + onlineNum);
    }

     //收到客户端信息
    @OnMessage
    public void onMessage(String message){
        //{longitude:106.6280289,latitude:26.6220112}
        //message = "客户端:\' "+ message +"\'已收到!";
        Map<String, String> map = getLogitude(message);
        message = "["+map.get("longitude")+","+map.get("latitude")+"]";
        System.out.println(message);
        for (Session session : sessionPlools.values()) {
            try {
                sendMessage(session, message);
            } catch (IOException e) {
                e.printStackTrace();
                continue;
            }
        }
    }
    //错误时调用
    @OnError
    public void onError(Session session, Throwable throwable) {
        System.out.println("发生错误!");
        throwable.printStackTrace();
    }
    
    public static void addOnlineCount() {
        onlineNum.incrementAndGet();
    }
    
    public static void subOnlineCount() {
        onlineNum.decrementAndGet();
    }
    /**
     * 获取到经纬度
     * @param message 传过来的消息
     * @return
     */
    public Map<String, String> getLogitude(String message) {
        int i = (int)(Math.random() * 10)+ 1;
        Map<String, String> map = new HashedMap<String, String>();
        String[] source = message.substring(1, message.length()-1).split(",");
        String longitude = source[0].split(":")[1];
        String latitude = source[1].split(":")[1];
        double x = 0.001D;
        double random = Math.random();
        x = plus(x, random);

        double longitude1 = 0;
        double latitude1 = 0;
        if(i % 2 == 0) {
             longitude1 = mul(x, Double.valueOf(longitude));
             latitude1 = mul(x, Double.valueOf(latitude));
        }else if(i % 3 ==0) {
            longitude1 = subtract( Double.valueOf(longitude), x);
             latitude1 = subtract(Double.valueOf(latitude), x);
        }else if(i % 5 == 0) {
            longitude1 = mul( Double.valueOf(longitude), x);
             latitude1 = subtract(Double.valueOf(latitude), x);
        }else {
            longitude1 = subtract( Double.valueOf(longitude), x);
             latitude1 = mul(Double.valueOf(latitude), x);
        }
        
        map.put("longitude", String.valueOf(longitude1));
        map.put("latitude", String.valueOf(latitude1));
        return map;
    }
    /**
     * 两个double类型相加
     * @param v1 参数一
     * @param v2 参数二
     * @return
     */
    public double mul(double v1,double v2){
        BigDecimal b1 = new BigDecimal(Double.toString(v1));
        BigDecimal b2 = new BigDecimal(Double.toString(v2));
        return b1.add(b2).doubleValue();
        }
    /**
     * 两个double类型相乘
     * @param v1 参数一
     * @param v2 参数二
     * @return
     */
    public double plus(double v1,double v2){
        BigDecimal b1 = new BigDecimal(Double.toString(v1));
        BigDecimal b2 = new BigDecimal(Double.toString(v2));
        return b1.multiply(b2).doubleValue();
    }
    
    /**
     * 两个double类型相减
     * @param v1 参数一
     * @param v2 参数二
     * @return
     */
    public double subtract(double v1,double v2){
        BigDecimal b1 = new BigDecimal(Double.toString(v1));
        BigDecimal b2 = new BigDecimal(Double.toString(v2));
        return b1.subtract(b2).doubleValue();
    }
    
}
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 206,214评论 6 481
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 88,307评论 2 382
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 152,543评论 0 341
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 55,221评论 1 279
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 64,224评论 5 371
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 49,007评论 1 284
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,313评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,956评论 0 259
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 43,441评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,925评论 2 323
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,018评论 1 333
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,685评论 4 322
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,234评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,240评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,464评论 1 261
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,467评论 2 352
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,762评论 2 345

推荐阅读更多精彩内容