- 浏览: 12991 次
- 性别:
- 来自: 西安
最新评论
文章列表
最近做一个WebGIS的项目,使用的是Openlayers3 v3.17.1的版本,需要用到ajax调用ArcGIS for Server 10.2发布的WMS服务,业务应用于GIS服务不在一个域内,需要解决跨域的问题。
1、(不是最终解决方案,可略过)网上有一篇关于跨域的解决办法,讲的比较明白:http://www.cnblogs.com/dojo-lzz/p/4265637.html
几种解决办法,基本都要更改GIS服务器端的内容,暂时决定采用JSONP的方式来解决该问题,这时需要解决的另外一个问题出现了,那就是修改WMS的查询结果的格式。
2、(不是最终解决方案,可略过)查询Ar ...
好用的LookAndFeel——TinyLaF
- 博客分类:
- java
仔细阅读readme,就可以发现,tinycp.jar含有调试定制面板,实际上就是定制Theme主题,开发加载的时候,还是应该加载tinylaf.jar
TinyLaF will search the following URLs:
TinyLookAndFeel.class.getResource("/Default.theme");- finds 'Default.theme' if it is inside tinylaf.jar
Thread.currentThread().getContextClassLoader().getResource( ...
新建一个Web项目
(一)将antlr、asm、groovy三个jar包放到WEB-INF\lib下,项目目录结构如下
(二)修改web.xml,增加serverlet和serverlet映射为以下内容,它的意思就是告诉服务器,凡是*.groovy文件,用groovy.servlet.GroovyServlet类处理,凡是*.gsp用groovy.servlet.TemplateServlet类处理
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns=&quo ...
public class AnimatedGifEncoder {
protected int width; // image size
protected int height;
protected Color transparent = null; // transparent color if given
protected int transIndex; // transparent index in color table
protected int repeat = -1; // no ...
public class NeuQuant {
protected static final int netsize = 256; /* number of colours used */
/* four primes near 500 - assume no image has a length so large */
/* that it is divisible by all four primes */
protected static final int prime1 = 499;
...
class LZWEncoder {
private static final int EOF = -1;
private int imgW, imgH;
private byte[] pixAry;
private int initCodeSize;
private int remaining;
private int curPixel;
// GIFCOMPR.C - GIF Image compression routines
...