GIS的积累
It is never to late to learn

导航

 
上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 45 下一页

2011年3月24日

摘要: CREATE PROC P_TEST@Name VARCHAR(20),@Rowcount INT OUTPUTASBEGINSELECT * FROM T_Customer WHERE NAME=@NameSET @Rowcount=@@ROWCOUNTENDGO------------------------------------------------------------------------------------------存储过程调用如下:-------------------------------------------------------------------- 阅读全文
posted @ 2011-03-24 10:46 GIS的学习 阅读(212) 评论(0) 推荐(0) 编辑
 

2011年3月23日

摘要: AboutGeochalkboardAGIS JavaScript APIPostsArcGIS Server MasteryClubE-LearningCoursesInstructor LedCoursesClustering with the ArcGIS Server JavaScriptAPIPosted on September 9, 2010. Filed under: ArcGIS Server, JavaScript | In this post I will describe how you can use a third party clustering tool in. 阅读全文
posted @ 2011-03-23 16:58 GIS的学习 阅读(939) 评论(0) 推荐(0) 编辑
 
摘要: 功能实现的位置可以是:前端-后端-数据库端中的某一处,通常考虑的比较多的是把一个功能放在前端还是后端处理,往往忽视了放在数据库端处理。其实数据提供了很多对象可以把一些功能在数据库端处理。比如如下三个对象:view\procedure\trigger。________________________________________________________________________________视图是虚表存储过程是sql语句触发器是存储过程这是比较简单的描述但是却道出了他们的本质。___________________________________________________ 阅读全文
posted @ 2011-03-23 13:23 GIS的学习 阅读(310) 评论(0) 推荐(0) 编辑
 

2011年3月22日

摘要: 双击操作由用户操作系统的鼠标设置确定。用户可以设置两次单击鼠标按钮之间的时间以便将这两次单击认为是双击而不是两次单击。每当双击控件时,就会引发Click事件。例如,如果您有Form的Click和DoubleClick事件的事件处理程序,则当双击该窗体并同时调用这两个方法时,会引发Click和DoubleClick事件。如果双击一个控件并且该控件不支持DoubleClick事件,则Click事件可能被引发两次。关于异步查询的一些陷阱就来源这个doubleclick。——————————————————————————————————————————————————————异步缺点和优点:1、 高 阅读全文
posted @ 2011-03-22 15:02 GIS的学习 阅读(8238) 评论(3) 推荐(0) 编辑
 

2011年3月21日

摘要: 1、esri.symbol.SimpleFillSymbol(style, outline, color)PropertiesPropertyTypeDescriptionstyleStringThe fill style. See the Constants table for valid values. The default value is STYLE_SOLID. Color is valid only with STYLE_SOLID.ConstantsConstantDescriptionSTYLE_BACKWARD_DIAGONALThe fill is backward di 阅读全文
posted @ 2011-03-21 15:36 GIS的学习 阅读(759) 评论(0) 推荐(0) 编辑
 
摘要: The ArcGIS Extension for the Google Maps API allows you to extend the Google Maps API to use ArcGIS Server services. With this extension, you can add your own data to a Google map and embed this map in your own page.If you are justgetting started, the Google Extension reference includes sections on: 阅读全文
posted @ 2011-03-21 11:13 GIS的学习 阅读(743) 评论(1) 推荐(0) 编辑
 

2011年3月18日

摘要: 阅读全文
posted @ 2011-03-18 15:24 GIS的学习 阅读(188) 评论(0) 推荐(0) 编辑
 

2011年3月15日

摘要: 非常简单,4行代码而已:Response.ContentType = "image/jpg"; Response.AppendHeader("Content-Disposition", "attachment; filename=FileUpLoad.jpg"); Response.TransmitFile(Server.MapPath("~/img/FileUpLoad.jpg")); Response.End(); 阅读全文
posted @ 2011-03-15 16:04 GIS的学习 阅读(161) 评论(0) 推荐(0) 编辑
 
摘要: Class: NavigationDescriptiondojo.require("esri.toolbars.navigation");ConstantsConstantDescriptionPANMap is panned.ZOOM_INMap zooms in.ZOOM_OUTMap zooms out.MethodsMethodReturn ValueDescriptionactivate(navType)noneActivates the toolbar for map navigation. Activating the toolbar overrides de 阅读全文
posted @ 2011-03-15 15:29 GIS的学习 阅读(1001) 评论(0) 推荐(0) 编辑
 

2011年3月14日

摘要: 第一步: 创建一张表,存储空间数据和业务数据,包含空间字段CREATE TABLE cola_markets_cs (mkt_id NUMBER PRIMARY KEY,name VARCHAR2(32),shape SDO_GEOMETRY);第二步:向表中插入记录插入了三个多边形,第一个是矩形,另两个是普通的多边形,当然也可以插入复杂的比如包含洞的多边形。注意空间参考SRID与后面建索引的空间参考应一致。最关键的是空间对象的构造和表达,下篇再总结吧。INSERT INTO cola_markets_cs VALUES(1,'cola_a',SDO_GEOMETRY(2003 阅读全文
posted @ 2011-03-14 12:52 GIS的学习 阅读(1658) 评论(2) 推荐(0) 编辑
 
上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 45 下一页