config.js 81 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559
  1. window.ApplicationConfig = {
  2. baseUrl: "https://zlzd.zrzyt.zj.gov.cn/app215/ybz-api/",
  3. mapLayerConfig: {
  4. use: "innerNet",
  5. projection: {
  6. "EPSG:4490": "+proj=longlat +ellps=GRS80 +no_defs" // proj4.defs("EPSG:4490","+proj=longlat +ellps=GRS80 +no_defs");
  7. },
  8. innerNet: {
  9. view: {
  10. center: [120.19308, 30.19711],
  11. zoom: 13,
  12. fitExtent: [
  13. 119.93054011309823,
  14. 27.58795490358181,
  15. 121.24821284259042,
  16. 28.05212726686306
  17. ],
  18. minZoom: 7,
  19. maxZoom: 21
  20. },
  21. layers: [
  22. {
  23. id: "jcdl", // id 一经指定,切勿轻易修改
  24. name: "基础地理",
  25. enabled: true, // 是否启用,启用才会显示在页面中
  26. expand: false, // 是否展开折叠
  27. visible: true, // 是否显示子图层
  28. base: true, // 是否底图,底图 在 设置 visible-layer-ids 时会跳过,向下传递
  29. opacity: 1, // 图层透明度,取值0~1或false,false禁用透明度调节功能,可选配置
  30. hidden: false, // 只在 layerTree 组件里面不显示,代码上依旧能获取到,可选配置
  31. children: [
  32. {
  33. id: "zjyx-g",
  34. name: "浙江-影像",
  35. enabled: true,
  36. expand: false,
  37. visible: true,
  38. children: [
  39. {
  40. id: 'tdt',
  41. name: "天地图影像",
  42. enabled: true,
  43. visible: true,
  44. wmtsForceUrl: true,
  45. serverType: "tdtxyz",
  46. url: "http://t0.tianditu.com/DataServer?T=img_w&x={x}&y={y}&l={z}&tk=f2f2a746d8ec501d1c60d1ac7d7e063c"
  47. },
  48. ]
  49. },
  50. {
  51. id: "xzqh",
  52. name: "行政区划",
  53. enabled: true,
  54. expand: false,
  55. visible: false,
  56. children: [
  57. {
  58. id: "xzqh-s",
  59. name: "市级行政区",
  60. enabled: true,
  61. visible: true,
  62. serverType: "ArcGISTile",
  63. url:
  64. "https://zlzd.zrzyt.zj.gov.cn/gtkj/SZSW/ef622c03738048d2962fb27c0e28aa64/arcgis/rest/services/GCS330000_1001_XZQH_2021_TM/GCS330000_1001_XZQH_DS_2021_TM/MapServer"
  65. },
  66. {
  67. id: "xzqh-s-search",
  68. name: "市级行政区",
  69. enabled: true,
  70. visible: false,
  71. serverType: "dynamic",
  72. url:
  73. "https://zlzd.zrzyt.zj.gov.cn/arcMapServer216/arcgis/rest/services/zp/XZQ_SJ/MapServer"
  74. },
  75. {
  76. id: "xzqh-x-search",
  77. name: "县级行政区",
  78. enabled: true,
  79. visible: false,
  80. serverType: "dynamic",
  81. url:
  82. "https://zlzd.zrzyt.zj.gov.cn/arcMapServer216/arcgis/rest/services/zp/XZQ_XJ/MapServer"
  83. },
  84. {
  85. id: "xzqh-x",
  86. name: "县级行政区",
  87. enabled: true,
  88. visible: false,
  89. serverType: "ArcGISTile",
  90. url:
  91. "https://zlzd.zrzyt.zj.gov.cn/gtkj/SZSW/8eebbfb5f4154884b948fffdd0925158/arcgis/rest/services/GCS330000_1001_XZQH_2021_TM/GCS330000_1001_XZQH_QX_2021_TM/MapServer"
  92. },
  93. {
  94. id: "xzqh-z-search",
  95. name: "镇级行政区",
  96. enabled: true,
  97. visible: false,
  98. serverType: "dynamic",
  99. url:
  100. "https://zlzd.zrzyt.zj.gov.cn/arcMapServer216/arcgis/rest/services/zp/XZQ_ZJ/MapServer"
  101. }
  102. ]
  103. }
  104. ]
  105. },
  106. {
  107. id: "dktc",
  108. name: "图层服务",
  109. enabled: true,
  110. expand: true,
  111. visible: false,
  112. children: [
  113. {
  114. id: "hzyx-202311",
  115. name: "杭州-影像-11",
  116. enabled: true,
  117. visible: false,
  118. serverType: "ArcGISTile",
  119. url: `https://kjzzyy.hzsgis.com:8082/Ip109-13-8083/512834d664a4d3407b4c18ba3e8b3b66373945ec/Tile/RemoteRest/YG_HZRASTER202311_BX.gis`
  120. },
  121. {
  122. id: "hzyx-202310",
  123. name: "杭州-影像-10",
  124. enabled: true,
  125. visible: false,
  126. serverType: "ArcGISTile",
  127. url: `https://kjzzyy.hzsgis.com:8082/Ip109-13-8083/512834d664a4d3407b4c18ba3e8b3b66373945ec/Tile/RemoteRest/YG_HZRASTER202310.gis`
  128. },
  129. {
  130. id: "hzyx-202309",
  131. name: "杭州-影像-09",
  132. enabled: true,
  133. visible: false,
  134. serverType: "ArcGISTile",
  135. url: `https://kjzzyy.hzsgis.com:8082/Ip109-13-8083/512834d664a4d3407b4c18ba3e8b3b66373945ec/Tile/RemoteRest/YG_HZRASTER202309.gis`
  136. },
  137. {
  138. id: "hzyx-202308",
  139. name: "杭州-影像-08",
  140. enabled: true,
  141. visible: false,
  142. serverType: "ArcGISTile",
  143. url: `https://kjzzyy.hzsgis.com:8082/Ip109-13-8083/512834d664a4d3407b4c18ba3e8b3b66373945ec/Tile/RemoteRest/YG_HZRASTER202308.gis`
  144. },
  145. {
  146. id: "hzyx-202307",
  147. name: "杭州-影像-07",
  148. enabled: true,
  149. visible: false,
  150. serverType: "ArcGISTile",
  151. url: `https://kjzzyy.hzsgis.com:8082/Ip109-13-8083/512834d664a4d3407b4c18ba3e8b3b66373945ec/Tile/RemoteRest/YG_HZRASTER202307.gis`
  152. },
  153. {
  154. id: "bj-wlyd",
  155. name: "滨江未供地块",
  156. enabled: true,
  157. visible: false,
  158. serverType: "dynamic",
  159. params: {
  160. layers: "show:0,1",
  161. layerDefs: {
  162. "0": "sfygd is null or sfygd = ''",
  163. "1": "sfygd is null or sfygd = ''",
  164. }
  165. },
  166. url: "https://zlzd.zrzyt.zj.gov.cn/arcMapServer216/arcgis/rest/services/YSYBZ/BJWLYD/MapServer",
  167. legend: {
  168. title: "未供地块资源",
  169. defs: {
  170. 一类工业用地: {
  171. color: "#BD9673",
  172. query: {}
  173. },
  174. 中小学用地: {
  175. color: "#FF82CE",
  176. query: {}
  177. },
  178. 二类居住用地: {
  179. color: "#FFFF29",
  180. query: {}
  181. },
  182. 住宅用地: {
  183. color: "#FFFF29",
  184. query: {}
  185. },
  186. 体育用地: {
  187. color: "#00A67B",
  188. query: {}
  189. },
  190. 供电用地: {
  191. color: "#006584",
  192. query: {}
  193. },
  194. 公共交通场站用地: {
  195. color: "#DEDBDE",
  196. query: {}
  197. },
  198. 公园绿地: {
  199. color: "#00FF00",
  200. query: {}
  201. },
  202. 其他公用设施用地: {
  203. color: "#006584",
  204. query: {}
  205. },
  206. 农林用地: {
  207. color: "#63AE63",
  208. query: {}
  209. },
  210. 医疗卫生用地: {
  211. color: "#FF7D7B",
  212. query: {}
  213. },
  214. 商业服务业设施用地: {
  215. color: "#FF0000",
  216. query: {}
  217. },
  218. 商业用地: {
  219. color: "#FF0000",
  220. query: {}
  221. },
  222. 商业金融业用地: {
  223. color: "#FF0063",
  224. query: {}
  225. },
  226. 安全设施用地: {
  227. color: "#006584",
  228. query: {}
  229. },
  230. 广场绿地: {
  231. color: "#009600",
  232. query: {}
  233. },
  234. 排水用地: {
  235. color: "#006584",
  236. query: {}
  237. },
  238. 文物古迹用地: {
  239. color: "#849252",
  240. query: {}
  241. },
  242. 旅馆业用地: {
  243. color: "#FF0000",
  244. query: {}
  245. },
  246. 服务设施用地: {
  247. color: "#006584",
  248. query: {}
  249. },
  250. 村镇居民用地: {
  251. color: "#FFFF29",
  252. query: {}
  253. },
  254. 水域: {
  255. color: "#63CBFF",
  256. query: {}
  257. },
  258. 特殊用地: {
  259. color: "#849252",
  260. query: {}
  261. },
  262. 社会停车场用地: {
  263. color: "#DEDBDE",
  264. query: {}
  265. },
  266. 综合交通枢纽用地: {
  267. color: "#DEDBDE",
  268. query: {}
  269. },
  270. 绿地: {
  271. color: "#CEF77B",
  272. query: {}
  273. },
  274. 轨道交通线路用地: {
  275. color: "#DEDBDE",
  276. query: {}
  277. },
  278. 防护绿地: {
  279. color: "#CEF77B",
  280. query: {}
  281. },
  282. 非建设用地: {
  283. color: "#006584",
  284. query: {}
  285. },
  286. 其他: {
  287. color: "#006584",
  288. query: {}
  289. },
  290. }
  291. }
  292. },
  293. {
  294. id: "bj-kgdk",
  295. name: "滨江控规地块",
  296. enabled: true,
  297. visible: false,
  298. serverType: "dynamic",
  299. params: {
  300. layers: "show:0",
  301. layerDefs: {
  302. 0: "xzqdm like '330108%'"
  303. }
  304. },
  305. url: "https://zlzd.zrzyt.zj.gov.cn/gtkj-zjzwfw/proxy/GDPProxy231/4a2d7631371742f782c161df3f50cca8/arcgis/rest/services/GCS330000K2007_KZXXXGH_GHDK/GCS330000_2007_KZXXXGH_GHDK_GKY_2022/MapServer",
  306. legend: {
  307. title: "滨江控规地块",
  308. defs: {
  309. 居住用地: {
  310. color: "rgba(255, 255, 0, 255)",
  311. query: {}
  312. },
  313. 公共管理与公共服务用地: {
  314. color: "rgba(255, 128, 191, 255)",
  315. query: {}
  316. },
  317. 商业服务业设施用地: {
  318. color: "rgba(254, 0, 0, 255)",
  319. query: {}
  320. },
  321. 工业用地: {
  322. color: "rgba(186, 150, 116, 255)",
  323. query: {}
  324. },
  325. 道路与交通设施用地: {
  326. color: "rgba(183, 183, 183, 255)",
  327. query: {}
  328. },
  329. 绿地与广场用地: {
  330. color: "rgba(8, 249, 9, 255)",
  331. query: {}
  332. },
  333. 公用设施用地: {
  334. color: "rgba(125, 166, 217, 255)",
  335. query: {}
  336. },
  337. 物流仓储用地: {
  338. color: "rgba(223, 128, 255, 255)",
  339. query: {}
  340. },
  341. 非建设用地: {
  342. color: "rgba(0, 255, 255, 255)",
  343. query: {}
  344. },
  345. 建设用地: {
  346. color: "rgba(202, 151, 0, 255)",
  347. query: {}
  348. },
  349. 备用地: {
  350. color: "rgba(254, 254, 254,255)",
  351. query: {}
  352. }
  353. }
  354. }
  355. },
  356. {
  357. id: "bjq-xzq",
  358. name: "滨江区行政区",
  359. enabled: true,
  360. visible: false,
  361. serverType: "dynamic",
  362. params: {
  363. layers: "show:0",
  364. layerDefs: {
  365. 0: "xzqdm like '330108%'"
  366. }
  367. },
  368. url: "https://zlzd.zrzyt.zj.gov.cn/arcMapServer216/arcgis/rest/services/YSYBZ/BJXZQ/MapServer",
  369. },
  370. {
  371. id: "bjq-gd",
  372. name: "滨江区供地地块",
  373. enabled: true,
  374. visible: false,
  375. serverType: "dynamic",
  376. params: {
  377. layers: "show:0",
  378. layerDefs: {
  379. 0: "xzqdm like '330108%'"
  380. }
  381. },
  382. url: "https://zlzd.zrzyt.zj.gov.cn/arcMapServer216/arcgis/rest/services/YSYBZ/BJQGD/MapServer",
  383. },
  384. {
  385. id: "bj-wnz",
  386. name: "滨江未农转用地块",
  387. enabled: true,
  388. visible: false,
  389. serverType: "dynamic",
  390. params: {
  391. layers: "show:0"
  392. },
  393. url: "https://zlzd.zrzyt.zj.gov.cn/arcMapServer216/arcgis/rest/services/YSYBZ/BJWNZ/MapServer",
  394. legend: {
  395. title: "未农转用地块资源",
  396. defs: {
  397. 未农转: {
  398. color: "#A2AE71",
  399. query: {}
  400. },
  401. }
  402. }
  403. },
  404. {
  405. id: "bj-gyyd-wst",
  406. name: "滨江工业用地五色图",
  407. enabled: true,
  408. visible: false,
  409. serverType: "dynamic",
  410. params: {
  411. layers: "show:0,1",
  412. layerDefs: {
  413. "0": "1=1",
  414. "1": "1=1",
  415. }
  416. },
  417. url: "https://zlzd.zrzyt.zj.gov.cn/arcMapServer216/arcgis/rest/services/YSYBZ/BJWST/MapServer",
  418. legend: {
  419. title: "滨江工业用地五色图",
  420. defs: {
  421. 亩均税收大于100: {
  422. color: "#00FF00",
  423. query: {}
  424. },
  425. '亩均税收50~100': {
  426. color: "#0070FF",
  427. query: {}
  428. },
  429. '亩均税收30~50': {
  430. color: "#FF00DF",
  431. query: {}
  432. },
  433. '亩均税收10~30': {
  434. color: "#FFFF2D",
  435. query: {}
  436. },
  437. '亩均税收小于10': {
  438. color: "red",
  439. query: {}
  440. },
  441. }
  442. }
  443. },
  444. {
  445. id: "bj-bp",
  446. name: "滨江批准",
  447. enabled: true,
  448. visible: false,
  449. serverType: "dynamic",
  450. params: {
  451. layers: "show:0,1",
  452. layerDefs: {
  453. "0": "1=1",
  454. "1": "1=1",
  455. }
  456. },
  457. url: "https://zlzd.zrzyt.zj.gov.cn/arcMapServer216/arcgis/rest/services/YSYBZ/TDBP_BJ/MapServer",
  458. legend: {
  459. title: "滨江批准用地",
  460. defs: {
  461. 批准用地: {
  462. color: "#64C8FF",
  463. query: {}
  464. },
  465. }
  466. }
  467. },
  468. // {
  469. // id: "bj-gd",
  470. // name: "滨江供地",
  471. // enabled: true,
  472. // visible: false,
  473. // serverType: "dynamic",
  474. // params: {
  475. // layers: "show:0,1",
  476. // layerDefs: {
  477. // "0": "1=1",
  478. // "1": "1=1",
  479. // }
  480. // },
  481. // url: "https://zlzd.zrzyt.zj.gov.cn/arcMapServer216/arcgis/rest/services/YSYBZ/TDGY_BJ/MapServer",
  482. // legend: {
  483. // title: "滨江供地",
  484. // defs: {
  485. // 供地: {
  486. // color: "#73FFDF",
  487. // query: {}
  488. // },
  489. // }
  490. // }
  491. // },
  492. {
  493. enabled: true,
  494. visible: false,
  495. serverType: "dynamic",
  496. name: "开发区_国家级",
  497. id: "kfq-gjj",
  498. type: "layer",
  499. identify: false,
  500. params: {
  501. layers: "show:0,1",
  502. layerDefs: {
  503. "0": "1 = 1 and KFQJB = '国家级'",
  504. "1": "1 = 1 and KFQJB = '国家级'",
  505. }
  506. },
  507. url: "https://zlzd.zrzyt.zj.gov.cn/arcMapServer216/arcgis/rest/services/YSYBZ/kfq/MapServer",
  508. legend: {
  509. title: "开发区(国家级)",
  510. defs: {
  511. "开发区(国家级)": {
  512. color: "#0070FF",
  513. query: {}
  514. }
  515. }
  516. }
  517. },
  518. {
  519. enabled: true,
  520. visible: false,
  521. serverType: "dynamic",
  522. name: "开发区_省级",
  523. id: "kfq-sj",
  524. type: "layer",
  525. identify: false,
  526. params: {
  527. layers: "show:0,1",
  528. layerDefs: {
  529. "0": "1 = 1 and KFQJB = '省级'",
  530. "1": "1 = 1 and KFQJB = '省级'",
  531. }
  532. },
  533. url: "https://zlzd.zrzyt.zj.gov.cn/arcMapServer216/arcgis/rest/services/YSYBZ/kfq/MapServer",
  534. legend: {
  535. title: "开发区(省级)",
  536. defs: {
  537. "开发区(省级)": {
  538. color: "#E64C00",
  539. query: {}
  540. }
  541. }
  542. }
  543. },
  544. {
  545. enabled: true,
  546. visible: false,
  547. serverType: "dynamic",
  548. name: "开发区",
  549. id: "kfq",
  550. type: "layer",
  551. identify: false,
  552. params: {
  553. layers: "show:0,1",
  554. layerDefs: {
  555. }
  556. },
  557. url: "https://zlzd.zrzyt.zj.gov.cn/arcMapServer216/arcgis/rest/services/YSYBZ/kfq/MapServer",
  558. legend: {
  559. title: "开发区",
  560. defs: {
  561. "开发区(国家级)": {
  562. color: "#0070FF",
  563. query: {}
  564. },
  565. "开发区(省级)": {
  566. color: "#FFAA00",
  567. query: {}
  568. }
  569. }
  570. }
  571. },
  572. {
  573. enabled: true,
  574. visible: false,
  575. serverType: "dynamic",
  576. name: "行业类别切片",
  577. id: "hylbTile",
  578. type: "layer",
  579. identify: false,
  580. params: {
  581. layers: "show:0,1",
  582. layerDefs: {
  583. "0": "1 = 1",
  584. "1": "1 = 1"
  585. }
  586. },
  587. url: "https://zlzd.zrzyt.zj.gov.cn/arcMapServer216/arcgis/rest/services/ZDZY/SDHY/MapServer",
  588. legend: {
  589. title: "行业类别",
  590. defs: {
  591. "行业类别": {
  592. color: "#d56d78",
  593. query: {}
  594. }
  595. }
  596. }
  597. },
  598. {
  599. id: "gyyd_all",
  600. name: "工业用地",
  601. enabled: true,
  602. visible: false,
  603. serverType: "dynamic",
  604. params: {
  605. layers: "show:0"
  606. },
  607. url: "http://10.249.2.51:6080/arcgis/rest/services/GYYDDC/GYYD_ALL/MapServer",
  608. legend: {
  609. title: "工业用地",
  610. defs: {
  611. 工业用地: {
  612. color: "#0099FF",
  613. query: {}
  614. }
  615. }
  616. }
  617. },
  618. {
  619. id: "pewg",
  620. name: "批而未供",
  621. enabled: true,
  622. visible: false,
  623. serverType: "dynamic",
  624. params: {
  625. layers: "show:0,1"
  626. },
  627. url: "https://zlzd.zrzyt.zj.gov.cn/arcMapServer3/arcgis/rest/services/YSYBZ/pewg/MapServer",
  628. legend: {
  629. title: "批而未供",
  630. defs: {
  631. 批而未供: {
  632. color: "#A800E6",
  633. query: {}
  634. }
  635. }
  636. }
  637. },
  638. {
  639. id: "qlzy",
  640. name: "潜力空间",
  641. enabled: true,
  642. visible: false,
  643. serverType: "dynamic",
  644. params: {
  645. layers: "show:0,1"
  646. },
  647. url: "https://zlzd.zrzyt.zj.gov.cn/arcMapServer3/arcgis/rest/services/YSYBZ/GYQLKJ/MapServer",
  648. legend: {
  649. title: "潜力空间",
  650. defs: {
  651. 潜力空间: {
  652. color: "#A83801",
  653. query: {}
  654. }
  655. }
  656. }
  657. },
  658. {
  659. id: "gyyd",
  660. name: "工业用地",
  661. enabled: true,
  662. visible: false,
  663. serverType: "dynamic",
  664. params: {
  665. layers: "show:0,1"
  666. },
  667. url: "https://zlzd.zrzyt.zj.gov.cn/arcMapServer216/arcgis/rest/services/YSYBZ/gyyd/MapServer",
  668. legend: {
  669. title: "工业用地",
  670. defs: {
  671. 工业用地: {
  672. color: "#A83801",
  673. query: {}
  674. }
  675. }
  676. }
  677. },
  678. {
  679. id: "zzyd",
  680. name: "住宅用地",
  681. enabled: true,
  682. visible: false,
  683. serverType: "dynamic",
  684. params: {
  685. layers: "show:0,1"
  686. },
  687. url: "https://zlzd.zrzyt.zj.gov.cn/arcMapServer216/arcgis/rest/services/YSYBZ/zzyd/MapServer",
  688. legend: {
  689. title: "住宅用地",
  690. defs: {
  691. 住宅用地: {
  692. color: "#FFFF73",
  693. query: {}
  694. }
  695. }
  696. }
  697. },
  698. {
  699. id: "syyd",
  700. name: "滨江商业用地",
  701. enabled: true,
  702. visible: false,
  703. serverType: "dynamic",
  704. params: {
  705. layers: "show:0,1"
  706. },
  707. url: "https://zlzd.zrzyt.zj.gov.cn/arcMapServer216/arcgis/rest/services/YSYBZ/syyd/MapServer",
  708. legend: {
  709. title: "商业用地",
  710. defs: {
  711. 商业用地: {
  712. color: "#FF0000",
  713. query: {}
  714. }
  715. }
  716. }
  717. },
  718. {
  719. id: "bj-zzyd",
  720. name: "滨江住宅用地",
  721. enabled: true,
  722. visible: false,
  723. serverType: "dynamic",
  724. params: {
  725. layers: "show:2,3",
  726. layerDefs: {
  727. "2": "tdyt like '07%'",
  728. "3": "tdyt like '07%'",
  729. }
  730. },
  731. url: "https://zlzd.zrzyt.zj.gov.cn/arcMapServer216/arcgis/rest/services/YSYBZ/syyd/MapServer",
  732. legend: {
  733. title: "滨江住宅用地",
  734. defs: {
  735. 滨江住宅用地: {
  736. color: "#FFFF2D",
  737. query: {}
  738. }
  739. }
  740. }
  741. },
  742. {
  743. id: "bj-gyyd-new",
  744. name: "滨江工业用地",
  745. enabled: true,
  746. visible: false,
  747. serverType: "dynamic",
  748. params: {
  749. layers: "show:0,1"
  750. },
  751. url: "https://zlzd.zrzyt.zj.gov.cn/arcMapServer216/arcgis/rest/services/YSYBZ/gyyd/MapServer",
  752. legend: {
  753. title: "滨江工业用地",
  754. defs: {
  755. 滨江工业用地: {
  756. color: "#BB9674",
  757. query: {}
  758. }
  759. }
  760. }
  761. },
  762. {
  763. id: "bj-zzyd-new",
  764. name: "滨江住宅用地",
  765. enabled: true,
  766. visible: false,
  767. serverType: "dynamic",
  768. params: {
  769. layers: "show:0,1",
  770. layerDefs: {
  771. }
  772. },
  773. url: "https://zlzd.zrzyt.zj.gov.cn/arcMapServer216/arcgis/rest/services/YSYBZ/zzyd/MapServer",
  774. legend: {
  775. title: "滨江住宅用地",
  776. defs: {
  777. 滨江住宅用地: {
  778. color: "#FFFF2D",
  779. query: {}
  780. }
  781. }
  782. }
  783. },
  784. {
  785. id: "bj-jyyd",
  786. name: "滨江教育用地",
  787. enabled: true,
  788. visible: false,
  789. serverType: "dynamic",
  790. params: {
  791. layers: "show:0,1",
  792. layerDefs: {
  793. }
  794. },
  795. url: "https://zlzd.zrzyt.zj.gov.cn/arcMapServer216/arcgis/rest/services/YSYBZ/bjjyyd/MapServer",
  796. legend: {
  797. title: "滨江教育用地",
  798. defs: {
  799. 滨江教育用地: {
  800. color: "#00FFC5",
  801. query: {}
  802. }
  803. }
  804. }
  805. },
  806. {
  807. id: "qtjsyd",
  808. name: "其他建设用地",
  809. enabled: true,
  810. visible: false,
  811. serverType: "dynamic",
  812. params: {
  813. layers: "show:0,1"
  814. },
  815. url: "https://zlzd.zrzyt.zj.gov.cn/arcMapServer3/arcgis/rest/services/YSYBZ/qtjsyd/MapServer",
  816. legend: {
  817. title: "其他建设用地",
  818. defs: {
  819. 其他建设用地: {
  820. color: "#FF0000",
  821. query: {}
  822. }
  823. }
  824. }
  825. },
  826. {
  827. id: "nyd",
  828. name: "农用地",
  829. enabled: true,
  830. visible: false,
  831. serverType: "dynamic",
  832. params: {
  833. layers: "show:0,1"
  834. },
  835. url: "https://zlzd.zrzyt.zj.gov.cn/arcMapServer3/arcgis/rest/services/YSYBZ/nyd/MapServer",
  836. legend: {
  837. title: "农用地",
  838. defs: {
  839. 农用地: {
  840. color: "#8CFC61",
  841. query: {}
  842. }
  843. }
  844. }
  845. },
  846. {
  847. id: "wlyd",
  848. name: "未利用地",
  849. enabled: true,
  850. visible: false,
  851. serverType: "dynamic",
  852. params: {
  853. layers: "show:0,1"
  854. },
  855. url: "https://zlzd.zrzyt.zj.gov.cn/arcMapServer3/arcgis/rest/services/YSYBZ/wlyd/MapServer",
  856. legend: {
  857. title: "未利用地",
  858. defs: {
  859. 未利用地: {
  860. color: "#97DBF2",
  861. query: {}
  862. }
  863. }
  864. }
  865. },
  866. {
  867. id: "mjpj",
  868. name: "亩均评价",
  869. enabled: true,
  870. visible: false,
  871. serverType: "dynamic",
  872. params: {
  873. layers: "show:0,1"
  874. },
  875. url: "https://zlzd.zrzyt.zj.gov.cn/arcMapServer216/arcgis/rest/services/YSYBZ/mjpj/MapServer",
  876. legend: {
  877. title: "亩均评价",
  878. defs: {
  879. 亩均高效: {
  880. color: "#0070FF",
  881. query: {}
  882. },
  883. 亩均低效: {
  884. color: "#E60001",
  885. query: {}
  886. },
  887. }
  888. }
  889. },
  890. {
  891. id: "mjpj-bj",
  892. name: "亩均评价",
  893. enabled: true,
  894. visible: false,
  895. serverType: "dynamic",
  896. params: {
  897. layers: "show:0,1"
  898. },
  899. url: "https://zlzd.zrzyt.zj.gov.cn/arcMapServer216/arcgis/rest/services/YSYBZ/mjpj/MapServer",
  900. legend: {
  901. title: "亩均评价",
  902. defs: {
  903. 亩均高效: {
  904. color: "#0070FF",
  905. query: {}
  906. },
  907. 亩均低效: {
  908. color: "#E60001",
  909. query: {}
  910. },
  911. }
  912. }
  913. },
  914. {
  915. id: "gsqy",
  916. name: "规上企业",
  917. enabled: true,
  918. visible: false,
  919. serverType: "dynamic",
  920. params: {
  921. layers: "show:0"
  922. },
  923. url: "https://zlzd.zrzyt.zj.gov.cn/arcMapServer3/arcgis/rest/services/YSYBZ/gsqy/MapServer",
  924. legend: {
  925. title: "规上企业",
  926. defs: {
  927. 规上企业: {
  928. color: "#FFC47E",
  929. query: {}
  930. },
  931. }
  932. }
  933. },
  934. {
  935. id: "gxqy",
  936. name: "高新企业",
  937. enabled: true,
  938. visible: false,
  939. serverType: "dynamic",
  940. params: {
  941. layers: "show:0"
  942. },
  943. url: "https://zlzd.zrzyt.zj.gov.cn/arcMapServer3/arcgis/rest/services/YSYBZ/gxqy/MapServer",
  944. legend: {
  945. title: "高新企业",
  946. defs: {
  947. 高新企业: {
  948. color: "#68F4C1",
  949. query: {}
  950. },
  951. }
  952. }
  953. },
  954. {
  955. id: "hyfb",
  956. name: "行业分布",
  957. enabled: true,
  958. visible: false,
  959. serverType: "dynamic",
  960. params: {
  961. layers: "show:0,1"
  962. },
  963. url: "https://zlzd.zrzyt.zj.gov.cn/arcMapServer216/arcgis/rest/services/YSYBZ/hyfb/MapServer",
  964. legend: {
  965. title: "行业分布",
  966. defs: {
  967. 行业分布: {
  968. color: "#64C8FF",
  969. query: {}
  970. },
  971. }
  972. }
  973. },
  974. {
  975. id: "hyfb1",
  976. name: "行业分布",
  977. enabled: true,
  978. visible: false,
  979. serverType: "dynamic",
  980. params: {
  981. layers: "show:0,1"
  982. },
  983. url: "https://zlzd.zrzyt.zj.gov.cn/arcMapServer3/arcgis/rest/services/YSYBZ/hyfb/MapServer",
  984. },
  985. {
  986. id: "hyfb2",
  987. name: "行业分布",
  988. enabled: true,
  989. visible: false,
  990. serverType: "dynamic",
  991. params: {
  992. layers: "show:2,3"
  993. },
  994. url: "https://zlzd.zrzyt.zj.gov.cn/arcMapServer3/arcgis/rest/services/YSYBZ/hyfb/MapServer",
  995. },
  996. {
  997. id: "syjg",
  998. name: "石油加工炼焦及核燃料加工业",
  999. enabled: true,
  1000. visible: false,
  1001. serverType: "dynamic",
  1002. params: {
  1003. layers: "show:0,1"
  1004. },
  1005. url: "https://zlzd.zrzyt.zj.gov.cn/arcMapServer3/arcgis/rest/services/YSYBZ/GH_25/MapServer",
  1006. legend: {
  1007. title: "石油加工炼焦及核燃料加工业",
  1008. defs: {
  1009. 石油加工炼焦及核燃料加工业: {
  1010. color: "#FF0000",
  1011. query: {}
  1012. }
  1013. }
  1014. }
  1015. },
  1016. {
  1017. id: "hxyl",
  1018. name: "化学原料及化学制品制造业",
  1019. enabled: true,
  1020. visible: false,
  1021. serverType: "dynamic",
  1022. params: {
  1023. layers: "show:0,1"
  1024. },
  1025. url: "https://zlzd.zrzyt.zj.gov.cn/arcMapServer3/arcgis/rest/services/YSYBZ/GH_26/MapServer",
  1026. legend: {
  1027. title: "化学原料及化学制品制造业",
  1028. defs: {
  1029. 化学原料及化学制品制造业: {
  1030. color: "#FF0000",
  1031. query: {}
  1032. }
  1033. }
  1034. }
  1035. },
  1036. {
  1037. id: "fjs",
  1038. name: "非金属矿物制品业",
  1039. enabled: true,
  1040. visible: false,
  1041. serverType: "dynamic",
  1042. params: {
  1043. layers: "show:0,1"
  1044. },
  1045. url: "https://zlzd.zrzyt.zj.gov.cn/arcMapServer3/arcgis/rest/services/YSYBZ/GH_30/MapServer",
  1046. legend: {
  1047. title: "非金属矿物制品业",
  1048. defs: {
  1049. 非金属矿物制品业: {
  1050. color: "#FF0000",
  1051. query: {}
  1052. }
  1053. }
  1054. }
  1055. },
  1056. {
  1057. id: "hsjs",
  1058. name: "黑色金属冶炼及压延加工业",
  1059. enabled: true,
  1060. visible: false,
  1061. serverType: "dynamic",
  1062. params: {
  1063. layers: "show:0,1"
  1064. },
  1065. url: "https://zlzd.zrzyt.zj.gov.cn/arcMapServer3/arcgis/rest/services/YSYBZ/GH_31/MapServer",
  1066. legend: {
  1067. title: "黑色金属冶炼及压延加工业",
  1068. defs: {
  1069. 黑色金属冶炼及压延加工业: {
  1070. color: "#FF0000",
  1071. query: {}
  1072. }
  1073. }
  1074. }
  1075. },
  1076. {
  1077. id: "ysjs",
  1078. name: "有色金属冶炼及压延加工业",
  1079. enabled: true,
  1080. visible: false,
  1081. serverType: "dynamic",
  1082. params: {
  1083. layers: "show:0,1"
  1084. },
  1085. url: "https://zlzd.zrzyt.zj.gov.cn/arcMapServer3/arcgis/rest/services/YSYBZ/GH_31/MapServer",
  1086. legend: {
  1087. title: "有色金属冶炼及压延加工业",
  1088. defs: {
  1089. 有色金属冶炼及压延加工业: {
  1090. color: "#FF0000",
  1091. query: {}
  1092. }
  1093. }
  1094. }
  1095. },
  1096. {
  1097. id: "dlrl",
  1098. name: "电力热力的生产和供应业",
  1099. enabled: true,
  1100. visible: false,
  1101. serverType: "dynamic",
  1102. params: {
  1103. layers: "show:0,1"
  1104. },
  1105. url: "https://zlzd.zrzyt.zj.gov.cn/arcMapServer3/arcgis/rest/services/YSYBZ/GH_31/MapServer",
  1106. legend: {
  1107. title: "电力热力的生产和供应业",
  1108. defs: {
  1109. 电力热力的生产和供应业: {
  1110. color: "#FF0000",
  1111. query: {}
  1112. }
  1113. }
  1114. }
  1115. },
  1116. {
  1117. id: "sjjxjzzyq",
  1118. name: "世界级先进制造业群",
  1119. enabled: true,
  1120. visible: false,
  1121. serverType: "dynamic",
  1122. params: {
  1123. layers: "show:0"
  1124. },
  1125. url: "https://zlzd.zrzyt.zj.gov.cn/arcMapServer216/arcgis/rest/services/YSYBZ/415hy/MapServer",
  1126. legend: {
  1127. title: "世界级先进制造业群",
  1128. defs: {
  1129. 现代消费与健康: {
  1130. color: "rgba(255, 85, 0, 255)",
  1131. query: {}
  1132. },
  1133. 新一代信息技术: {
  1134. color: "rgba(0, 92, 230, 255)",
  1135. query: {}
  1136. },
  1137. 高端装备: {
  1138. color: "rgba(169, 0, 230, 255)",
  1139. query: {}
  1140. },
  1141. 绿色石化与新材料: {
  1142. color: "rgba(255, 255, 0, 255)",
  1143. query: {}
  1144. },
  1145. }
  1146. }
  1147. },
  1148. {
  1149. id: "tscyjq",
  1150. name: "特色产业集群",
  1151. enabled: true,
  1152. visible: false,
  1153. serverType: "dynamic",
  1154. params: {
  1155. layers: "show:0"
  1156. },
  1157. url: "https://zlzd.zrzyt.zj.gov.cn/arcMapServer216/arcgis/rest/services/YSYBZ/415xdhy/MapServer",
  1158. legend: {
  1159. title: "特色产业集群",
  1160. defs: {
  1161. 特色产业集群: {
  1162. color: "#FF0000",
  1163. query: {}
  1164. },
  1165. }
  1166. }
  1167. },
  1168. {
  1169. id: "jsyd-yh",
  1170. name: "建设用地",
  1171. enabled: true,
  1172. visible: false,
  1173. serverType: "dynamic",
  1174. params: {
  1175. layers: "show:0,1"
  1176. },
  1177. url: "https://zlzd.zrzyt.zj.gov.cn/arcMapServer3/arcgis/rest/services/YSYBZ/JSYD_YH/MapServer",
  1178. legend: {
  1179. title: "建设用地",
  1180. defs: {
  1181. 工业用地: {
  1182. color: "#FFE383",
  1183. query: {}
  1184. },
  1185. 商服用地: {
  1186. color: "#49DEFF",
  1187. query: {}
  1188. },
  1189. 住宅用地: {
  1190. color: "#37FFB6",
  1191. query: {}
  1192. },
  1193. 其他用地: {
  1194. color: "#FFA77F",
  1195. query: {}
  1196. },
  1197. }
  1198. }
  1199. },
  1200. {
  1201. id: "nyd-yh",
  1202. name: "农用地",
  1203. enabled: true,
  1204. visible: false,
  1205. serverType: "dynamic",
  1206. params: {
  1207. layers: "show:0"
  1208. },
  1209. url: "https://zlzd.zrzyt.zj.gov.cn/arcMapServer3/arcgis/rest/services/YSYBZ/NYD_YH/MapServer",
  1210. legend: {
  1211. title: "农用地",
  1212. defs: {
  1213. 农用地: {
  1214. color: "#C8B85F",
  1215. query: {}
  1216. },
  1217. }
  1218. }
  1219. },
  1220. {
  1221. id: "wlyd-yh",
  1222. name: "未利用地",
  1223. enabled: true,
  1224. visible: false,
  1225. serverType: "dynamic",
  1226. params: {
  1227. layers: "show:0"
  1228. },
  1229. url: "https://zlzd.zrzyt.zj.gov.cn/arcMapServer3/arcgis/rest/services/YSYBZ/WLYD_YH/MapServer",
  1230. legend: {
  1231. title: "未利用地",
  1232. defs: {
  1233. 未利用地: {
  1234. color: "#8FCCCA",
  1235. query: {}
  1236. },
  1237. }
  1238. }
  1239. },
  1240. {
  1241. id: "kfbj-yh",
  1242. name: "城镇开发边界",
  1243. enabled: true,
  1244. visible: false,
  1245. serverType: "dynamic",
  1246. params: {
  1247. layers: "show:0,1",
  1248. },
  1249. url: "https://zlzd.zrzyt.zj.gov.cn/arcMapServer3/arcgis/rest/services/YSYBZ/CZKFBJ_YH/MapServer",
  1250. legend: {
  1251. title: "城镇开发边界",
  1252. defs: {
  1253. 城镇开发边界: {
  1254. color: "#FF0000",
  1255. query: {}
  1256. },
  1257. }
  1258. }
  1259. },
  1260. {
  1261. id: "shq-yh-all",
  1262. name: "十五分钟生活圈",
  1263. enabled: true,
  1264. visible: false,
  1265. serverType: "dynamic",
  1266. zIndex: 999,
  1267. params: {
  1268. layers: "show: 0,1,2,3,4,5,6,7,8,9"
  1269. },
  1270. url: "https://zlzd.zrzyt.zj.gov.cn/arcMapServer3/arcgis/rest/services/YSYBZ/SHYS_SWFZ_all/MapServer",
  1271. legend: {
  1272. title: "十五分钟生活圈",
  1273. defs: {
  1274. 十五分钟生活圈: {
  1275. color: "#FF5500",
  1276. query: {}
  1277. },
  1278. }
  1279. }
  1280. },
  1281. {
  1282. id: "shq-yh",
  1283. name: "生活圈",
  1284. enabled: true,
  1285. visible: false,
  1286. serverType: "dynamic",
  1287. params: {
  1288. layers: "show:"
  1289. },
  1290. url: "https://zlzd.zrzyt.zj.gov.cn/arcMapServer3/arcgis/rest/services/YSYBZ/SHYS_SWFZ/MapServer",
  1291. legend: {
  1292. title: "生活圈",
  1293. defs: {
  1294. 生活圈: {
  1295. color: "#FF0000",
  1296. query: {}
  1297. },
  1298. }
  1299. }
  1300. },
  1301. {
  1302. id: "yh-qlzy",
  1303. name: "余杭潜力资源",
  1304. enabled: true,
  1305. visible: false,
  1306. serverType: "dynamic",
  1307. params: {
  1308. layers: "show:0"
  1309. },
  1310. url: "https://zlzd.zrzyt.zj.gov.cn/arcMapServer2/arcgis/rest/services/ZDZY/ZDZY_KGDK_GYYD/MapServer",
  1311. legend: {
  1312. title: "潜力资源",
  1313. defs: {
  1314. 潜力资源: {
  1315. color: "#EB6138",
  1316. query: {}
  1317. }
  1318. }
  1319. }
  1320. },
  1321. {
  1322. id: "yh-pewg",
  1323. name: "余杭批而未供",
  1324. enabled: true,
  1325. visible: false,
  1326. serverType: "dynamic",
  1327. params: {
  1328. layers: "show:0"
  1329. },
  1330. url: "https://zlzd.zrzyt.zj.gov.cn/arcMapServer2/arcgis/rest/services/ZDZY/ZDZY_PEWG_WGYY/MapServer",
  1331. legend: {
  1332. title: "批而未供",
  1333. defs: {
  1334. 只征不转: {
  1335. color: "#fd25bd",
  1336. query: {
  1337. 'ECGAP_LANDUSE.PEWG.WGYY_XL': '只征不转'
  1338. }
  1339. },
  1340. 农转用无法调整: {
  1341. color: "#42d8ff",
  1342. query: {
  1343. 'ECGAP_LANDUSE.PEWG.WGYY_XL': '农转用无法调整'
  1344. }
  1345. },
  1346. 规划未确定或调整: {
  1347. color: "#f7a53f",
  1348. query: {
  1349. 'ECGAP_LANDUSE.PEWG.WGYY_XL': '规划未确定或调整'
  1350. }
  1351. },
  1352. 已批未征: {
  1353. color: "#63befb",
  1354. query: {
  1355. 'ECGAP_LANDUSE.PEWG.WGYY_XL': '已批未征'
  1356. }
  1357. },
  1358. 手续未完善: {
  1359. color: "#238cff",
  1360. query: {
  1361. 'ECGAP_LANDUSE.PEWG.WGYY_XL': '手续未完善'
  1362. }
  1363. },
  1364. 政府储备土地: {
  1365. color: "#6e4dff",
  1366. query: {
  1367. 'ECGAP_LANDUSE.PEWG.WGYY_XL': '政府储备土地'
  1368. }
  1369. },
  1370. 供地前期工作: {
  1371. color: "#32b200",
  1372. query: {
  1373. 'ECGAP_LANDUSE.PEWG.WGYY_XL': '供地前期工作'
  1374. }
  1375. },
  1376. 零星难利用: {
  1377. color: "#ffca28",
  1378. query: {
  1379. 'ECGAP_LANDUSE.PEWG.WGYY_XL': '零星难利用'
  1380. }
  1381. },
  1382. 项目未落实: {
  1383. color: "#3afff8",
  1384. query: {
  1385. 'ECGAP_LANDUSE.PEWG.WGYY_XL': '项目未落实'
  1386. }
  1387. },
  1388. 待认定: {
  1389. color: "#fe877b",
  1390. query: {
  1391. 'ECGAP_LANDUSE.PEWG.WGYY_XL': '待认定'
  1392. }
  1393. },
  1394. 其他: {
  1395. color: "#3e6af7",
  1396. query: {
  1397. 'ECGAP_LANDUSE.PEWG.WGYY_XL': '其他'
  1398. }
  1399. },
  1400. }
  1401. }
  1402. },
  1403. {
  1404. id: "yh-dxyd",
  1405. name: "低效用地",
  1406. enabled: true,
  1407. visible: false,
  1408. serverType: "dynamic",
  1409. params: {
  1410. layers: "show:0,1"
  1411. },
  1412. url: "https://zlzd.zrzyt.zj.gov.cn/arcMapServer2/arcgis/rest/services/ZDZY/dcqtb_2022/MapServer",
  1413. legend: {
  1414. title: "低效用地",
  1415. defs: {
  1416. 低效用地: {
  1417. color: "rgb(170, 0, 130)",
  1418. query: {}
  1419. }
  1420. }
  1421. }
  1422. },
  1423. {
  1424. id: "yh-ssmj",
  1425. name: "空间规划_实施面积",
  1426. enabled: true,
  1427. visible: false,
  1428. serverType: "dynamic",
  1429. zIndex: 999,
  1430. params: {
  1431. layers: "show:4,5"
  1432. },
  1433. url: "https://zlzd.zrzyt.zj.gov.cn/arcMapServer3/arcgis/rest/services/YSYBZ/JSYD_YH/MapServer",
  1434. legend: {
  1435. title: "实施面积",
  1436. defs: {
  1437. 实施面积: {
  1438. color: "#EFA31B",
  1439. query: {}
  1440. }
  1441. }
  1442. }
  1443. },
  1444. //===========
  1445. {
  1446. id: "yh-ghjsyd",
  1447. name: "规划建设用地",
  1448. enabled: true,
  1449. visible: false,
  1450. serverType: "dynamic",
  1451. params: {
  1452. layers: "show:0,1"
  1453. },
  1454. url: "https://zlzd.zrzyt.zj.gov.cn/arcMapServer3/arcgis/rest/services/YSYBZ/GHJSYD_YH/MapServer",
  1455. legend: {
  1456. title: "规划建设用地",
  1457. defs: {
  1458. 可用建设用地: {
  1459. color: "#F0F270",
  1460. query: {}
  1461. },
  1462. 已实施建设用地: {
  1463. color: "#EFA31B",
  1464. query: {}
  1465. },
  1466. }
  1467. }
  1468. },
  1469. {
  1470. id: "yh-kfqd",
  1471. name: "开发边界内开发强度",
  1472. enabled: true,
  1473. visible: false,
  1474. serverType: "dynamic",
  1475. params: {
  1476. layers: "show:0"
  1477. },
  1478. url: "https://zlzd.zrzyt.zj.gov.cn/arcMapServer3/arcgis/rest/services/YSYBZ/KFBJ_JSYD/MapServer"
  1479. },
  1480. {
  1481. id: "gyyddc",
  1482. name: "低效工业用地",
  1483. enabled: true,
  1484. visible: false,
  1485. serverType: "dynamic",
  1486. params: {
  1487. layers: "show:0"
  1488. },
  1489. url:
  1490. "https://zlzd.zrzyt.zj.gov.cn/arcMapServer3/arcgis/rest/services/GYYDDC/ZJGYYDDCNEW/MapServer",
  1491. },
  1492. {
  1493. id: "yh-kyjsyd",
  1494. name: "可用建设用地",
  1495. enabled: true,
  1496. visible: false,
  1497. serverType: "dynamic",
  1498. params: {
  1499. layers: "show:2,3",
  1500. },
  1501. url: "https://zlzd.zrzyt.zj.gov.cn/arcMapServer3/arcgis/rest/services/YSYBZ/JSYD_YH/MapServer",
  1502. legend: {
  1503. title: "可用建设用地",
  1504. defs: {
  1505. 可用建设用地: {
  1506. color: "#F0F270",
  1507. query: {}
  1508. }
  1509. }
  1510. }
  1511. },
  1512. {
  1513. id: "yh-ghgyyd",
  1514. name: "规划工业用地",
  1515. enabled: true,
  1516. visible: false,
  1517. serverType: "dynamic",
  1518. params: {
  1519. layers: "show:0,1",
  1520. },
  1521. url: "https://zlzd.zrzyt.zj.gov.cn/arcMapServer3/arcgis/rest/services/YSYBZ/GHGYYD_YH/MapServer",
  1522. legend: {
  1523. title: "规划工业用地",
  1524. defs: {
  1525. 可用工业用地: {
  1526. color: "#F0F270",
  1527. query: {}
  1528. },
  1529. 已实施工业用地: {
  1530. color: "#D6A242",
  1531. query: {}
  1532. },
  1533. }
  1534. }
  1535. },
  1536. {
  1537. id: "yh-yssgyyd",
  1538. name: "已实施工业用地",
  1539. enabled: true,
  1540. visible: false,
  1541. serverType: "dynamic",
  1542. params: {
  1543. layers: "show:10,11",
  1544. layerDefs: {
  1545. "10": "1 = 1 ",
  1546. "11": "1 = 1 ",
  1547. }
  1548. },
  1549. url: "https://zlzd.zrzyt.zj.gov.cn/arcMapServer3/arcgis/rest/services/YSYBZ/JSYD_YH/MapServer",
  1550. legend: {
  1551. title: "已实施工业用地",
  1552. defs: {
  1553. 已实施工业用地: {
  1554. color: "#FF5500",
  1555. query: {}
  1556. },
  1557. }
  1558. }
  1559. },
  1560. {
  1561. id: "yh-kygyyd",
  1562. name: "可用工业用地",
  1563. enabled: true,
  1564. visible: false,
  1565. serverType: "dynamic",
  1566. params: {
  1567. layers: "show:6,7",
  1568. },
  1569. url: "https://zlzd.zrzyt.zj.gov.cn/arcMapServer3/arcgis/rest/services/YSYBZ/JSYD_YH/MapServer",
  1570. legend: {
  1571. title: "可用工业用地",
  1572. defs: {
  1573. 可用工业用地: {
  1574. color: "#FFFF73",
  1575. query: {}
  1576. },
  1577. }
  1578. }
  1579. },
  1580. {
  1581. id: "yh-hyfb",
  1582. name: "余杭行业分布",
  1583. enabled: true,
  1584. visible: false,
  1585. serverType: "dynamic",
  1586. params: {
  1587. layers: "show:0",
  1588. },
  1589. url: "https://zlzd.zrzyt.zj.gov.cn/arcMapServer3/arcgis/rest/services/YSYBZ/HYFL_YH/MapServer",
  1590. },
  1591. {
  1592. id: "yh-mjpj",
  1593. name: "余杭亩均评价",
  1594. enabled: true,
  1595. visible: false,
  1596. serverType: "dynamic",
  1597. params: {
  1598. layers: "show:0,1",
  1599. },
  1600. url: "https://zlzd.zrzyt.zj.gov.cn/arcMapServer3/arcgis/rest/services/YSYBZ/MJPJ_YH_ALL/MapServer",
  1601. legend: {
  1602. title: "亩均评价",
  1603. defs: {
  1604. 亩均高效: {
  1605. color: "#30BDFF",
  1606. query: {}
  1607. },
  1608. 亩均低效: {
  1609. color: "#FF689C",
  1610. query: {}
  1611. },
  1612. }
  1613. }
  1614. },
  1615. {
  1616. id: "xzqh-x-new",
  1617. name: "县级行政区",
  1618. enabled: true,
  1619. visible: false,
  1620. serverType: "dynamic",
  1621. url:
  1622. "https://zlzd.zrzyt.zj.gov.cn/arcMapServer3/arcgis/rest/services/zp/XZQ_XJ/MapServer"
  1623. },
  1624. {
  1625. id: "shq-zzyd",
  1626. name: "住宅用地",
  1627. enabled: true,
  1628. visible: false,
  1629. serverType: "dynamic",
  1630. params: {
  1631. layers: "show:10,11",
  1632. },
  1633. url: "https://zlzd.zrzyt.zj.gov.cn/arcMapServer3/arcgis/rest/services/YSYBZ/SHYS_SWFZ_all/MapServer",
  1634. legend: {
  1635. title: "住宅用地",
  1636. defs: {
  1637. 住宅用地圈外: {
  1638. color: "#FFD073",
  1639. query: {}
  1640. },
  1641. 住宅用地圈内: {
  1642. color: "#2394F2",
  1643. query: {}
  1644. },
  1645. }
  1646. }
  1647. },
  1648. {
  1649. id: "wmqy",
  1650. name: "万亩千亿",
  1651. enabled: true,
  1652. visible: false,
  1653. serverType: "dynamic",
  1654. params: {
  1655. layers: "show:0,1",
  1656. },
  1657. url: "https://zlzd.zrzyt.zj.gov.cn/arcMapServer216/arcgis/rest/services/YSYBZ/YS_WMQY/MapServer",
  1658. legend: {
  1659. title: "万亩千亿",
  1660. defs: {
  1661. 万亩千亿: {
  1662. color: "#BFFFE8",
  1663. query: {}
  1664. }
  1665. }
  1666. }
  1667. },
  1668. {
  1669. id: "ydys",
  1670. name: "用地预审",
  1671. enabled: true,
  1672. visible: false,
  1673. serverType: "dynamic",
  1674. params: {
  1675. layers: "show:0,1",
  1676. },
  1677. url: "https://zlzd.zrzyt.zj.gov.cn/arcMapServer3/arcgis/rest/services/YSYBZ/BDGJ_YS/MapServer",
  1678. legend: {
  1679. title: "用地预审",
  1680. defs: {
  1681. 用地预审: {
  1682. color: "#FF7F7F",
  1683. query: {}
  1684. }
  1685. }
  1686. }
  1687. },
  1688. {
  1689. id: "ydsp2022",
  1690. name: "2022百大攻坚",
  1691. enabled: true,
  1692. visible: false,
  1693. serverType: "dynamic",
  1694. params: {
  1695. layers: "show:0,1",
  1696. },
  1697. url: "https://zlzd.zrzyt.zj.gov.cn/arcMapServer216/arcgis/rest/services/YSYBZ/BDGJ_BP_2022/MapServer",
  1698. legend: {
  1699. title: "2022百大攻坚",
  1700. defs: {
  1701. '2022百大攻坚': {
  1702. color: "#03FFC4",
  1703. query: {}
  1704. }
  1705. }
  1706. }
  1707. },
  1708. {
  1709. id: "ydsp2023",
  1710. name: "2023百大攻坚",
  1711. enabled: true,
  1712. visible: false,
  1713. serverType: "dynamic",
  1714. params: {
  1715. layers: "show:0,1",
  1716. },
  1717. url: "https://zlzd.zrzyt.zj.gov.cn/arcMapServer3/arcgis/rest/services/YSYBZ/BDGJ_BP/MapServer",
  1718. legend: {
  1719. title: "2023百大攻坚",
  1720. defs: {
  1721. '2023百大攻坚': {
  1722. color: "#03FFC4",
  1723. query: {}
  1724. }
  1725. }
  1726. }
  1727. },
  1728. {
  1729. id: "gd",
  1730. name: "供地",
  1731. enabled: true,
  1732. visible: false,
  1733. serverType: "dynamic",
  1734. params: {
  1735. layers: "show:0,1",
  1736. layerDefs: {
  1737. "0": "1=1",
  1738. "1": "1=1"
  1739. }
  1740. },
  1741. url: "https://zlzd.zrzyt.zj.gov.cn/arcMapServer3/arcgis/rest/services/ZDZY/TDGY2022/MapServer",
  1742. legend: {
  1743. title: "供地",
  1744. defs: {
  1745. 供地: {
  1746. color: "#03FFC4",
  1747. query: {}
  1748. }
  1749. }
  1750. }
  1751. },
  1752. {
  1753. id: "gd-gyyd",
  1754. name: "工业用地",
  1755. enabled: true,
  1756. visible: false,
  1757. serverType: "dynamic",
  1758. params: {
  1759. layers: "show:0,1",
  1760. layerDefs: {
  1761. "0": "tdyt like '06%'",
  1762. "1": "tdyt like '06%'"
  1763. }
  1764. },
  1765. url: "https://zlzd.zrzyt.zj.gov.cn/arcMapServer3/arcgis/rest/services/ZDZY/TDGY2022/MapServer",
  1766. legend: {
  1767. title: "工业用地",
  1768. defs: {
  1769. 工业用地: {
  1770. color: "#03FFC4",
  1771. query: {}
  1772. }
  1773. }
  1774. }
  1775. },
  1776. {
  1777. id: "tsxz",
  1778. name: "特色小镇",
  1779. enabled: true,
  1780. visible: false,
  1781. serverType: "dynamic",
  1782. params: {
  1783. layers: "show:0,1",
  1784. },
  1785. url: "https://zlzd.zrzyt.zj.gov.cn/arcMapServer216/arcgis/rest/services/YSYBZ/TSXZ/MapServer",
  1786. legend: {
  1787. title: "特色小镇",
  1788. defs: {
  1789. 高端装备制造: {
  1790. color: "#4ADEFF",
  1791. query: {}
  1792. },
  1793. 金融: {
  1794. color: "#FFE383",
  1795. query: {}
  1796. },
  1797. 金融产业: {
  1798. color: "#36FFB6",
  1799. query: {}
  1800. },
  1801. 数字经济: {
  1802. color: "#FFBD88",
  1803. query: {}
  1804. },
  1805. 健康产业: {
  1806. color: "#FF95E6",
  1807. query: {}
  1808. },
  1809. 历史经典: {
  1810. color: "#C9FF60",
  1811. query: {}
  1812. },
  1813. 历史经典产业: {
  1814. color: "#A0ABFF",
  1815. query: {}
  1816. },
  1817. 旅游: {
  1818. color: "#FE7777",
  1819. query: {}
  1820. },
  1821. 旅游产业: {
  1822. color: "#E08046",
  1823. query: {}
  1824. },
  1825. 时尚产业: {
  1826. color: "#479EFF",
  1827. query: {}
  1828. },
  1829. 环保产业: {
  1830. color: "#1DFD52",
  1831. query: {}
  1832. },
  1833. }
  1834. }
  1835. },
  1836. {
  1837. id: "nzy",
  1838. name: "农转用",
  1839. enabled: true,
  1840. visible: false,
  1841. serverType: "ArcGISTile",
  1842. params: {
  1843. layers: "show:0",
  1844. },
  1845. url: "https://zlzd.zrzyt.zj.gov.cn/gtkj/SZSW/87521884b4e842a3afdef80d6b86f1ab/arcgis/rest/services/GCS330000_3003_JSYDBP/GCS330000_3003_JSYDBP_NZYDK_TT_202010311733/MapServer",
  1846. legend: {
  1847. title: "农转用",
  1848. defs: {
  1849. 农转用: {
  1850. color: "#FE0102",
  1851. query: {}
  1852. }
  1853. }
  1854. }
  1855. },
  1856. {
  1857. id: "zrzy-gd",
  1858. name: "耕地",
  1859. enabled: true,
  1860. visible: false,
  1861. serverType: "ArcGISTile",
  1862. params: {
  1863. layers: "show:0",
  1864. },
  1865. url: "https://zlzd.zrzyt.zj.gov.cn/gtkj-zjzwfw/proxy/GDPProxy79/6752291d133641e89309a93873721eec/arcgis/rest/services/GCS330000_1002_GTBGDC_XSB/GCS330000_1002_GTBGDC_GD/MapServer",
  1866. legend: {
  1867. title: "耕地",
  1868. defs: {
  1869. 耕地: {
  1870. color: "#FFD966",
  1871. query: {}
  1872. }
  1873. }
  1874. }
  1875. },
  1876. {
  1877. id: "zrzy-czgk",
  1878. name: "城镇村及工矿用地",
  1879. enabled: true,
  1880. visible: false,
  1881. serverType: "ArcGISTile",
  1882. params: {
  1883. layers: "show:0",
  1884. },
  1885. url: "https://zlzd.zrzyt.zj.gov.cn/gtkj-zjzwfw/proxy/GDPProxy80/a9c6f843308f41d8836a208ed758049b/arcgis/rest/services/GCS330000_1002_GTBGDC_XSB/GCS330000_1002_GTBGDC_CZCJGKYD/MapServer",
  1886. legend: {
  1887. title: "城镇村及工矿用地",
  1888. defs: {
  1889. 城镇村及工矿用地: {
  1890. color: "#FF4D80",
  1891. query: {}
  1892. }
  1893. }
  1894. }
  1895. },
  1896. {
  1897. id: "zrzy-sd",
  1898. name: "湿地",
  1899. enabled: true,
  1900. visible: false,
  1901. serverType: "ArcGISTile",
  1902. params: {
  1903. layers: "show:0",
  1904. },
  1905. url: "https://zlzd.zrzyt.zj.gov.cn/gtkj-zjzwfw/proxy/GDPProxy69/a714600741ec4b0f87004dc0a499f109/arcgis/rest/services/GCS330000_1002_GTBGDC_XSB/GCS330000_1002_GTBGDC_SD/MapServer",
  1906. legend: {
  1907. title: "湿地",
  1908. defs: {
  1909. 湿地: {
  1910. color: "#CCFFE5",
  1911. query: {}
  1912. }
  1913. }
  1914. }
  1915. },
  1916. {
  1917. id: "zrzy-cd",
  1918. name: "草地",
  1919. enabled: true,
  1920. visible: false,
  1921. serverType: "ArcGISTile",
  1922. params: {
  1923. layers: "show:0",
  1924. },
  1925. url: "https://zlzd.zrzyt.zj.gov.cn/gtkj-zjzwfw/proxy/GDPProxy81/c2ac93ac28f24c668059208b4d5810ab/arcgis/rest/services/GCS330000_1002_GTBGDC_XSB/GCS330000_1002_GTBGDC_CD/MapServer",
  1926. legend: {
  1927. title: "草地",
  1928. defs: {
  1929. 草地: {
  1930. color: "#D8FF99",
  1931. query: {}
  1932. }
  1933. }
  1934. }
  1935. },
  1936. {
  1937. id: "tsxz-yhrgznxz",
  1938. name: "特色小镇-余杭人工智能小镇",
  1939. enabled: true,
  1940. visible: false,
  1941. serverType: "dynamic",
  1942. params: {
  1943. layers: "show: 100",
  1944. },
  1945. url: "https://zlzd.zrzyt.zj.gov.cn/arcMapServer216/arcgis/rest/services/YSYBZ/JSYD_YHTSXZ/MapServer",
  1946. legend: {
  1947. title: "建设空间分析",
  1948. defs: {
  1949. 已实施: {
  1950. color: "#EFA309",
  1951. query: {}
  1952. },
  1953. 可用: {
  1954. color: "#EFF071",
  1955. query: {}
  1956. },
  1957. }
  1958. }
  1959. },
  1960. {
  1961. id: "stbhhx",
  1962. name: "生态保护红线",
  1963. enabled: true,
  1964. visible: false,
  1965. serverType: "ArcGISTile",
  1966. params: {
  1967. layers: "show: 0",
  1968. },
  1969. url: "https://zlzd.zrzyt.zj.gov.cn/gtkj-zjzwfw/proxy/GDPProxy50/d5d85202b0cc4ce594577c52cbd1e08f/arcgis/rest/services/GCS330000_2001_SQSX_2022/GCS330000_2001_STBHHX_2022/MapServer",
  1970. legend: {
  1971. title: "生态保护红线",
  1972. defs: {
  1973. 生态保护红线: {
  1974. color: "#55FF00",
  1975. query: {}
  1976. },
  1977. }
  1978. }
  1979. },
  1980. {
  1981. id: "yjjbnt",
  1982. name: "永久基本农田",
  1983. enabled: true,
  1984. visible: false,
  1985. serverType: "ArcGISTile",
  1986. params: {
  1987. layers: "show: 0",
  1988. },
  1989. url: "https://zlzd.zrzyt.zj.gov.cn/gtkj-zjzwfw/proxy/GDPProxy54/c88f3f1d377b4292a41e0f039699630c/arcgis/rest/services/GCS330000_2001_SQSX_2022/GCS330000_2001_YJJBNT_2022/MapServer",
  1990. legend: {
  1991. title: "永久基本农田",
  1992. defs: {
  1993. 永久基本农田: {
  1994. color: "#FFD966",
  1995. query: {}
  1996. },
  1997. }
  1998. }
  1999. },
  2000. {
  2001. id: "gyydyh",
  2002. name: "工业用地",
  2003. enabled: true,
  2004. visible: false,
  2005. serverType: "dynamic",
  2006. params: {
  2007. layers: "show:0,1",
  2008. layerDefs: {
  2009. "0": "ydlx = '工业用地'",
  2010. "1": "ydlx = '工业用地'",
  2011. }
  2012. },
  2013. url: "https://zlzd.zrzyt.zj.gov.cn/arcMapServer216/arcgis/rest/services/YSYBZ/DLTB_YHJJKFQ/MapServer",
  2014. legend: {
  2015. title: "工业用地",
  2016. defs: {
  2017. 工业用地: {
  2018. color: "#FF7F7F",
  2019. query: {}
  2020. }
  2021. }
  2022. }
  2023. },
  2024. {
  2025. id: "zzydyh",
  2026. name: "住宅用地",
  2027. enabled: true,
  2028. visible: false,
  2029. serverType: "dynamic",
  2030. params: {
  2031. layers: "show:0,1",
  2032. layerDefs: {
  2033. "0": "ydlx = '住宅用地'",
  2034. "1": "ydlx = '住宅用地'",
  2035. }
  2036. },
  2037. url: "https://zlzd.zrzyt.zj.gov.cn/arcMapServer216/arcgis/rest/services/YSYBZ/DLTB_YHJJKFQ/MapServer",
  2038. legend: {
  2039. title: "住宅用地",
  2040. defs: {
  2041. 住宅用地: {
  2042. color: "#FFD380",
  2043. query: {}
  2044. }
  2045. }
  2046. }
  2047. },
  2048. {
  2049. id: "syydyh",
  2050. name: "商业用地",
  2051. enabled: true,
  2052. visible: false,
  2053. serverType: "dynamic",
  2054. params: {
  2055. layers: "show:0,1",
  2056. layerDefs: {
  2057. "0": "ydlx = '商业用地'",
  2058. "1": "ydlx = '商业用地'",
  2059. }
  2060. },
  2061. url: "https://zlzd.zrzyt.zj.gov.cn/arcMapServer216/arcgis/rest/services/YSYBZ/DLTB_YHJJKFQ/MapServer",
  2062. legend: {
  2063. title: "商业用地",
  2064. defs: {
  2065. 商业用地: {
  2066. color: "#03FFC4",
  2067. query: {}
  2068. }
  2069. }
  2070. }
  2071. },
  2072. {
  2073. id: "qtjsydyh",
  2074. name: "其他建设用地",
  2075. enabled: true,
  2076. visible: false,
  2077. serverType: "dynamic",
  2078. params: {
  2079. layers: "show:0,1",
  2080. layerDefs: {
  2081. "0": "ydlx = '其他建设用地'",
  2082. "1": "ydlx = '其他建设用地'",
  2083. }
  2084. },
  2085. url: "https://zlzd.zrzyt.zj.gov.cn/arcMapServer216/arcgis/rest/services/YSYBZ/DLTB_YHJJKFQ/MapServer",
  2086. legend: {
  2087. title: "其他建设用地",
  2088. defs: {
  2089. 其他建设用地: {
  2090. color: "#FFAA01",
  2091. query: {}
  2092. }
  2093. }
  2094. }
  2095. },
  2096. {
  2097. id: "nydyh",
  2098. name: "农用地",
  2099. enabled: true,
  2100. visible: false,
  2101. serverType: "dynamic",
  2102. params: {
  2103. layers: "show:0,1",
  2104. layerDefs: {
  2105. "0": "ydlx = '农用地'",
  2106. "1": "ydlx = '农用地'",
  2107. }
  2108. },
  2109. url: "https://zlzd.zrzyt.zj.gov.cn/arcMapServer216/arcgis/rest/services/YSYBZ/DLTB_YHJJKFQ/MapServer",
  2110. legend: {
  2111. title: "农用地",
  2112. defs: {
  2113. 农用地: {
  2114. color: "#65CDAD",
  2115. query: {}
  2116. }
  2117. }
  2118. }
  2119. },
  2120. {
  2121. id: "wlydyh",
  2122. name: "未利用地",
  2123. enabled: true,
  2124. visible: false,
  2125. serverType: "dynamic",
  2126. params: {
  2127. layers: "show:0,1",
  2128. layerDefs: {
  2129. "0": "ydlx = '未利用地'",
  2130. "1": "ydlx = '未利用地'",
  2131. }
  2132. },
  2133. url: "https://zlzd.zrzyt.zj.gov.cn/arcMapServer216/arcgis/rest/services/YSYBZ/DLTB_YHJJKFQ/MapServer",
  2134. legend: {
  2135. title: "未利用地",
  2136. defs: {
  2137. 未利用地: {
  2138. color: "#FF73DF",
  2139. query: {}
  2140. }
  2141. }
  2142. }
  2143. },
  2144. {
  2145. id: "qlzyyh",
  2146. name: "潜力资源",
  2147. enabled: true,
  2148. visible: false,
  2149. serverType: "dynamic",
  2150. params: {
  2151. layers: "show:0,1"
  2152. },
  2153. url: "https://zlzd.zrzyt.zj.gov.cn/arcMapServer216/arcgis/rest/services/YSYBZ/QLZY_YHJJKFQ/MapServer",
  2154. legend: {
  2155. title: "潜力资源",
  2156. defs: {
  2157. 潜力资源: {
  2158. color: "#FFAA01",
  2159. query: {}
  2160. }
  2161. }
  2162. }
  2163. },
  2164. {
  2165. id: "hyfbyh",
  2166. name: "行业分布",
  2167. enabled: true,
  2168. visible: false,
  2169. serverType: "dynamic",
  2170. params: {
  2171. layers: "show:0,1"
  2172. },
  2173. url: "https://zlzd.zrzyt.zj.gov.cn/arcMapServer216/arcgis/rest/services/YSYBZ/YHJJKFQ_HY/MapServer/",
  2174. },
  2175. {
  2176. id: "mjpjyh",
  2177. name: "行业分布",
  2178. enabled: true,
  2179. visible: false,
  2180. serverType: "dynamic",
  2181. params: {
  2182. layers: "show:0,1"
  2183. },
  2184. url: "https://zlzd.zrzyt.zj.gov.cn/arcMapServer216/arcgis/rest/services/YSYBZ/YHJJKFQ_PJ/MapServer",
  2185. legend: {
  2186. title: "亩均评价",
  2187. defs: {
  2188. 亩均高效: {
  2189. color: "#0070FF",
  2190. query: {}
  2191. },
  2192. 亩均低效: {
  2193. color: "#E60001",
  2194. query: {}
  2195. },
  2196. }
  2197. }
  2198. },
  2199. {
  2200. id: "bj-dkgl",
  2201. name: "滨江地块管理",
  2202. enabled: true,
  2203. visible: false,
  2204. serverType: "dynamic",
  2205. params: {
  2206. layers: "show:0"
  2207. },
  2208. url: "https://zlzd.zrzyt.zj.gov.cn/arcMapServer216/arcgis/rest/services/YSYBZ/BJ_DKGL/MapServer",
  2209. legend: {
  2210. title: "管地单位",
  2211. defs: {
  2212. 区城管局: {
  2213. color: "rgba(255, 190, 190, 255)",
  2214. query: {}
  2215. },
  2216. 城建发展公司: {
  2217. color: "rgba(255, 211, 127, 255)",
  2218. query: {}
  2219. },
  2220. "城建发展公司;智慧新天地": {
  2221. color: "rgba(255, 211, 127, 255)",
  2222. query: {}
  2223. },
  2224. 建管中心: {
  2225. color: "rgba(80, 20, 173, 255)",
  2226. query: {}
  2227. },
  2228. 智慧新天地: {
  2229. color: "rgba(255, 127, 127, 255)",
  2230. query: {}
  2231. },
  2232. 浦沿街道: {
  2233. color: "rgba(255, 115, 223, 255)",
  2234. query: {}
  2235. },
  2236. 滨江环境公司: {
  2237. color: "rgba(230, 76, 0, 255)",
  2238. query: {}
  2239. },
  2240. "滨江环境公司;长河街道": {
  2241. color: "rgba(0, 255, 197, 255)",
  2242. query: {}
  2243. },
  2244. 物联网: {
  2245. color: "rgba(0, 112, 255, 255)",
  2246. query: {}
  2247. },
  2248. "物联网/滨江环境公司": {
  2249. color: "rgba(0, 112, 255, 255)",
  2250. query: {}
  2251. },
  2252. 白马湖创意城: {
  2253. color: "rgba(197, 0, 255, 255)",
  2254. query: {}
  2255. },
  2256. 西兴街道: {
  2257. color: "rgba(85, 255, 0, 255)",
  2258. query: {}
  2259. },
  2260. 资产经营公司: {
  2261. color: "rgba(255, 0, 0, 255)",
  2262. query: {}
  2263. },
  2264. "资产经营公司/长河街道": {
  2265. color: "rgba(0, 255, 197, 255)",
  2266. query: {}
  2267. },
  2268. 长河街道: {
  2269. color: "rgba(0, 255, 197, 255)",
  2270. query: {}
  2271. },
  2272. }
  2273. }
  2274. },
  2275. {
  2276. id: "bj-xz",
  2277. name: "滨江小镇",
  2278. enabled: true,
  2279. visible: false,
  2280. serverType: "dynamic",
  2281. params: {
  2282. layers: "show:0,1"
  2283. },
  2284. url: "https://zlzd.zrzyt.zj.gov.cn/arcMapServer216/arcgis/rest/services/YSYBZ/BJXZ/MapServer",
  2285. legend: {
  2286. title: "滨江小镇",
  2287. defs: {
  2288. 小镇: {
  2289. color: "red",
  2290. query: {}
  2291. },
  2292. }
  2293. }
  2294. },
  2295. {
  2296. id: "bj-stbhhx",
  2297. name: "滨江生态保护红线",
  2298. enabled: true,
  2299. visible: false,
  2300. serverType: "dynamic",
  2301. params: {
  2302. layers: "show:0,1"
  2303. },
  2304. url: "https://zlzd.zrzyt.zj.gov.cn/arcMapServer216/arcgis/rest/services/YSYBZ/BJSQSX/MapServer",
  2305. legend: {
  2306. title: "滨江生态保护红线",
  2307. defs: {
  2308. 保护红线: {
  2309. color: "#00A57D",
  2310. query: {}
  2311. },
  2312. }
  2313. }
  2314. },
  2315. {
  2316. id: "bj-czkfbj",
  2317. name: "滨江城镇开发边界",
  2318. enabled: true,
  2319. visible: false,
  2320. serverType: "dynamic",
  2321. params: {
  2322. layers: "show:2,3"
  2323. },
  2324. url: "https://zlzd.zrzyt.zj.gov.cn/arcMapServer216/arcgis/rest/services/YSYBZ/BJSQSX/MapServer",
  2325. legend: {
  2326. title: "滨江城镇开发边界",
  2327. defs: {
  2328. 开发边界: {
  2329. color: "#FF0064",
  2330. query: {}
  2331. },
  2332. }
  2333. }
  2334. },
  2335. {
  2336. id: "bj-kfbjw",
  2337. name: "滨江城镇开发边界外",
  2338. enabled: true,
  2339. visible: false,
  2340. serverType: "dynamic",
  2341. params: {
  2342. layers: "show:0,1"
  2343. },
  2344. url: "https://zlzd.zrzyt.zj.gov.cn/arcMapServer216/arcgis/rest/services/YSYBZ/BJ_KFBJW/MapServer",
  2345. legend: {
  2346. title: "滨江城镇开发边界外",
  2347. defs: {
  2348. 开发边界外: {
  2349. color: "#FFFF2D",
  2350. query: {}
  2351. },
  2352. }
  2353. }
  2354. },
  2355. {
  2356. id: "bj-ld",
  2357. name: "滨江林地",
  2358. enabled: true,
  2359. visible: false,
  2360. serverType: "dynamic",
  2361. params: {
  2362. layers: "show:0,1"
  2363. },
  2364. url: "https://zlzd.zrzyt.zj.gov.cn/arcMapServer216/arcgis/rest/services/YSYBZ/BJLD/MapServer",
  2365. legend: {
  2366. title: "滨江林地",
  2367. defs: {
  2368. 滨江林地: {
  2369. color: "#64AF64",
  2370. query: {}
  2371. },
  2372. }
  2373. }
  2374. },
  2375. {
  2376. id: "bj-gd",
  2377. name: "滨江耕地",
  2378. enabled: true,
  2379. visible: false,
  2380. serverType: "dynamic",
  2381. params: {
  2382. layers: "show:0,1"
  2383. },
  2384. url: "https://zlzd.zrzyt.zj.gov.cn/arcMapServer216/arcgis/rest/services/YSYBZ/BJGD/MapServer",
  2385. legend: {
  2386. title: "滨江耕地",
  2387. defs: {
  2388. 滨江耕地: {
  2389. color: "#F5F8DC",
  2390. query: {}
  2391. },
  2392. }
  2393. }
  2394. },
  2395. {
  2396. id: "bj-lsyd",
  2397. name: "滨江临时用地",
  2398. enabled: true,
  2399. visible: false,
  2400. serverType: "dynamic",
  2401. params: {
  2402. layers: "show:0,1"
  2403. },
  2404. url: "https://zlzd.zrzyt.zj.gov.cn/arcMapServer216/arcgis/rest/services/YSYBZ/BJLSYD/MapServer",
  2405. legend: {
  2406. title: "滨江临时用地",
  2407. defs: {
  2408. 滨江临时用地: {
  2409. color: "#9999FF",
  2410. query: {}
  2411. },
  2412. }
  2413. }
  2414. },
  2415. ]
  2416. }
  2417. ]
  2418. },
  2419. outerNet: {
  2420. view: {
  2421. center: [120.50451781233137, 27.842990408642258],
  2422. zoom: 11.33,
  2423. // extent: [], // 限制视图的范围,此范围之外的任何内容都不能在地图上看到。
  2424. fitExtent: [
  2425. 119.93054011309823,
  2426. 27.58795490358181,
  2427. 121.24821284259042,
  2428. 28.05212726686306
  2429. ],
  2430. minZoom: 7,
  2431. maxZoom: 21
  2432. },
  2433. layers: [
  2434. {
  2435. id: "jcdl", // id 一经指定,切勿轻易修改
  2436. name: "基础地理",
  2437. enabled: true, // 是否启用,启用才会显示在页面中
  2438. expand: false, // 是否展开折叠
  2439. visible: true, // 是否显示子图层
  2440. base: true, // 是否底图,底图 在 设置 visible-layer-ids 时会跳过,向下传递
  2441. opacity: 1, // 图层透明度,取值0~1或false,false禁用透明度调节功能,可选配置
  2442. hidden: false, // 只在 layerTree 组件里面不显示,代码上依旧能获取到,可选配置
  2443. children: [
  2444. {
  2445. id: "tdt",
  2446. name: "天地图",
  2447. enabled: true,
  2448. expand: false,
  2449. visible: true,
  2450. children: [
  2451. {
  2452. id: "tdtsl",
  2453. name: "天地图-矢量",
  2454. enabled: true,
  2455. visible: true,
  2456. serverType: "tdtxyz",
  2457. url:
  2458. "http://t0.tianditu.com/DataServer?T=vec_w&x={x}&y={y}&l={z}&tk=d8c6e3fba331097a5bd07e4c42f55d4a"
  2459. },
  2460. {
  2461. id: "tdtyx",
  2462. name: "天地图-影像",
  2463. enabled: true,
  2464. visible: true,
  2465. serverType: "tdtxyz",
  2466. url:
  2467. "http://t0.tianditu.com/DataServer?T=img_w&x={x}&y={y}&l={z}&tk=d8c6e3fba331097a5bd07e4c42f55d4a"
  2468. },
  2469. {
  2470. id: "tdtzj",
  2471. name: "天地图-注记",
  2472. enabled: true,
  2473. visible: true,
  2474. serverType: "tdtxyz",
  2475. url:
  2476. "http://t0.tianditu.gov.cn/DataServer?T=cva_w&X={x}&Y={y}&L={z}&tk=d8c6e3fba331097a5bd07e4c42f55d4a"
  2477. }
  2478. ]
  2479. }
  2480. ]
  2481. },
  2482. {
  2483. id: "dktc",
  2484. name: "图层服务",
  2485. enabled: true,
  2486. expand: true,
  2487. visible: false,
  2488. children: [
  2489. {
  2490. id: "xzqh",
  2491. name: "行政区划",
  2492. enabled: true,
  2493. expand: false,
  2494. visible: false,
  2495. children: [
  2496. {
  2497. id: "xzqh-s",
  2498. name: "市级行政区",
  2499. enabled: true,
  2500. visible: false,
  2501. serverType: "dynamic",
  2502. url:
  2503. "/arcMapServer/tdcsservices/arcgis/rest/services/zp/XZQ_SJ/MapServer"
  2504. },
  2505. {
  2506. id: "xzqh-x",
  2507. name: "县级行政区",
  2508. enabled: true,
  2509. visible: false,
  2510. serverType: "dynamic",
  2511. url:
  2512. "/arcMapServer/tdcsservices/arcgis/rest/services/zp/XZQ_XJ/MapServer"
  2513. },
  2514. {
  2515. id: "xzqh-z",
  2516. name: "镇级行政区",
  2517. enabled: true,
  2518. visible: false,
  2519. serverType: "dynamic",
  2520. url:
  2521. "/arcMapServer/tdcsservices/arcgis/rest/services/zp/XZQ_ZJ/MapServer"
  2522. }
  2523. ]
  2524. }
  2525. ]
  2526. }
  2527. ]
  2528. }
  2529. },
  2530. mockData: {
  2531. yhLandInfo: {
  2532. gyyd: 34211,
  2533. ss: 325.62,
  2534. mjss: 95.18,
  2535. ss_after: 333.76,
  2536. mjss_after: 97.56,
  2537. add_ss: 8.13,
  2538. add_mjss: 2.38,
  2539. },
  2540. yhMjxyData: {
  2541. mjgx: 1.25,
  2542. mjdx: 2.17
  2543. }
  2544. }
  2545. };