上一页 1 2 3 4 5 6 7 8 9 10 ··· 26 下一页

2022年3月28日

OpenLayer4——GeoJSON简介

摘要: GeoJSON实际上就是一个JSON,为了满足GIS编程需要,额外定制了这样一套规则。geojson中包含了点、线、面的数据,包含大量的坐标的数组 (不需要背诵记忆,如果参与GIS编程,短时间内就会接触大量这样的数据) gsojson样例1 独立的feature {"type":"Feature", 阅读全文

posted @ 2022-03-28 11:36 疯狂的妞妞 阅读(272) 评论(0) 推荐(0) 编辑

OpenLayer4——添加Geojson

摘要: Geojson是一种特殊的json数据,内部封装了地理空间相关的数据(点、线、面)。 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> <link href="ol/ol.css" 阅读全文

posted @ 2022-03-28 10:56 疯狂的妞妞 阅读(257) 评论(0) 推荐(0) 编辑

2022年3月25日

RabbitMQ——常见的函数介绍

摘要: 在前面一篇文章的案例中,如果开启两个Receive,消息被平均发送给了2个Receive。很多情况下,我们并不希望消息平均分配,可以对代码做如下修改。 场景:a侦听器处理快,b侦听器处理的慢,我们希望能将更多的消息分配给a。 import cn.swsk.springboot.rgyx.jx.tes 阅读全文

posted @ 2022-03-25 17:19 疯狂的妞妞 阅读(64) 评论(0) 推荐(0) 编辑

RabbitMQ——helloworld

摘要: 定个小目标,写一个能跑起来的程序。 添加maven依赖 <!-- https://mvnrepository.com/artifact/com.rabbitmq/amqp-client --> <dependency> <groupId>com.rabbitmq</groupId> <artifac 阅读全文

posted @ 2022-03-25 17:08 疯狂的妞妞 阅读(15) 评论(0) 推荐(0) 编辑

OpenLayer4——图层叠加

摘要: 叠加一张png <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> <!-- The line below is only needed for old environments li 阅读全文

posted @ 2022-03-25 15:43 疯狂的妞妞 阅读(244) 评论(0) 推荐(0) 编辑

2022年3月24日

OpenLayer4——图形组合

摘要: 使用一些功能函数,将多个图形组合使用,方便统一样式。常见的应用场景,就是多个省份,拼接成一张更大的区域。 任意多边形 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> <!-- Th 阅读全文

posted @ 2022-03-24 18:01 疯狂的妞妞 阅读(136) 评论(0) 推荐(0) 编辑

OpenLayer4——圆形

摘要: 代码相对简单,提供圆心和半径即可 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> <!-- The line below is only needed for old enviro 阅读全文

posted @ 2022-03-24 17:59 疯狂的妞妞 阅读(83) 评论(0) 推荐(0) 编辑

OpenLayer4——面(多边形)

摘要: 单独介绍多边形,主要是因为存在多边形组合使用的情况。 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> <!-- The line below is only needed for 阅读全文

posted @ 2022-03-24 17:16 疯狂的妞妞 阅读(146) 评论(0) 推荐(0) 编辑

OpenLayer4——线

摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> <!-- The line below is only needed for old environments like Inter 阅读全文

posted @ 2022-03-24 17:14 疯狂的妞妞 阅读(23) 评论(0) 推荐(0) 编辑

OpenLayer4——点

摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> <link href="ol/ol.css" rel="stylesheet" type="text/css"/> <script 阅读全文

posted @ 2022-03-24 11:46 疯狂的妞妞 阅读(40) 评论(0) 推荐(0) 编辑

上一页 1 2 3 4 5 6 7 8 9 10 ··· 26 下一页

导航