摘要:
1)实用新型保护客体范围小于发明。发明是对产品、方法或者其改进所提出的新的技术方案,实用新型专利产品的形状、构成或者其组合所提出的实用的新的技术方案。所以发明可以是方案,而实用新型必须是针对产品的。像什么一种××的评价方法等的不能申请实用新型专利。2)实用新型专利的保护期短于发明。发明保护20年,实用新型保护十年。3)实用新型专利的审批过程比发明专利简单。实用新型初审后即可授权,审批时间为10-12个月,发明专利需要进行实质审查,审查的手续和时间都要比实用新型复杂得多,长得多,且授权率低,审批时间需要两年到三年左右 阅读全文
摘要:
第一步:打开ArcCatelog 选择当前工作路径C:\Map,在新建里面点击shapfiles第二步:选中新建的shp文件右击属性第三步:设置其坐标系,导入已有图层的坐标系,建立所需字段第四步:打开ArcMap 添加入新建的shp文件,点击编辑器,开始编辑第五步:选择右侧组织模板第六步:点击新建模板,选中新建的shp图层作为模板图层第七步:点击下侧构造工具"点",开始在该图层画几个点,然后点击保存编辑内容第八步:在刚刚画的点上,点击右键,选择属性,填写该点的属性值 阅读全文
摘要:
<style type="text/css">.main{width:500px;border:#000 solid 1px;height:500px;position:relative;}.tab{cursor: pointer;display: inline-block;height: 22px;vertical-align: bottom;bottom: 5px;position: absolute;right:5px;}</style><div class="main"><div class=" 阅读全文
摘要:
var ImportPanel = new Ext.form.FormPanel({ baseCls: 'x-plain', frame: false, //注意formPanel里面的fileUpload一定要打开 fileUpload: true, id: 'ImportPanel', url: 'Excel.aspx?ac=Import', items: [{ xtype: 'textfield', // 注意要有以下字段 inputType: 'file', fieldLabel: '请选择导入文件 阅读全文
摘要:
public void AddSDELayer(bool ChkSdeLinkModle){ //定义一个属性 IPropertySet propset = new PropertySetClass(); if (ChkSdeLinkModle == true) // 采用SDE连接 { //设置数据库服务器名 propset.SetProperty("SERVER", "192.168.188.128"); //设置SDE的端口,这是安装时指定的,默认安装时"port:5151" propset.SetProperty(" 阅读全文
摘要:
<select id="Analysis" resultClass="stationGroupInfo" parameterclass="hashtable"> select <dynamic> <!--> 注意这里的$ 如果字符串直接拼接要用$,#默认会在字符串变量前面加引号的 --> <isNotEmpty property="AnalysiStr"> $AnalysiStr$ </isNotEmpty> </dynamic> < 阅读全文
摘要:
this.xAxisName = '区县名称';this.yAxisName = '站点个数';this.store = new Ext.data.ArrayStore({ fields: ['month', 'hits'] }),this.analysisPanel = new Ext.chart.ColumnChart({ store: this.store, yField: 'hits', title: '站点统计', url: '/JS/Ext3.2.0/resources/char 阅读全文
摘要:
// 两个radio 只是显示,两个具有互斥性,触发事件时给一个隐藏字段赋值,后台读取隐藏字段,肯定不是最优,望高手拍砖this.cntRadio = new Ext.form.Radio({ id: 'cntRadioId', boxLabel: '数量', inputValue: 'cnt', listeners: { 'check': function() { //alert(this.getValue()); if (this.getValue()) { Ext.getCmp('moneyRadioId') 阅读全文
摘要:
function ShowStationOnMap(stations) { //清除图中的元素 map.graphics.clear(); // 设置显示中心点及坐标 var location = new esri.geometry.Point(stations[0].longtitude, stations[0].latitude, map.spatialReference) map.centerAndZoom(location, 8); // 逐个添加元素 for (var s = 0; s < stations.length; s++) { var symbol = new ... 阅读全文
摘要:
/* 参数一:要渲染的图层 参数二:按照哪个属性渲染 参数三:分级的分解点 参数四:各级的颜色*/public void linkClassRender(IFeatureLayer layer, string fieldName, List<int> spds, List<IColor> colors) { // 获取当前图层,并把它设置成IGeoFeatureLayer的实例 IFeatureLayer pFeatLayer = (IFeatureLayer)layer; IGeoFeatureLayer pGeoFeatLayer = (IGeoFeatureLay 阅读全文