{{sellerTotalView > 1 ? __("sellers", {number: sellerTotalView}) : __("seller", {number: sellerTotalView}) }}, {{numTotalView > 1 ? __("items", {number: numTotalView}) : __("item", {number: numTotalView}) }}
free FREE

Change Your Zip Code

Inventory information and delivery speeds may vary for different locations.

Location History

{{email ? __('Got it!') : __('Restock Alert')}}

We will notify you by email when the item back in stock.

Cancel
Yami

Jingdong book

WebGIS工程项目开发实践/清华开发者书库

{{buttonTypePin == 3 ? __("Scan to view more PinGo") : __("Scan to start")}}

WebGIS工程项目开发实践/清华开发者书库

{{__(":people-members", {'people': item.limit_people_count})}} {{ itemCurrency }}{{ item.valid_price }} {{ itemCurrency }}{{ item.invalid_price }} {{ itemDiscount }}
Ends in
{{ itemCurrency }}{{ item.valid_price }}
{{ itemCurrency }}{{ priceFormat(item.valid_price / item.bundle_specification) }}/{{ item.unit }}
{{ itemDiscount }}
{{ itemCurrency }}{{ item.valid_price }} {{ itemCurrency }}{{ priceFormat(item.valid_price / item.bundle_specification) }}/{{ item.unit }} {{ itemCurrency }}{{ item.invalid_price }} {{itemDiscount}}
{{ itemCurrency }}{{ item.valid_price }}
Sale ends in
Sale will starts after Sale ends in
{{ getSeckillDesc(item.seckill_data) }}
{{ __( "Pay with Gift Card to get sale price: :itemCurrency:price", { 'itemCurrency' : itemCurrency, 'price' : (item.giftcard_price ? priceFormat(item.giftcard_price) : '0.00') } ) }} ({{ itemCurrency }}{{ priceFormat(item.giftcard_price / item.bundle_specification) }}/{{ item.unit }}) Details
Best before

Currently unavailable.

We don't know when or if this item will be back in stock.

Unavailable in your area.
Sold Out

Details

Full product details
Editer Recommend

本书基于WebGIS主流平台ArcGIS和OpenGIS,深入浅出地介绍了WebGIS开发的原理与项目实践。全书内容包括:
Web开发基础知识;
Web前端开发技术;
JavaWeb服务器开发技术;
WebGIS 实现技术;
WebGIS for Server网络地图应用开发;
OpenGIS开发;
WebGIS项目实战:电力GIS系统与交通WebGIS系统。
本书以项目的“高效开发”为目标,遵循“循序渐进”的原则,在内容与结构上均做了精心设计与安排,条理清晰,逻辑分明,从理论基础到项目实践,有助于读者理论知识和开发能力实现阶梯式的提升和扩展。

Content Description

本书共分8章,系统论述了WebGIS开发的技术与项目实践。其中第1~3章为Web基础知识篇,第1章内容主要介绍Web开发的基础知识,包括Web应用的发展历程及组成部分,帮助读者建立对Web应用开发的基本认识; 第2章讲解Web前端开发的相关技术,包括布局技术和脚本技术,通过完成一个用户管理登录界面的简单案例演示了如何使用前台相关技术实现基本界面元素的实现; 第3章介绍JavaWeb后台开发相关内容,包括基本开发环境的搭建以及SSH框架的基本使用。第4~6章为WebGIS开发技术篇,第4章介绍WebGIS的相关概念及实现技术; 第5章介绍ArcGIS for Server网络地图应用开发; 第6章介绍OpenGIS及OpenGIS平台的搭建,通过一些简短的示例代码来让读者快速入门。第7~8章为WebGIS项目实战篇,第7章介绍电力管线WebGIS系统项目开发; 第8章介绍交通领域WebGIS系统项目开发。
本书适用于政府与企业相关部门的GIS研究与开发人员,也适用于高等院校地理学、地理信息系统、房地产、环境科学、资源与城乡规划管理、区域经济学等相关专业学生参考与学习,本书还适用于ArcGIS平台和OpenGIS平台使用者、地理信息系统爱好者以及希望从事WebGIS软件开发的开发人员。
Catalogue

Web基础知识篇
第1章Web应用开发简介
1.1Web应用
1.1.1Web应用发展历史
1.1.2Web应用的基本构成
1.2Web前端开发简介
1.2.1网页布局和样式
1.2.2JavaScript脚本语言
1.2.3Flash技术
1.3Web后台开发简介
1.3.1服务器软件
1.3.2数据库
1.3.3Web后台开发语言
第2章Web前端开发基础
2.1前言
2.1.1超文本标记语言
2.1.2认识超文本标记语言
2.1.3文档语言编码
2.2网页布局基础
2.2.1认识HTML+CSS布局技术
2.2.2样式文件的引用方式
2.2.3CSS的盒子模型
2.2.4类选择器
2.2.5进一步修饰
2.3JavaScript语言基础
2.3.1JavaScript简介
2.3.2Web文档对象模型DOM
2.3.3使用JavaScript实现数据的校验
2.3.4使用工具包和开发框架
2.3.5使用插件加速开发
2.3.6总结和深入学习
第3章JavaWeb服务器端开发基础
3.1建立开发平台
3.1.1安装JDK
3.1.2安装Tomcat
3.1.3安装PostgreSQL数据库
3.1.4安装Eclipse
3.2MVC模式及对象持久化
3.2.1开发框架简介
3.2.2MVC的层结构
3.2.3对象关系映射ORM技术
3.2.4SSH集成开发框架
3.3Struts2框架的使用
3.3.1Struts2框架的下载及部署
3.3.2Struts2配置
3.3.3创建第一个Action实例
3.3.4使用Struts2的动作
3.3.5通过Action接收前台数据
3.3.6通过Session记录登录状态
3.3.7使用拦截器阻止非法访问
3.3.8文件的上传
3.4Hibernate框架的使用
3.4.1配置数据库连接
3.4.2建立持久化类
3.4.3配置映射文件
3.4.4写入数据库实例
3.4.5读取数据库实例
3.4.6数据库删除实例
3.5Spring框架的使用
3.5.1Spring简介
3.5.2Spring的配置
3.5.3Spring和Struts2、Hibernate的整合
WebGIS开发技术篇
第4章WebGIS
4.1WebGIS简介
4.1.1什么是WebGIS
4.1.2WebGIS的特征
4.1.3WebGIS应用程序框架
4.1.4B/S结构的WebGIS系统的分层处理体系
4.2WebGIS实现技术
4.2.1CGI技术
4.2.2Java Applet技术
4.2.3Plugin技术
4.2.4ActiveX技术
4.2.5Server API技术
第5章ArcGIS for Server网络地图应用开发
5.1ArcGIS for Server简介
5.1.1什么是ArcGIS Server
5.1.2ArcGIS for Server的组件
5.1.3ArcGIS for Server中包含的内容
5.1.4ArcGIS for Server安装
5.2地图制作
5.2.1Desktop安装教程
5.2.2地图矢量化过程
5.2.3矢量化过程示例
5.3地图服务发布
5.3.1服务类型
5.3.2发布服务
5.4使用服务
5.4.1ArcGIS API for JavaScript简介
5.4.2ArcGIS API for JavaScript实现编辑功能
5.4.3ArcGIS API for JavaScript实现打印功能
第6章OpenGIS
6.1OpenGIS概述
6.1.1什么是OpenGIS
6.1.2OpenGIS特点
6.1.3OpenGIS相关定义
6.1.4OpenGIS开放模式
6.1.5软件及类库
6.1.6框架作用
6.2OpenGIS技术实现
6.2.1面向对象技术与分布计算技术
6.2.2开放式数据库互连(ODBC)
6.2.3分布式对象技术
6.3地图服务器GeoServer
6.3.1GeoServer简介
6.3.2环境搭建
6.3.3地图数据处理
6.3.4部署地图数据
6.3.5发布Web地图服务(WMS)
6.3.6基于Silverlight技术的地图客户端实现
6.4地图客户端OpenLayers
6.4.1开源地图框架介绍
6.4.2源代码总体结构分析
6.4.3Web制图基本知识
6.4.4添加栅格图层
6.4.5添加矢量图层
6.4.6使用事件
6.4.7添加控件
6.4.8样式特点
6.4.9OpenLayers数据表现
WebGIS项目实践篇
第7章城市地下电力管线GIS系统
7.1系统概述
7.1.1开发背景
7.1.2需求分析
7.1.3可行性分析
7.2系统整体设计
7.2.1GIS功能模块设计
7.2.2设备管理模块设计
7.2.3管线业务功能模块设计
7.2.4其他管理模块
7.3数据库设计
7.3.1系统设备模型设计
7.3.2系统属性数据库设计
7.3.3系统空间数据库设计
7.3.4属性与空间数据库关联设计
7.4系统实现
7.4.1开发环境搭建
7.4.2GIS功能模块实现
7.4.3设备管理模块实现
7.4.4管线业务模块实现
7.4.5其他管理模块实现
7.5系统发布
7.5.1创建工程
7.5.2运行工程
第8章交通WebGIS信息系统
8.1交通WebGIS系统概述
8.1.1开发背景
8.1.2需求分析
8.2系统整体设计
8.2.1主界面基本模块功能设计
8.2.2地图基本管理模块功能设计
8.2.3手机定位模块功能设计
8.2.4经纬度路径生成功能设计
8.2.5导航模块功能设计
8.2.6用户管理模块功能设计
8.3数据库设计
8.3.1ER图设计
8.3.2创建数据库及数据表
8.4系统实现
8.4.1开发环境及环境配置
8.4.2主界面基本模块
8.4.3地图基本管理模块
8.4.4手机定位模块
8.4.5经纬度路径生成模块
8.4.6导航模块
8.4.7用户管理模块
8.5系统发布
8.5.1开发环境
8.5.2创建工程
8.5.3运行工程
8.6开发总结
参考文献

Specifications

Brand Jingdong book
Brand Origin China

Disclaimer

Product packaging, specifications and price are subject to change without notice. All information about the products on our website is provided for information purposes only. Please always read labels, warnings and directions provided with the product before use.

View Full Terms of Use
Add to favorites
{{ $isZh ? coupon.coupon_name_sub : coupon.coupon_ename_sub | formatCurrency }}
{{__("Buy Directly")}} {{ itemCurrency }}{{ item.directly_price }}
Quantity
{{ quantity }}
{{ instockMsg }}
{{ limitText }}
{{buttonTypePin == 3 ? __("Scan to view more PinGo") : __("Scan to start")}}
Sold by JD@CHINA
Ship to
{{ __("Ship to United States only") }}
Free shipping over 69
Genuine guarantee

Added to Cart

Keep Shopping

More to Consider

{{ item.brand_name }}

{{ item.item_name }}

{{ item.currency }}{{ item.market_price }}

{{ item.currency }}{{ item.unit_price }}

{{ item.currency }}{{ item.unit_price }}

Coupons

{{ coupon.coupon_name_new | formatCurrency }}
Clip Clipped Over
{{ getCouponDescStr(coupon) }}
{{ coupon.use_time_desc }}
Expires soon {{ formatTime(coupon.use_end_time) }}

Share this item with friends

Cancel

Yami Gift Card

Get this exclusive deal when paying with gift card

Terms and Conditions

Gift card deals are special offers for selected products;

The gift card deals will automatically be activated if a customer uses gift card balance at check out and the balance is sufficient to pay for the total price of the shopping cart products with gift card deals;

You will not be able to activate the gift card deals if you choose other payment methods besides gift card. The products will be purchased at their normal prices;

If your account balance is not enough to pay for the products with gift card deals, you can choose to reload your gift card balance by clicking on the Reload button at either shopping cart page or check out page;

Products that have gift card deals can be recognized by a special symbol showing 'GC Deal';

For any additional questions or concerns, please contact our customer service;

Yamibuy reserves the right of final interpretation.

Sold by Yami

Service Guarantee

Yami Free Shipping over $49
Yami Easy Returns
Yami Ships from United States

Shipping

  • United States

    Standard Shipping is $5.99 (Excluding Alaska & Hawaii). Free on orders of $49 or more.

    Local Express is $5.99 (Available in Parts of CA, NJ, MA & PA). Free on orders of $49 or more.

    2-Day Express (Includes Alaska & Hawaii) starts at $19.99.

Return Policy

Yami is committed to provide our customers with a peace of mind when purchasing from us. Most items shipped from Yamibuy.com can be returned within 30 days of receipt of shipment (For Food, Beverages, Snacks, Dry Goods, Health supplements, Fresh Grocery and Perishables Goods, within 7 days of receipt of shipment due to damages or quality issues; To ensure that every customer receives safe and high-quality products, we do not provide refunds or returns for beauty products once they have been opened or used, except in the case of quality issues; Some products may have different policies or requirements associated with them, please see below for products under special categories, or contact Yami Customer Service for further assistance).
Thank you for your understanding and support.

Learn More

Sold by Yami

Terms and Conditions of Yami E-Gift Card

If you choose “Redeem automatically” as your delivery method, your gift card balance will be reload automatically after your order has been processed successfully;

If you choose “Send to Email”as your delivery method, the card number and CVV will be sent to the email address automatically;

Any user can use the card number and CVV to redeem the gift card, please keep your gift card information safely. If you have any trouble receiving email, please contact Yami customer service;

Yami gift card can be used to purchase both Yami owned or Marketplace products;

Yami gift card will never expire;

Yami gift card balance does not have to be used up at once;

All rights reserved by Yami.

Return Policy

Gift card that has already been consumed is non-refundable.

Sold by JD@CHINA

Service Guarantee

Yami Free Shipping over $49
Yami Easy Returns
Yami Ships from United States

Shipping

  • United States

    Standard Shipping is $5.99 (Excluding Alaska & Hawaii). Free on orders of $49 or more.

    Local Express is $5.99 (Available in Parts of CA, NJ, MA & PA). Free on orders of $49 or more.

    2-Day Express (Includes Alaska & Hawaii) starts at $19.99.

Return Policy

You may return product within 30 days upon receiving the product. Items returned must be new in it's original packing, including the original invoice for the purchase. Customer return product at their own expense.

Sold by JD@CHINA

Service Guarantee

Yami Cross-store Free Shipping over $69
Yami 30-days Return

Yami-China FC

Yami has a consolidation warehouse in China which collects multiple sellers’ packages and combines to one order. Our Yami consolidation warehouse will directly ship the packages to your door. Cross-store free shipping over $69.

Return Policy

You may return products within 30 days upon receiving the products. Sellers take responsibilities for any wrong shipment or missing items. Packing needs to be unopened for any other than quality issues return. We promise to pack carefully, but because goods are taking long journey to destinations, simple damages to packaging may occur. Any damages not causing internal goods quality problems are not allowed to return. If you open the package and any quality problem is found, please contact customer service within three days after receipt of goods.

Shipping Information

Yami Consolidation Service Shipping Fee $9.99(Free shipping over $69)

Sellers in China will ship their orders within 1-2 business days once the order is placed. Packages are sent to our consolidation warehouse in China and combined there. Our Yami consolidation warehouse will directly ship the packages to you via UPS. The average time for UPS to ship from China to the United States is about 10 working days and it can be traced using the tracking number. Due to the pandemic, the delivery time may be delayed by about 5 days. The package needs to be signed by the guest. If the receipt is not signed, the customer shall bear the risk of loss of the package.

Sold by JD@CHINA

Service Guarantee

Free shipping over 69
Genuine guarantee

Shipping

Yami Consolidated Shipping $9.99(Free shipping over $69)


Seller will ship the orders within 1-2 business days. The logistics time limit is expected to be 7-15 working days. In case of customs clearance, the delivery time will be extended by 3-7 days. The final receipt date is subject to the information of the postal company.

Yami Points information

All items are excluding from any promotion or points events on Yamibuy.com

Return Policy

You may return product within 30 days upon receiving the product. Items returned must be new in it's original packing, including the original invoice for the purchase. Customer return product at their own expense.

Yami

Download the Yami App

Back Top

Recommended for You

About the brand

Jingdong book

为您推荐

Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折

Reviews{{'('+ commentList.posts_count + ')'}}

Have your say. Be the first to help other guests.

Write a review
{{ totalRating }} Write a review
  • {{i}} star

    {{i}} stars

    {{ parseInt(commentRatingList[i]) }}%

Yami Yami
{{ comment.user_name }}

{{ showTranslate(comment) }}Show Less

{{ strLimit(comment,800) }}Show more

Show Original

{{ comment.content }}

Yami
Show All

{{ formatTime(comment.in_dtm) }} VERIFIED PURCHASE {{groupData}}

{{ comment.likes_count }} {{ comment.likes_count }} {{ comment.reply_count }} {{comment.in_user==uid ? __('Delete') : __('Report')}}
Yami Yami
{{ comment.user_name }}

{{ showTranslate(comment) }}Show Less

{{ strLimit(comment,800) }}Show more

Show Original

{{ comment.content }}

Yami
Show All

{{ formatTime(comment.in_dtm) }} VERIFIED PURCHASE {{groupData}}

{{ comment.likes_count }} {{ comment.likes_count }} {{ comment.reply_count }} {{comment.in_user==uid ? __('Delete') : __('Report')}}

No related comment~

Review

Yami Yami

{{ showTranslate(commentDetails) }}Show Less

{{ strLimit(commentDetails,800) }}Show more

Show Original

{{ commentDetails.content }}

Yami
Show All

{{ formatTime(commentDetails.in_dtm) }} VERIFIED PURCHASE {{groupData}}

{{ commentDetails.likes_count }} {{ commentDetails.likes_count }} {{ commentDetails.reply_count }} {{commentDetails.in_user==uid ? __('Delete') : __('Report')}}

Please write at least one word

Comments{{'(' + replyList.length + ')'}}

Yami Yami

{{ showTranslate(reply) }}Show Less

{{ strLimit(reply,800) }}Show more

Show Original

{{ reply.reply_content }}

{{ formatTime(reply.reply_in_dtm) }}

{{ reply.reply_likes_count }} {{ reply.reply_likes_count }} {{ reply.reply_reply_count }} {{reply.reply_in_user==uid ? __('Delete') : __('Report')}}

Please write at least one word

Cancel

That’s all the comments so far!

Write a review
How would you rate this item?

Please add your comment.

  • A nice nickname will make your comments more popular!
  • The nickname in your account will be changed to the same as here.
Thanks for your review
Our community rely on great reviews like yours to find the best of Asia.

Report

If you find this content inappropriate and think it should be removed from the Yami.com site, let us know please.

Cancel

Are you sure to delete your review?

Cancel

You’ve Recently Viewed

About the brand

Jingdong book