随笔分类 - GIS
地理信息系统相关类目
摘要:<!DOCTYPE html> <html> <head> <title>IGC Data</title> <link rel="stylesheet" href="http://openlayers.org/en/v3.13.0/css/ol.css" type="text/css"> <scri
阅读全文
摘要:<!DOCTYPE html> <html> <head> <title>Earthquakes Heatmap</title> <link rel="stylesheet" href="http://openlayers.org/en/v3.13.0/css/ol.css" type="text/
阅读全文
摘要:<!DOCTYPE html> <html> <head> <title>Custom Animation</title> <link rel="stylesheet" href="http://openlayers.org/en/v3.13.0/css/ol.css" type="text/css
阅读全文
摘要:centerLon ,centerLat 为获取到的经纬度; dx ,dy为该点相对于地图左上角的像素差 tmap.div.offsets[0],tmap.div.offsets[1] 为地图左上角的屏幕坐标。 PosX, PosY 为该经纬度的屏幕坐标。 IE,360,firefox,google
阅读全文
摘要://查找附近设备 distance距离 function SearchNearDevice(distance) { require(["esri/tasks/BufferParameters", "esri/tasks/GeometryService", "esri/SpatialReference
阅读全文
摘要:解决arcgis javascript textsymbol不支持多行文本标注的问题 发布于 1 个月前 作者 wandergis 135 次浏览 来自 技术 一直没有关注textsymbol标注的换行问题,今天群里一个人提出了这个问题,于是查了下文档测试了下 “\n”、"\r"、 都试过了,发现多
阅读全文
摘要:JS源码 /** * Created by Wandergis on 2015/7/8. * 提供了百度坐标(BD09)、国测局坐标(火星坐标,GCJ02)、和WGS84坐标系之间的转换 */ //定义一些常量 var x_PI = 3.14159265358979324 * 3000.0 / 18
阅读全文
摘要:1、wkt简介 WKT(Well-known text)是一种文本标记语言,用于表示矢量几何对象、空间参照系统及空间参照系统之间的转换。它的二进制表示方式,亦即WKB(well-known-binary)则胜于在传输和在数据库中存储相同的信息。该格式由开放地理空间联盟(OGC)制定。WKT可以表示的
阅读全文
摘要:ArcGIS for Javascript API 3.14本地部署 其他版本类似 1. 下载ArcGIS JavaScript API 下载地址为(需要注册账号):https://developers.arcgis.com/en/downloads/ 2. 本地部署API (1)web服务器:在服
阅读全文
摘要:在Arcgis for js中加载百度地图。 效果: 地图 影像-无标注 影像-有标注 实现: 第一,在此感谢http://www.cnblogs.com/chenyuming507950417/p/3343729.html这篇文章的主人,给了我很大的启发与帮助,因为一直在找相关的参数,都不对,只有
阅读全文
摘要:GeoJSON是基于JavaScript 对象表示法的地理空间信息数据交换格式。 目录 1. 简介 1.1.举例 1.2.定义 2.GeoJSON对象 2.1 几何对象 2.1.1 位置 2.1.2 点 2.1.3 多点 2.1.4 线 2.1.5 多线 2.1.6 面 2.1.7 多面 2.1.8
阅读全文
摘要:例:加载服务地址"http://services.arcgisonline.com/ArcGIS/services"中的"ESRI_Imagery_World_2D"数据对象(图层)到地图上。 private void GetServerTest() { //获得服务对象名称 IAGSServerO
阅读全文
摘要:SELECT R.SHAPE.GET_WKT() FROM ROAD R WHERE R.Objectid=2
阅读全文
摘要:OpenLayer的Map Event在Event.js文件的OpenLayers.Events中定义。 1BROWSER_EVENTS: [ 2 "mouseover", //鼠标位于对象或区域上 3 "mouseout", //鼠标移出 4 "mousedown", //鼠标按下 5 "mous
阅读全文
摘要:Symbols with WebGL When using symbol styles with WebGL, OpenLayers would render the symbol on a temporary image and would create a WebGL texture for e
阅读全文
摘要:Icon Pixel Operations Example using an icon to symbolize a point. Click on the icon to select it, and it will be rendered using its negative image. Re
阅读全文
摘要:<!DOCTYPE html> <html> <head> <title>View Animation</title> <link rel="stylesheet" href="http://openlayers.org/en/v3.13.0/css/ol.css" type="text/css">
阅读全文
摘要:<!DOCTYPE html> <html> <head> <title>Box Selection</title> <link rel="stylesheet" href="http://openlayers.org/en/v3.13.0/css/ol.css" type="text/css">
阅读全文
摘要:OSM:转换在球墨卡托投影坐标关系“EPSG:900913”到“EPSG:4326”坐标 openlayers openstreetmap coordinate-transformation epsg 我的地图上一层(从实例): var lonLat = new OpenLayers.LonLat(
阅读全文
摘要:ol.extent Methods ol.extent.applyTransform(extent, transformFn, opt_extent){ol.Extent} src/ol/extent.js, line 863 Apply a transform function to the ex
阅读全文