MapServer应用开发平台示例

MapServer为当前开源WebGIS的应用代表,在西方社会应用面极为广泛,现介绍几个基于它的开源应用平台。

1.GeoMOOSE

       GeoMoose is a Web Client Javascript Framework for displaying distributed cartographic data.

Among it's many strengths, it can handle large numbers of mapping layers, all mapping display is abstracted to separate layers.  This allows for the abstraction of the maintenance and updating tasks as well.

The GeoMoose project is client-side code that uses a variety of JavaScript, XML, and DHTML technologies to interface with other web-clients. The primary target of Moose is for integration with the University of Minnesota's MapServer, but is not dependent upon it for operation. Design objectives include:

  • Code must be developed in an Services Oriented Architecture.
  • Configurability for users.
  • Easy maintenance for data owners.
  • A client interface for MapServer, but designed to be open to other server engines.
  • Targeted use cases for local governments.

 

GeoMoose treats all data layers and interface tools as services.  This makes it very easy to design and add new tools as needed.  It also makes GeoMoose a very good candidate for building links from Map based to Tabular datasets.  GeoMoose is designed around the idea of using Web based URL services as an integration method.  It's very easy to integrate in any existing Web based service to GeoMoose.  The same goes for the Toolset inside of GeoMoose. 

GeoMoose is currently built as a front end to MapServer (CGI).  Because of this, it can utilize any of the output functions that MapServer provides, including Raster, XML, and OGC compliant formats.   Each data layer can be displayed as a raster image, a Imagemap for displaying Popups on a per layer basis, as well as be used as a basis for doing additional data requests based on polygons, or buffered elements in a layer.  OGC services such as WMS (and soon WFS) can also be used directly by GeoMoose.   There is no need to even have a CGI service such as MapServer, if the right OGC services are available.  There is also the capability to draw in the mapping interface and use these new elements as data layers in the interface, including, using them as selection criteria.  GeoMoose is very flexible as far as what services it utilizes, while it's currently built against MapServer, other Raster based data services can also be used by GeoMoose.

In addition to the data owners managing their own publishing tasks, GeoMoose, the interface, is initialized via a XML file called a MapBook.  This MapBook can be constructed by anyone, so even the Mapping interface itself can be managed by anyone. Project leaders can build interfaces with Zoom-to controls and with only the pertinent layers being displayed.  The organization of the layers in the catalog can be grouped, turned on/off by default, have opacity applied to them, and be reordered, or stacked, in the "Z" direction.  Placement of the interface elements is also governed by the XML file.  The Services integration is also handled in the XML file, so separate services can be integrated by the non-GIS professional as well.

New capabilities are being added all the time.  There is a very good Windows install based on MS4W available for Download, with a Linux version on the way. Last Updated ( Friday, 23 January 2009 )

基于Javascript架构的MapServer开源应用系统,支持XML配置,现已基本汉化。

 

2.pmapper

    The p.mapper framework is intended to offer broad functionality and multiple configurations in order to facilitate the setup of a MapServer application based on PHP/MapScript.

 

Functions included are:

  • DHTML (DOM) zoom/pan interface (no use of frames)
  • Zoom/pan also via keyboard keys, mouse wheel, reference map, slider
  • Easy configuration of layout and behaviour with XML config file
  • Query functions (identify, select, search)
  • Fully featured attribute search, including suggest, select boxes, etc.
  • Flexible layout of query results via JavaScript templates
  • Query results display with database joins and hyperlinks
  • Multilingual user interface - pre-defined: EN, DE, IT, FR, NL, SK, ES, RU, BR, HR, HU, ZH, JA
  • Fully XHTML 1.0 Strict compliant
  • HTML legends and various display styles of legend and layers/TOC
  • Print functions: HTML and PDF
  • DHTML pop-up windows and dialogs
  • Pop-up identify when moving with mouse over map
  • Support for point layers with data in a database supported by PEAR framework
  • Distance and area measurement function
  • Adding points of interest with labels on map
  • Start map with pre-defined zoom extent: via explicit extent or layer feature
  • Plugin API to add custom functionality
  • Various plugins: layer transparency, query result export, and more

p.mapper has been tested with MapServer version 4.0 to 5.2 under Windows, Linux, and Mac OS X.

 

3.CartoWeb

 CartoWeb is a comprehensive and ready-to-use Web-GIS (Geographical Information System) as well as a convenient framework for building advanced and customized applications.

Developed by Camptocamp SA, it is based on the UMN MapServer engine and is released under the GNU General Public License (GPL).

Written using innovative language PHP5, CartoWeb is highly modular and customizable thanks to its object-oriented architecture. It runs evenly on Windows or Unix-like platforms and shows its real power when associated to PostgreSQL/PostGIS.

Last but not least, CartoWeb may be set up as a SOAP Web Service enabling to have front-end server on one machine and data and map generation on an other.

转载于:https://www.cnblogs.com/cnzzb/archive/2009/02/12/1388873.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/391788.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

leetcode 995. K 连续位的最小翻转次数(贪心算法)

在仅包含 0 和 1 的数组 A 中,一次 K 位翻转包括选择一个长度为 K 的(连续)子数组,同时将子数组中的每个 0 更改为 1,而每个 1 更改为 0。 返回所需的 K 位翻转的最小次数,以便数组没有值为 0 的元素。如果…

kotlin数据库_如何在Kotlin应用程序中使用Xodus数据库

kotlin数据库I want to show you how to use one of my favorite database choices for Kotlin applications. Namely, Xodus. Why do I like using Xodus for Kotlin applications? Well, here are a couple of its selling points:我想向您展示如何在Kotlin应用程序中使用我…

使用route add添加路由,使两个网卡同时访问内外网

route add命令格式:route [-f] [-p] [Command] [Destination] [mask Netmask] [Gateway] [metric Metric] [if Interface] 通过配置电脑的静态路由来实现同时访问内外网的。电脑的网络IP配置不用变,两个网卡都按照正常配置(都配置IP地址、子网…

基于JavaConfig配置的Spring MVC的构建

上一篇讲了基于XML配置的构建,这一篇讲一讲基于JavaConfig的构建。为什么要写这篇文章,因为基于xml配置的构建,本人认为很麻烦,要写一堆的配置,不够简洁,而基于JavacConfig配置的构建符合程序员的编码习惯&…

pymc3 贝叶斯线性回归_使用PyMC3进行贝叶斯媒体混合建模,带来乐趣和收益

pymc3 贝叶斯线性回归Michael Johns, Zhenyu Wang, Bruno Dupont, and Luca Fiaschi迈克尔约翰斯,王振宇,布鲁诺杜邦和卢卡菲亚斯基 “If you can’t measure it, you can’t manage it, or fix it”“如果无法衡量,就无法管理或修复它” –…

webkit中对incomplete type指针的处理技巧

近日在研究webkit的时候发现了一个函数 template<typename T> inline void deleteOwnedPtr(T* ptr) {typedef char known[sizeof(T) ? 1 : -1];if(sizeof(known))delete ptr; } 一开始对这个函数非常费解&#xff0c;为什么作者不直接 delete ptr; 通过上stackoverflow提…

leetcode 1004. 最大连续1的个数 III(滑动窗口)

给定一个由若干 0 和 1 组成的数组 A&#xff0c;我们最多可以将 K 个值从 0 变成 1 。 返回仅包含 1 的最长&#xff08;连续&#xff09;子数组的长度。 示例 1&#xff1a; 输入&#xff1a;A [1,1,1,0,0,0,1,1,1,1,0], K 2 输出&#xff1a;6 解释&#xff1a; [1,1,1…

我如何找到工作并找到理想的工作

By Julius Zerwick朱利叶斯泽威克(Julius Zerwick) This article is about how I went through my job hunt for a full time position as a software engineer in New York City and ended up with my dream job. I had spent two years building my skills and had aspirati…

synchronized 与 Lock 的那点事

synchronized 与 Lock 的那点事 最近在做一个监控系统&#xff0c;该系统主要包括对数据实时分析和存储两个部分&#xff0c;由于并发量比较高&#xff0c;所以不可避免的使用到了一些并发的知识。为了实现这些要求&#xff0c;后台使用一个队列作为缓存&#xff0c;对于请求只…

ols线性回归_普通最小二乘[OLS]方法使用于机器学习的简单线性回归变得容易

ols线性回归Hello Everyone!大家好&#xff01; I am super excited to be writing another article after a long time since my previous article was published.自从上一篇文章发表很长时间以来&#xff0c;我很高兴能写另一篇文章。 A Simple Linear Regression [SLR] is…

ubuntu安装配置jdk

先去 Oracle下载Linux下的JDK压缩包&#xff0c;我下载的是jdk-7u4-linux-i586.tar.gz文件&#xff0c;下好后直接解压Step1:# 将解压好的jdk1.7.0_04文件夹用最高权限复制到/usr/lib/jvm目录里sudo cp -r ~/jdk1.7.0_04/ /usr/lib/jvm/Step2:# 配置环境变量sudo gedit ~/.prof…

leetcode 697. 数组的度(hashmap)

给定一个非空且只包含非负数的整数数组 nums&#xff0c;数组的度的定义是指数组里任一元素出现频数的最大值。 你的任务是在 nums 中找到与 nums 拥有相同大小的度的最短连续子数组&#xff0c;返回其长度。 示例 1&#xff1a; 输入&#xff1a;[1, 2, 2, 3, 1] 输出&…

facebook机器学习_如何为您的页面创建Facebook Messenger机器人

facebook机器学习by Paul Pinard保罗皮纳德(Paul Pinard) 如何为您的页面创建Facebook Messenger机器人 (How to create a Facebook messenger bot for your page) When it comes to sharing your chatbot, Facebook Messenger is a must. We created a very easy step-by-ste…

Logstash配置语法及相关命令

配置结构以及插件位置 输入插件&#xff1a; input{ … } 过滤插件&#xff1a; filter{ … } 输出插件&#xff1a; output{ … } 数据类型 - Array users > [{id > 1,name > N1},{id > 2,name > N2}] - lists path > ["/var/log/messages"…

面试整理

SpringMVC 和Struts2的区别 1. 机制&#xff1a; spring mvc的入口是servlet&#xff0c;而struts2是filter&#xff0c;这样就导致了二者的机制不同。 2. 性能&#xff1a; spring会稍微比struts快。spring mvc是基于方法的设计&#xff0c;而sturts 是基于类&#xff0c;…

Amazon Personalize:帮助释放精益数字业务的高级推荐解决方案的功能

By Gerd Wittchen盖德维琴 推荐解决方案的动机 (Motivation for recommendation solutions) Rapid changes in customer behaviour requires businesses to adapt at an ever increasing pace. The recent changes to our work and personal life has forced entire nations t…

Linux 链接文件讲解

链接文件是Linux文件系统的一个优势。如需要在系统上维护同一文件的两份或者多份副本&#xff0c;除了保存多份单独的物理文件之外&#xff0c;可以采用保留一份物理文件副本和多个虚拟副本的方式&#xff0c;这种虚拟的副本就成为链接。链接是目录中指向文件真实位置的占位符。…

系统滚动条实现的NUD控件Unusable版

昨天研究了一下系统滚动条&#xff0c;准备使用它来实现一个NumericUpDown控件&#xff0c;因为它可以带来最正宗的微调按钮外观&#xff0c;并说了一下可以使用viewport里的onScroll事件来获取系统滚动条的上下点击动作。 同时昨天还说了onScroll事件的一个问题是&#xf…

react 中渲染html_如何在React中识别和解决浪费的渲染

react 中渲染htmlby Nayeem Reza通过Nayeem Reza 如何在React中识别和解决浪费的渲染 (How to identify and resolve wasted renders in React) So, recently I was thinking about performance profiling of a react app that I was working on, and suddenly thought to set…

php变量的数据类型

一、类型 标量类型: 布尔型 整型 浮点型 字符串 复合类型: 数组 对象 特殊类型: 资源 null 1. 布尔型 true false 以下值认为是false 其他值都认为是true; 布尔值false 整型值0 浮点的0 空字符串和字符串0 空数组 空对象(只适用于php4) 特殊类型null 2. 整型 正整数和负整…