diff --git a/src/components/map/MapComponent.tsx b/src/components/map/MapComponent.tsx index 66cb8b1..1cb347a 100644 --- a/src/components/map/MapComponent.tsx +++ b/src/components/map/MapComponent.tsx @@ -1,6 +1,7 @@ import { useEffect, useState } from "react"; import AMapLoader from "@amap/amap-jsapi-loader"; import MapUtl from "./mapUtil"; +import { mapArrs } from "@/store/map"; export default function MapContainer() { let [amap, setmaps] = useState(null); @@ -16,9 +17,9 @@ export default function MapContainer() { const Amap = await AMapLoader.load({ key: "d58999d072ed7e5897d3900a769cfda0", // 申请好的Web端开发者Key,首次调用 load 时必填 version: "2.0", // 指定要加载的 JSAPI 的版本,缺省时默认为 1.4.15 - plugins: ["AMap.Scale","AMap.MoveAnimation","AMap.Weather,AMap.DistrictSearch"], + plugins: ["AMap.Scale", "AMap.MoveAnimation", "AMap.Weather"], }); - + amap = new Amap.Map("container", { viewMode: "2D", // 是否为3D地图模式 zoom: 11, // 初始化地图级别 @@ -26,36 +27,49 @@ export default function MapContainer() { mapStyle: "amap://styles/darkblue", resizeEnable: true, }); - const district = new Amap.DistrictSearch({ - subdistrict: 3, //返回下一级行政区 - extensions: "all", //返回行政区边界坐标组等具体信息 - level: "street", //查询行政级别为 市 + // const bundler = result.districtList[0].boundaries; + const bundler: Array = []; + mapArrs.forEach((item) => { + let db = MapUtl.bdConvertGd(item); + bundler.push(db); }); - district.search("510116", function (status,result){ - if(status === "complete"){ - const bundler = result.districtList[0].boundaries; - const polygon = new Amap.Polygon({ - map: amap, - path: bundler, - strokeColor: "#ef9363", //线颜色 - strokeOpacity: 0.8, //线透明度 - strokeWeight: 2, //线宽 - fillColor: "#ef9363", //填充色 - fillOpacity: 0.3, //填充透明度 - }); - amap.add(polygon) - amap.setFitView(); - } - }) - + const polygon = new Amap.Polygon({ + map: amap, + path: bundler, + strokeColor: "#85b0ec", //线颜色 + strokeOpacity: 0.8, //线透明度 + strokeWeight: 2, //线宽 + fillColor: "#85b0ec", //填充色 + fillOpacity: 0.3, //填充透明度 + }); + amap.add(polygon); + amap.setFitView(); + setmaps(amap); // addMaket(Amap,amap); MapUtl.loadMap = Amap; MapUtl.amap = amap; + + [ + { title: "红桥微型消防站", po: [103.889435, 30.528084] }, + { title: "桃荚微型消防站", po: [103.89066, 30.506378] }, + { title: "文武微型消防站", po: [103.85076, 30.518194] }, + { title: "长沟微型消防站", po: [103.9063, 30.556198] }, + { title: "应天微型消防站", po: [103.90963, 30.530624] }, + { title: "花龙村微型消防站", po: [103.92564, 30.45827] }, + { title: "白塔小型消防站", po: [103.9049, 30.503006] }, + ].forEach((item) => { + MapUtl.addMakerDis({ + lng: item.po[0], + lat: item.po[1], + title: item.title, + }); + }); + var weather = new Amap.Weather(); - MapUtl.wecherInfo = weather + MapUtl.wecherInfo = weather; amap.setFitView(); }; - + return
; } diff --git a/src/components/map/mapUtil.ts b/src/components/map/mapUtil.ts index 3cb8eac..c2842ab 100644 --- a/src/components/map/mapUtil.ts +++ b/src/components/map/mapUtil.ts @@ -1,6 +1,6 @@ interface makersInf { - userIdentity:string, - marker:any + userIdentity: string, + marker: any } class MapUtl { static makerList: makersInf[] = []; @@ -16,8 +16,8 @@ class MapUtl { }); var content = [ "
姓名 :" + users?.user_name + "", - "职位 : " + users.pos_held, - "电话 : " + users.tel, + "职位 : " + users.pos_held, + "电话 : " + users.tel, "
", ]; var infoWindow = new MapUtl.loadMap.InfoWindow({ @@ -31,10 +31,37 @@ class MapUtl { MapUtl.amap?.add(marker); // 将maker添加到数组 MapUtl.makerList.push({ - userIdentity:users.identity, - marker:marker + userIdentity: users.identity, + marker: marker }) } + static addMakerDis(data: any) { + const { lng, lat, title } = data; + const marker = new MapUtl.loadMap.Marker({ + position: new MapUtl.loadMap.LngLat(lng, lat), + icon: new MapUtl.loadMap.Icon({ + image: + "https://img20.360buyimg.com/n1/jfs/t1/98676/8/28819/96905/62e1e96eE69561497/0e201e39d6d1c1e3.png", + imageSize: [30, 30], + }), + title: title, + }); + var content = [ + "
站点名称 :" + title + "", + // "职位 : " + users.pos_held, + // "电话 : " + users.tel, + "
", + ]; + var infoWindow = new MapUtl.loadMap.InfoWindow({ + offset: new MapUtl.loadMap.Pixel(0, -30), + autoMove: true, + content: content.join("
"), + }); + marker.on("click", (e) => { + infoWindow.open(MapUtl.amap, e.target.getPosition()); + }); + MapUtl.amap?.add(marker); + } static setMakericon = (maker) => { maker.setPosition([103.55, 30.342]); var m = MapUtl.amap; @@ -76,8 +103,21 @@ class MapUtl { }); } - static getWecher(){ - + static getWecher() { + + } + // 百度转高德 + static bdConvertGd(coordinate) { + var bd_lng = coordinate[0]; + var bd_lat = coordinate[1]; + var pi = 3.14159265358979324 * 3000.0 / 180.0; + var x = bd_lng - 0.0065; + var y = bd_lat - 0.006; + var z = Math.sqrt(x * x + y * y) - 0.00002 * Math.sin(y * pi); + var theta = Math.atan2(y, x) - 0.000003 * Math.cos(x * pi); + var gd_lng = z * Math.cos(theta); + var gd_lat = z * Math.sin(theta); + return [gd_lng, gd_lat]; } } diff --git a/src/pages/OrgChart.tsx b/src/pages/OrgChart.tsx index 0b9be2c..1269579 100644 --- a/src/pages/OrgChart.tsx +++ b/src/pages/OrgChart.tsx @@ -85,6 +85,7 @@ const OrgChartSelf = (props: Store) => { {v.depId === 1 ? (
{v.users?.map((v1, _) => { + console.log(v1); return (
{ backgroundColor: "#fff", }} width={50} - src="https://pic.aigexing.net/uploads/5/1253/3721116011/92968290915/8785297.jpg" + src={v1.headImg} alt="" /> {v1.user_name} diff --git a/src/pages/home/homeLeft/turn.tsx b/src/pages/home/homeLeft/turn.tsx index b669a39..2def89d 100644 --- a/src/pages/home/homeLeft/turn.tsx +++ b/src/pages/home/homeLeft/turn.tsx @@ -13,6 +13,17 @@ const Turn = (props: Store) => { const [imageUrl, setImageUrl] = useState([]); const [taskId, setTaskId] = useState([]); const [folderId, setFolderId] = useState([]); + const getFileTypeFromUrl = (url) => { + console.log(url); + + if (url === "" || url.length === 0) return; + // 解析URL以提取文件名 + const filename = url.split("/").pop(); + // 获取文件扩展名 + const fileExtension = filename.split(".").pop(); + // 返回文件扩展名 + return fileExtension; + }; const initChart = (data) => { var myChart = echarts.init(document.getElementById("xunlian")); @@ -45,7 +56,67 @@ const Turn = (props: Store) => { setImageList(folderStore.alist ?? []); }); }; + const imageWidget = (item) => { + return ( + { + setImageUrl(item.file_url); + }} + key={item.identity} + style={{ width: "80px", height: "80px" }} + src={item.file_url} + alt="" + /> + ); + }; + const preView = () => { + let fileType = getFileTypeFromUrl(imageUrl); + switch (fileType) { + case "jpeg": + return ; + case "jpg": + return ; + case "png": + return ; + case "pdf": + return ( +
+ + ; +
+ ); + case "mp4": + return ( +
+ +
+ ); + case "docx": + return ( +
+ + ; +
+ ); + case "": + return
; + default: + return
; + } + }; return ( <>
{ {}} onOk={() => {}} @@ -68,12 +139,12 @@ const Turn = (props: Store) => { <> -
+

任务列表

{trainingStore.list?.map((item) => { return (

{

-
+

文件夹列表

{folderList?.map((item) => { return (

{ - setFolderId(item.identity) + setFolderId(item.identity); getAehandler(item.identity); }} > @@ -111,29 +183,78 @@ const Turn = (props: Store) => {

-
+

档案列表

{imageList?.map((item) => { - return ( - { - setImageUrl(item.file_url); - }} - style={{ width: "80px", height: "80px" }} - src={item.file_url} - alt="" - /> - ); + let fileType = getFileTypeFromUrl(item.file_url); + switch (fileType) { + case "png": + return imageWidget(item); + case "jpeg": + return imageWidget(item); + case "jpg": + return imageWidget(item); + case "pdf": + return ( +

{ + setImageUrl(item.file_url); + }} + > + {item.file_name} +

+ ); + case "mp4": + return ( +

{ + setImageUrl(item.file_url); + }} + > + {item.file_name} +

+ ); + case "docx": + return ( +

{ + setImageUrl(item.file_url); + }} + > + {item.file_name} +

+ ); + default: + return ( + { + setImageUrl(item.file_url); + }} + key={item.identity} + style={{ width: "80px" }} + src={item.file_url} + alt="" + /> + ); + } })}
- -
- + +
+ {preView()}
diff --git a/src/pages/org_config.ts b/src/pages/org_config.ts index 35f8bee..0f48f17 100644 --- a/src/pages/org_config.ts +++ b/src/pages/org_config.ts @@ -1,17 +1,22 @@ +const bz = require("@/static/user_head/刘先良.webp") +const jdy = require("@/static/user_head/晏巍.png") export const orgData = [ { dep_name: "镇武装部党委", depId: 1, users: [ - { - position: "武装部长", - user_name: "李部长", - userId: 1, - }, + { position: "教导员", - user_name: "王教导", + user_name: "晏 巍", userId: 2, + headImg:jdy + }, + { + position: "武装部长", + user_name: "刘先良", + userId: 1, + headImg:bz }, ], children: [ @@ -94,7 +99,7 @@ export const orgData = [ users: [ { position: "文武社区支部书记", - user_name: "书记名称", + user_name: "袁建强", userId: 3, }, ], @@ -170,7 +175,7 @@ export const orgData = [ users: [ { position: "花龙村支部书记", - user_name: "书记名称", + user_name: "肖冬", userId: 4, }, ], @@ -235,7 +240,7 @@ export const orgData = [ users: [ { position: "云华社区支部书记", - user_name: "书记名称", + user_name: "黄忠", userId: 5, }, ], diff --git a/src/pages/poverPage/pvTable.tsx b/src/pages/poverPage/pvTable.tsx index f87b09e..12dbf74 100644 --- a/src/pages/poverPage/pvTable.tsx +++ b/src/pages/poverPage/pvTable.tsx @@ -52,7 +52,9 @@ const PvTable = (props: Store) => { {usrStore.list?.map((us,i) => { return ( - { + { usrStore.setUserDetaul(us) usrStore.setPoverDe(true) }}> diff --git a/src/static/user_head/刘先良.webp b/src/static/user_head/刘先良.webp new file mode 100644 index 0000000..62e9789 Binary files /dev/null and b/src/static/user_head/刘先良.webp differ diff --git a/src/static/user_head/晏巍.png b/src/static/user_head/晏巍.png new file mode 100644 index 0000000..cc325fe Binary files /dev/null and b/src/static/user_head/晏巍.png differ diff --git a/src/store/baseStore.ts b/src/store/baseStore.ts index 11ac9a9..edb4eb6 100644 --- a/src/store/baseStore.ts +++ b/src/store/baseStore.ts @@ -44,8 +44,6 @@ class BaseStore implements BaseStoreInterface { } // 分页 setPages(page: Pages) { - console.log(page); - this.page = page this.getlist() } @@ -72,7 +70,6 @@ class BaseStore implements BaseStoreInterface { message.error(res.msg) return false } - this.getlist(listParam) return true; } catch (error) { @@ -83,7 +80,6 @@ class BaseStore implements BaseStoreInterface { // 获取列表 async getlist(params?: any) { this.listStatus = true; - console.log(this.page); try { let res = await baseHttp.get(this.urlConfig.LIST, { size: this.page?.Size ?? 20, diff --git a/src/store/map.ts b/src/store/map.ts new file mode 100644 index 0000000..ded9d76 --- /dev/null +++ b/src/store/map.ts @@ -0,0 +1,1091 @@ +export const mapArrs = [ + ["103.87940594787575", "30.502048008027348"], + ["103.87919975793119", "30.502707648002136"], + ["103.87829097564763", "30.503832552334156"], + ["103.87819288922104", "30.503954431648435"], + ["103.87808879727129", "30.504082304327039"], + ["103.87739417050302", "30.504942439830799"], + ["103.87738215900964", "30.504954425622159"], + ["103.87737315130494", "30.504968413543644"], + ["103.87641425204056", "30.506156190155632"], + ["103.87321104517045", "30.508552321246203"], + ["103.87159629954485", "30.509220394114227"], + ["103.8691314403452", "30.510381247438158"], + ["103.86596349131605", "30.510770247945512"], + ["103.8634821676", "30.51090995633054"], + ["103.85973077322573", "30.511121657406864"], + ["103.85830561661101", "30.511155562650952"], + ["103.85677123059408", "30.511191251965609"], + ["103.85490527562925", "30.510488587170514"], + ["103.85132034614894", "30.509397179408307"], + ["103.84719717119832", "30.508199632150923"], + ["103.84515647413119", "30.508199111273527"], + ["103.84212785300409", "30.508340731317819"], + ["103.83888966279338", "30.50932560586547"], + ["103.83723145973777", "30.509467532051261"], + ["103.83667638437664", "30.509432521384312"], + ["103.83548308414333", "30.508824496226385"], + ["103.83515745483747", "30.508657942050743"], + ["103.83329084294139", "30.507389839421112"], + ["103.82966276134111", "30.506615320422974"], + ["103.82688525861703", "30.506336176195759"], + ["103.82632012380193", "30.50661603048334"], + ["103.82597341025314", "30.507214204100499"], + ["103.82547430843722", "30.509856491556704"], + ["103.82474778415315", "30.511783556625478"], + ["103.82340602160104", "30.514162325573839"], + ["103.82301417459271", "30.515845086155259"], + ["103.8231393241845", "30.518198613864257"], + ["103.82306913438079", "30.519426110900088"], + ["103.82275346282189", "30.520512187595596"], + ["103.82236767520943", "30.521073291598899"], + ["103.82175443985425", "30.521598979864262"], + ["103.82019529535016", "30.523192570735613"], + ["103.81982854945886", "30.523744716048501"], + ["103.81968224497955", "30.524151317117191"], + ["103.81954593791092", "30.52507277840003"], + ["103.81895065538741", "30.527791824769814"], + ["103.81837950324106", "30.52856451990294"], + ["103.81816306108676", "30.528983986291745"], + ["103.81784240817748", "30.529606195997456"], + ["103.8187822297336", "30.530061802200667"], + ["103.81886834633789", "30.531318567296843"], + ["103.81878212444407", "30.532574010301904"], + ["103.81878210584034", "30.533017870575879"], + ["103.81955664914999", "30.532501478804157"], + ["103.82024498801292", "30.532872647744323"], + ["103.82084615209637", "30.533391609371659"], + ["103.8212769815231", "30.533909252227289"], + ["103.8213621223434", "30.534575200355327"], + ["103.82153441617297", "30.535683170636339"], + ["103.82153438520214", "30.536422934060905"], + ["103.82144817840654", "30.537309488502377"], + ["103.82196418322249", "30.537680337636402"], + ["103.82385593311959", "30.53768389273964"], + ["103.8243719295463", "30.538349650047536"], + ["103.82514646239393", "30.538499060358074"], + ["103.82557634485079", "30.537834083622464"], + ["103.82669455172559", "30.538206070469858"], + ["103.82746808662716", "30.538281503354991"], + ["103.82772659700409", "30.538355965723682"], + ["103.82850014866146", "30.537987540251645"], + ["103.82970455479661", "30.537620921384129"], + ["103.8297907403942", "30.537251201750088"], + ["103.83039294066795", "30.537104379608746"], + ["103.83073665425462", "30.536292284031951"], + ["103.83090902040448", "30.535700796200896"], + ["103.83090903269739", "30.535405890642306"], + ["103.83090905736614", "30.534814078595609"], + ["103.83056440908051", "30.534000691046536"], + ["103.83099427464393", "30.533631613953318"], + ["103.83168258817663", "30.533337944595292"], + ["103.83185493895633", "30.533116338029291"], + ["103.83254232270971", "30.532525811865526"], + ["103.83280085431603", "30.532009458241738"], + ["103.83288704303541", "30.531565759186325"], + ["103.83323074451008", "30.53097558648507"], + ["103.83331693298746", "30.530531886670573"], + ["103.83348929743023", "30.529941393802048"], + ["103.83357447689899", "30.529645645394702"], + ["103.83383298613855", "30.529646127006174"], + ["103.8347788275337", "30.530017769223377"], + ["103.83520865315901", "30.530387450634766"], + ["103.83563847811806", "30.530758130100867"], + ["103.83598315048603", "30.53075876706572"], + ["103.83632683539074", "30.530389517410232"], + ["103.83675668277668", "30.530095402150273"], + ["103.83727269340027", "30.529874419838606"], + ["103.83761637091717", "30.52957914272708"], + ["103.83821853623249", "30.529506267451129"], + ["103.8386483598964", "30.529581028724351"], + ["103.83959416056534", "30.529878655221342"], + ["103.84028245178033", "30.53039673794412"], + ["103.84071226871792", "30.530397512680832"], + ["103.841056921716", "30.530398132356538"], + ["103.84131441154258", "30.530324617284386"], + ["103.84174422554639", "30.53025240977275"], + ["103.84200272075569", "30.530030941097568"], + ["103.84234637200491", "30.529883600177975"], + ["103.84303465871351", "30.529884822170615"], + ["103.84329213810625", "30.529885277680858"], + ["103.84449637267636", "30.529739442316988"], + ["103.8451836557097", "30.529222803904311"], + ["103.8453559702327", "30.529223103551981"], + ["103.84595806670906", "30.529224147010467"], + ["103.84681762474878", "30.529152649703466"], + ["103.84716224105728", "30.529226216745439"], + ["103.8482792327969", "30.52922811525066"], + ["103.84879514429237", "30.529228984883162"], + ["103.84956948475988", "30.529674142328258"], + ["103.84956948170215", "30.52974811921159"], + ["103.85047203137366", "30.530193477162847"], + ["103.85072949354677", "30.529751040065179"], + ["103.85085872946806", "30.529418356849526"], + ["103.85158996188328", "30.529863413976514"], + ["103.85232018989663", "30.530086528787482"], + ["103.85270682760704", "30.530383057931935"], + ["103.85330882146499", "30.530678928837904"], + ["103.85378159723867", "30.530864621515814"], + ["103.85438257305594", "30.531161476510359"], + ["103.85395483608475", "30.531986542926607"], + ["103.85395480712515", "30.532688320918592"], + ["103.85386964747008", "30.533169034101107"], + ["103.85361119849365", "30.533685461039646"], + ["103.85331068357209", "30.534091853810338"], + ["103.8530091671371", "30.534424266742992"], + ["103.85331065612998", "30.5347566419352"], + ["103.85339678727142", "30.535052685588109"], + ["103.85343884473131", "30.535348657996845"], + ["103.85352497713481", "30.535607711918374"], + ["103.85361110850106", "30.535865766330627"], + ["103.85361109934044", "30.536087695994674"], + ["103.85356801003481", "30.536531485267126"], + ["103.85348185027732", "30.536937218261244"], + ["103.85343876388897", "30.537307031097214"], + ["103.85339667894327", "30.537676845490722"], + ["103.8535679551505", "30.537861059361408"], + ["103.85374023298696", "30.538046273159178"], + ["103.85395457987813", "30.538194564436491"], + ["103.85421299773709", "30.538379912592216"], + ["103.85447041005798", "30.538602245950006"], + ["103.85477188587033", "30.538971598427068"], + ["103.85490108748564", "30.539193728950099"], + ["103.85528770549335", "30.539379270218209"], + ["103.85545797059778", "30.5396024618816"], + ["103.85554409108424", "30.540045452036548"], + ["103.85575842215067", "30.540341686945382"], + ["103.85563020280981", "30.5406743810851"], + ["103.85549998012954", "30.541008072134769"], + ["103.85541482991923", "30.541339832725281"], + ["103.85571530771074", "30.541451260686564"], + ["103.85597371620599", "30.541562621893892"], + ["103.85636033049612", "30.541600201874232"], + ["103.85666079626665", "30.541822587153352"], + ["103.85678998912056", "30.54208169910104"], + ["103.85739193037536", "30.542119595533741"], + ["103.85803592882456", "30.542120557964701"], + ["103.85829431813407", "30.542304881351551"], + ["103.85855270553324", "30.542490202787722"], + ["103.85881009126939", "30.542637533748138"], + ["103.85902541012115", "30.542822789013929"], + ["103.85945505165981", "30.542971366101323"], + ["103.8595842314148", "30.543304444628962"], + ["103.85971341373401", "30.543563546904519"], + ["103.86005691739568", "30.54374798193011"], + ["103.86040041297966", "30.544044377296117"], + ["103.86078797505867", "30.544192879958633"], + ["103.86104634521011", "30.544342196480091"], + ["103.86134777312706", "30.54456454750164"], + ["103.86164820159188", "30.544675931387285"], + ["103.86216393279072", "30.544787610642306"], + ["103.86250841528427", "30.544899048112395"], + ["103.86298106698354", "30.545157608627068"], + ["103.86323841694968", "30.54534289653413"], + ["103.8636259459326", "30.545492368967459"], + ["103.86396941039008", "30.545603791850716"], + ["103.86431287041084", "30.545752198441701"], + ["103.86470038749266", "30.545863671301468"], + ["103.86504384233884", "30.545938095370733"], + ["103.86543034955422", "30.546012571503478"], + ["103.86590296697038", "30.54601317752163"], + ["103.86654779825081", "30.545977005923724"], + ["103.86689122873526", "30.546124387623657"], + ["103.8673638180469", "30.546235936405399"], + ["103.8680516594949", "30.546458703412057"], + ["103.86839506737897", "30.546718032103485"], + ["103.86878252490935", "30.546940421325555"], + ["103.86912592693278", "30.547124766871818"], + ["103.86951237482499", "30.547310157773197"], + ["103.86989882124018", "30.547421569111847"], + ["103.87032930962252", "30.547570013744085"], + ["103.87067269530699", "30.547681366903895"], + ["103.87097302732994", "30.547829655078644"], + ["103.8714885911827", "30.548014166548185"], + ["103.87209024412199", "30.548051811321358"], + ["103.87234851548413", "30.548200040603739"], + ["103.8728210076861", "30.548385482428095"], + ["103.87312131743154", "30.548459774574599"], + ["103.8734216261101", "30.548497075290612"], + ["103.87376598145761", "30.548386467046448"], + ["103.87423845222628", "30.548461923209146"], + ["103.87436756945237", "30.548720967601124"], + ["103.87466886187573", "30.548795244689501"], + ["103.87492610717749", "30.548906462592726"], + ["103.87514130978042", "30.549017636948548"], + ["103.87552767156347", "30.549164963387707"], + ["103.87574186732887", "30.549276132727609"], + ["103.87595705834606", "30.549498264351659"], + ["103.87621529200962", "30.549609471537615"], + ["103.87655859076185", "30.549905694388993"], + ["103.87694492737256", "30.550126977002147"], + ["103.87737129261485", "30.550331295604511"], + ["103.87724215919512", "30.550848006805449"], + ["103.87698490675045", "30.551475562832223"], + ["103.8769848961316", "30.551734476035065"], + ["103.87737429092235", "30.550423267606778"], + ["103.87767553701777", "30.550756425939689"], + ["103.87784665670009", "30.551384367443422"], + ["103.87840510727985", "30.551791718802594"], + ["103.87896355699418", "30.551902158226557"], + ["103.87917671350586", "30.552216231897834"], + ["103.8793928874621", "30.552124442499913"], + ["103.87956501599896", "30.552272534572776"], + ["103.87982220798814", "30.552420694422185"], + ["103.87999433944722", "30.552420833464733"], + ["103.8803806271694", "30.552458128967931"], + ["103.88054774639708", "30.552544231754535"], + ["103.88081093314676", "30.552680391620822"], + ["103.88111114015558", "30.552864559837264"], + ["103.88136831506672", "30.553012705398618"], + ["103.88158345531818", "30.55323479202411"], + ["103.88179859658612", "30.553382901438013"], + ["103.88244200795026", "30.553789230919843"], + ["103.88300033932026", "30.554418410369919"], + ["103.88360168093959", "30.555083594772452"], + ["103.88377375979751", "30.555674508507941"], + ["103.88510451143431", "30.555601379257951"], + ["103.88643517376683", "30.555750104834686"], + ["103.88731455208969", "30.556207423555449"], + ["103.88789278188729", "30.556507616229297"], + ["103.8881508708949", "30.556840630256705"], + ["103.88858003394019", "30.556877823720477"], + ["103.88935330227254", "30.55702612442235"], + ["103.89034060937072", "30.557063525328466"], + ["103.89102679404864", "30.557137762864492"], + ["103.8918429846096", "30.557212025558016"], + ["103.89393131863136", "30.557579510196689"], + ["103.89502439687422", "30.558059592325904"], + ["103.89530340835726", "30.558151615053927"], + ["103.89562541950049", "30.558207654450609"], + ["103.89575439903651", "30.558798474634646"], + ["103.895389356598", "30.559519163467314"], + ["103.89504632310631", "30.559887970456678"], + ["103.89573335163043", "30.559944079073432"], + ["103.89641936612787", "30.55977724340865"], + ["103.89721334102356", "30.559870309954437"], + ["103.89802928870895", "30.559851389260853"], + ["103.89811425642475", "30.560443192055502"], + ["103.8980502345925", "30.561125952774418"], + ["103.8997220273742", "30.560876096141488"], + ["103.90015195207161", "30.560802117036999"], + ["103.90058087083176", "30.560654154771566"], + ["103.90096678681533", "30.560580161796686"], + ["103.90135269977745", "30.560395199748768"], + ["103.9016106361249", "30.560321204695661"], + ["103.90195354604876", "30.56021021094848"], + ["103.90225345934708", "30.560173191501832"], + ["103.90255437296383", "30.560026205659046"], + ["103.90285427705327", "30.559989178149799"], + ["103.9031551814616", "30.559841184883624"], + ["103.90341209823642", "30.559656207878881"], + ["103.90371299100885", "30.559582181027558"], + ["103.90401288031613", "30.559471163423257"], + ["103.90431276286814", "30.559434117001363"], + ["103.90465662619789", "30.559287093706303"], + ["103.90499948016664", "30.559213040759541"], + ["103.90508544679575", "30.559102058564864"], + ["103.90542829559907", "30.558991011839055"], + ["103.90568618016081", "30.558842994645179"], + ["103.9060290122675", "30.558879888474841"], + ["103.90624391094802", "30.558731877506947"], + ["103.90650078381788", "30.558620838756152"], + ["103.90680163019682", "30.558509783795301"], + ["103.90701552096527", "30.558362764974557"], + ["103.90727338132302", "30.5582887046621"], + ["103.90761619132772", "30.558177624055176"], + ["103.9078310693105", "30.558103572266496"], + ["103.90804494325661", "30.558066506165691"], + ["103.90830279225858", "30.557955446184202"], + ["103.90860260739419", "30.557918342236448"], + ["103.9089024248232", "30.557733284006716"], + ["103.90911728755269", "30.557659219404034"], + ["103.9094170954009", "30.557512141261682"], + ["103.90984680723186", "30.557400988075781"], + ["103.91023253894808", "30.557326834947034"], + ["103.91057529925688", "30.557141734117934"], + ["103.91096102088819", "30.556956605976477"], + ["103.91121882683564", "30.556919486576835"], + ["103.91160453339283", "30.556808321958695"], + ["103.91190430150451", "30.556661210291544"], + ["103.91225002609997", "30.556546057835671"], + ["103.91243887368485", "30.556475974253836"], + ["103.91254978354182", "30.556434924440079"], + ["103.91289349838584", "30.556323761654241"], + ["103.91315028091002", "30.556249633429829"], + ["103.91336510153666", "30.556064565469072"], + ["103.91362187770268", "30.555991431468268"], + ["103.91387964787452", "30.555954281437693"], + ["103.91409345534376", "30.555917157596429"], + ["103.91435122221101", "30.555806026841015"], + ["103.91465094528087", "30.555731852478388"], + ["103.91507954011351", "30.555620598476924"], + ["103.91542321112539", "30.555472409177071"], + ["103.91563700594084", "30.555324306845066"], + ["103.91598066544782", "30.555213096268531"], + ["103.91628036301647", "30.555139899276305"], + ["103.91666596384756", "30.555102621626791"], + ["103.91705256025125", "30.554954373408517"], + ["103.91735224721135", "30.554732212752299"], + ["103.91769487730205", "30.554620976426527"], + ["103.9180384969541", "30.554583707809545"], + ["103.91833816309325", "30.554472496725086"], + ["103.91855292111728", "30.554398340990385"], + ["103.91885257862653", "30.554324110204192"], + ["103.91915223205702", "30.554213886982822"], + ["103.91945287888029", "30.554139647084622"], + ["103.91983842070115", "30.55399135122752"], + ["103.91919722495702", "30.553102222614232"], + ["103.92149441597658", "30.552138414366105"], + ["103.92168718921538", "30.551547422759189"], + ["103.92121582270509", "30.551012062739598"], + ["103.92068052392804", "30.55049574635143"], + ["103.91995145743554", "30.549757668537257"], + ["103.91956594517514", "30.549241188189487"], + ["103.91918043966594", "30.548372817972581"], + ["103.91877298765597", "30.546618751559162"], + ["103.91763930472401", "30.54571399278429"], + ["103.91783210418114", "30.545399939501785"], + ["103.91808883523508", "30.544992862781076"], + ["103.91826066009888", "30.544530871491144"], + ["103.91847543191433", "30.544142819078878"], + ["103.9187321557561", "30.543680751784279"], + ["103.91905380426577", "30.54312565596117"], + ["103.91920364370253", "30.542737651380097"], + ["103.91918268217418", "30.542405777966774"], + ["103.91907481978504", "30.542146957208111"], + ["103.91894697698741", "30.541962127675777"], + ["103.91860338486735", "30.541722500438567"], + ["103.91838963517185", "30.541574729316523"], + ["103.91802505745365", "30.541316116691206"], + ["103.91772540079265", "30.541076439437312"], + ["103.91703916174393", "30.540689110381283"], + ["103.91663160511213", "30.540375525489299"], + ["103.91637488810638", "30.539987845040837"], + ["103.91594634703961", "30.539470329443585"], + ["103.91543187496578", "30.539119812139148"], + ["103.91515315740597", "30.538880084736771"], + ["103.91478851973199", "30.538584430110049"], + ["103.91446683090267", "30.538381710376239"], + ["103.91414513974999", "30.538104010870054"], + ["103.91388837652538", "30.538031199020082"], + ["103.91375949192378", "30.538049275047694"], + ["103.91345975636857", "30.538086450119067"], + ["103.91320197746046", "30.538197572564481"], + ["103.91307308443123", "30.538308614181023"], + ["103.91236567278197", "30.538493967441877"], + ["103.91187307471225", "30.538438260064797"], + ["103.91159429466508", "30.538438410345378"], + ["103.91127254554384", "30.538420585135089"], + ["103.91092880309506", "30.538494736394821"], + ["103.91082187672559", "30.538641742732896"], + ["103.91082186762796", "30.538863670938127"], + ["103.9108438441699", "30.539030606598121"], + ["103.91077888609988", "30.539177590864377"], + ["103.91043613554926", "30.539233740774058"], + ["103.91024326918787", "30.5393447967929"], + ["103.91009337499096", "30.53936286109009"], + ["103.90957873059151", "30.539363094389376"], + ["103.90921397631175", "30.539326264199506"], + ["103.90884921584932", "30.539271433881925"], + ["103.90865633737371", "30.539289506005357"], + ["103.90863534916544", "30.539326502710754"], + ["103.90848444244875", "30.539363550735818"], + ["103.90812166185107", "30.539424669998382"], + ["103.90799274381688", "30.53931375399587"], + ["103.90758598685829", "30.539202936616494"], + ["103.90724218911561", "30.539018114487558"], + ["103.90681342742188", "30.53890829010561"], + ["103.90662052480731", "30.539018314962348"], + ["103.90632067196736", "30.539222340142878"], + ["103.90606280720513", "30.539092456125104"], + ["103.90556905125098", "30.538945638537829"], + ["103.90479740703036", "30.538760886683853"], + ["103.90460449264465", "30.538667958919799"], + ["103.9043845877321", "30.53857303713713"], + ["103.90421865820493", "30.538502093385819"], + ["103.90383182198663", "30.538206263490235"], + ["103.90374686284088", "30.537985349976054"], + ["103.90327504171984", "30.537818483677867"], + ["103.90248131729768", "30.537522690824211"], + ["103.90132266772427", "30.536950987798615"], + ["103.9006148437733", "30.536710104935096"], + ["103.90027092066451", "30.536581158235293"], + ["103.90003496932535", "30.536507186561884"], + ["103.89945607982196", "30.536248271621222"], + ["103.89889817375381", "30.535934359791305"], + ["103.89836224558182", "30.535694411898241"], + ["103.89789229723803", "30.535494444111947"], + ["103.89782731035214", "30.535290503425049"], + ["103.89767733351664", "30.534995585227367"], + ["103.89742035720155", "30.534810620677476"], + ["103.89688338206074", "30.534754579398481"], + ["103.89669037886038", "30.534939496011894"], + ["103.89641138879222", "30.534791505162509"], + ["103.89645440100081", "30.534477611010409"], + ["103.89647542266518", "30.533941784229896"], + ["103.8964544342555", "30.533664869536633"], + ["103.89643344508757", "30.533405948494622"], + ["103.89645445998327", "30.533036068354875"], + ["103.89651847191558", "30.532741171055296"], + ["103.89656147861858", "30.532556235336024"], + ["103.89660449218144", "30.532223345765264"], + ["103.89662650065347", "30.532001419309751"], + ["103.89662651198297", "30.531724506121108"], + ["103.8966475334659", "30.531188678001005"], + ["103.89664754405887", "30.530929759631121"], + ["103.89664755387467", "30.530689835018475"], + ["103.89669057310292", "30.530191996599331"], + ["103.89711956953947", "30.529970118471855"], + ["103.89744156228434", "30.529767215603343"], + ["103.89784954425099", "30.529526326817965"], + ["103.89812753122513", "30.529267428685419"], + ["103.89814954039542", "30.529009510261325"], + ["103.89812755613252", "30.528658618533068"], + ["103.89808557068369", "30.528399696854596"], + ["103.89793459305125", "30.528177754658575"], + ["103.89763462312537", "30.527974793240521"], + ["103.89726965108372", "30.527807809765743"], + ["103.89726968130519", "30.527069039624461"], + ["103.89729070587501", "30.526441236603603"], + ["103.89750571764245", "30.525867435710243"], + ["103.89752673742507", "30.525350597963509"], + ["103.89750576749007", "30.524648812179681"], + ["103.89739879772321", "30.524056984702945"], + ["103.89729083059373", "30.523392177750971"], + ["103.89709785943494", "30.522911304585506"], + ["103.89703388259076", "30.522393455524519"], + ["103.89684090286788", "30.522061534094409"], + ["103.89677591481349", "30.521802604920978"], + ["103.89677592691569", "30.521506695861522"], + ["103.89679794276131", "30.521099822538535"], + ["103.89638997571051", "30.520452964659363"], + ["103.89630398626046", "30.520195030640668"], + ["103.89623999781189", "30.519899111391172"], + ["103.8961970131145", "30.519529216504299"], + ["103.89615402149802", "30.519326272036491"], + ["103.89606803259474", "30.519030348357902"], + ["103.89594004806779", "30.518605456110947"], + ["103.89585406352641", "30.518180570445569"], + ["103.89570407575637", "30.517792661838019"], + ["103.89563908101077", "30.517607706386368"], + ["103.89546808863234", "30.517274776132126"], + ["103.89536010133624", "30.516849883656644"], + ["103.89516711002105", "30.516387985923725"], + ["103.89514612555817", "30.515981103881359"], + ["103.895382159516", "30.515445308732584"], + ["103.89555318527994", "30.515001473124393"], + ["103.89594021055618", "30.514631649545418"], + ["103.89611121934212", "30.514465726191929"], + ["103.89634822907125", "30.514242827639833"], + ["103.89669124049033", "30.513873984702936"], + ["103.89703524740328", "30.513467147378073"], + ["103.89742124987336", "30.512986331852641"], + ["103.89746427274822", "30.512358521544801"], + ["103.89755028895409", "30.511840683452146"], + ["103.89750730615698", "30.51147078830186"], + ["103.89746432412471", "30.511101892722031"], + ["103.89720636643888", "30.510399073755693"], + ["103.89694939161707", "30.510029152959763"], + ["103.89634844061801", "30.509068355848253"], + ["103.89591946038345", "30.508513451870847"], + ["103.89561847485297", "30.507959562938229"], + ["103.89527548448952", "30.50736767205256"], + ["103.89510449655428", "30.50685078944344"], + ["103.89497550983785", "30.506332913773644"], + ["103.89458949933153", "30.505888960619778"], + ["103.89450350227446", "30.505630016548608"], + ["103.89420248971787", "30.505224064577344"], + ["103.89398847532188", "30.505002077119499"], + ["103.89385947549809", "30.504632151736224"], + ["103.89351644343898", "30.504336148600839"], + ["103.89321540824425", "30.504151120057067"], + ["103.89304439853711", "30.503745188544258"], + ["103.89278636264763", "30.503560166326285"], + ["103.89248631831109", "30.503338139353939"], + ["103.89218526869772", "30.503116108498048"], + ["103.89192822151641", "30.50296806711404"], + ["103.89137010216847", "30.502782927942388"], + ["103.89059692373023", "30.502265788527549"], + ["103.88999676228373", "30.50193264376253"], + ["103.8895246247031", "30.501636528659674"], + ["103.88930955748513", "30.501525466745647"], + ["103.88918052263737", "30.501303472913794"], + ["103.88918052868475", "30.501155514843909"], + ["103.88913752536654", "30.500859579521883"], + ["103.88883741971922", "30.500859443362444"], + ["103.88849429615762", "30.500785304586763"], + ["103.88823620069114", "30.500711202288237"], + ["103.88802112799539", "30.500416180920258"], + ["103.88793611924207", "30.499787316798383"], + ["103.88827927140915", "30.49938060024682"], + ["103.88883748619803", "30.499232905081179"], + ["103.88926662997667", "30.499381056842111"], + ["103.88969578563118", "30.499048337396573"], + ["103.88943572166019", "30.498530371199788"], + ["103.8868727213073", "30.498410155309852"], + ["103.88650355710091", "30.498267994029927"], + ["103.88504184574951", "30.497706299444307"], + ["103.88345297897334", "30.496721554653291"], + ["103.88236829718235", "30.496649820927153"], + ["103.88176388682275", "30.496830330787574"], + ["103.881744873437", "30.496834315974123"], + ["103.88173186389925", "30.496840304430027"], + ["103.88167282324832", "30.496858255692803"], + ["103.88161278103377", "30.49687620607483"], + ["103.88158376128068", "30.496885181959509"], + ["103.88155474063289", "30.49689315800337"], + ["103.88151070925208", "30.496907121635342"], + ["103.88147568531831", "30.496917091940119"], + ["103.88130956688904", "30.496966953424185"], + ["103.88071010135647", "30.497883235799378"], + ["103.87940594787575", "30.502048008027348"], + ["103.92982628759761", "30.467981439142505"], + ["103.92948390444847", "30.467242083139659"], + ["103.9288839455871", "30.46657704134239"], + ["103.92807033075974", "30.465616329091254"], + ["103.92716983594143", "30.464285786450926"], + ["103.92648495493117", "30.463251874890251"], + ["103.92618446781101", "30.462068525363001"], + ["103.92554246944471", "30.461477423852468"], + ["103.9253707571963", "30.460737803994018"], + ["103.92532784909081", "30.460072016034491"], + ["103.9253278688337", "30.459591133151573"], + ["103.9252849718838", "30.45862941585888"], + ["103.92528499314388", "30.458111541687792"], + ["103.92541382918638", "30.45740956301848"], + ["103.92562853822223", "30.456632501441828"], + ["103.92592810999028", "30.456003302281633"], + ["103.92635646523361", "30.455669874251544"], + ["103.92699946824411", "30.455484140952649"], + ["103.92789901836605", "30.455704970590272"], + ["103.92862780698432", "30.456036959222452"], + ["103.92892729609511", "30.456295507015898"], + ["103.92952727813237", "30.456368697408728"], + ["103.93008432313992", "30.456293965773025"], + ["103.93089789142729", "30.456403821025869"], + ["103.93175435785029", "30.456291639534157"], + ["103.93201190572437", "30.455884368271761"], + ["103.93202189652906", "30.455643411794945"], + ["103.93202191175814", "30.455273500097817"], + ["103.93219260843108", "30.455051306692681"], + ["103.93240722048445", "30.454866039383116"], + ["103.93257791761181", "30.454532869514406"], + ["103.93257792675138", "30.454310922232803"], + ["103.93253501894651", "30.454015055993246"], + ["103.93253503870689", "30.453535170107155"], + ["103.93270673426099", "30.45316500578215"], + ["103.93283550596897", "30.452868886523774"], + ["103.93283551510915", "30.452646938960058"], + ["103.93262093343471", "30.45220335996914"], + ["103.93253511181724", "30.451759589703983"], + ["103.93253513009411", "30.451315694676058"], + ["103.93274974618461", "30.450945466538091"], + ["103.93274977512498", "30.450242631869575"], + ["103.93305024230544", "30.449502360742837"], + ["103.93322094261099", "30.448984227618112"], + ["103.93347847422338", "30.448502954461681"], + ["103.93386375779752", "30.448021484651363"], + ["103.93437777798449", "30.447687775806646"], + ["103.93497761274224", "30.447464896728469"], + ["103.93484890378701", "30.446540311592287"], + ["103.93506350652306", "30.445911120917586"], + ["103.93502062371223", "30.445134366222582"], + ["103.93536296454525", "30.444652937530481"], + ["103.93536298436821", "30.444172047982295"], + ["103.93510650144235", "30.443987493820245"], + ["103.9347202787642", "30.443581189998248"], + ["103.93442087945942", "30.443211737202535"], + ["103.93459255629466", "30.442915539344554"], + ["103.9350207304303", "30.44254495666663"], + ["103.93544889119444", "30.442285341286251"], + ["103.93587704534339", "30.441951734083585"], + ["103.93579124396223", "30.441323013287718"], + ["103.9358770880459", "30.440915968293677"], + ["103.93626231355283", "30.440767380825491"], + ["103.93630524504131", "30.440323411069606"], + ["103.93613461425059", "30.439768811871094"], + ["103.93604881481663", "30.439140090504583"], + ["103.9363911312669", "30.438843603519118"], + ["103.936648625267", "30.438325299482244"], + ["103.93630535181251", "30.437733989371761"], + ["103.93630536401426", "30.43743805555745"], + ["103.93639120295667", "30.437104990168738"], + ["103.93669160541901", "30.436660598451979"], + ["103.93677644654846", "30.436290541757383"], + ["103.93673354347233", "30.43606866109214"], + ["103.93639125939012", "30.435736292402073"], + ["103.93639127159163", "30.435440357369838"], + ["103.93690522821379", "30.435143582483931"], + ["103.93729043957491", "30.434884002987083"], + ["103.93780437376562", "30.434624201397153"], + ["103.93797603066309", "30.434143017355463"], + ["103.93767668072604", "30.433699617765832"], + ["103.93729050518584", "30.433293350406469"], + ["103.9369482337831", "30.432850012760333"], + ["103.93694824598691", "30.432554077434197"], + ["103.93703408694526", "30.432109032195562"], + ["103.93681954241424", "30.431813448937465"], + ["103.93643434837354", "30.431444157792509"], + ["103.93639146226388", "30.430815363296933"], + ["103.93656312449831", "30.430482155549974"], + ["103.93613501992478", "30.429927969167942"], + ["103.93579172580714", "30.429632583820897"], + ["103.93562108862977", "30.429151958893687"], + ["103.93570594475084", "30.428522958095684"], + ["103.9353636292318", "30.428523501597716"], + ["103.93455023478728", "30.428487780799649"], + ["103.93356513512872", "30.428489284125657"], + ["103.93266482253267", "30.428675583286431"], + ["103.9325799737656", "30.428823675668141"], + ["103.93262288697301", "30.429008573868281"], + ["103.93227951935606", "30.429083058745224"], + ["103.93176545618451", "30.429157783107918"], + ["103.93129430516294", "30.42919544331923"], + ["103.93073729629478", "30.429196221473966"], + ["103.92996664293931", "30.429197276123432"], + ["103.92919496406975", "30.429124322443602"], + ["103.92838132480269", "30.429051396789188"], + ["103.92774137313941", "30.428982224078002"], + ["103.927572638916", "30.42913240317937"], + ["103.92574146839472", "30.42984746244414"], + ["103.92462009862469", "30.430738552801625"], + ["103.92395700846227", "30.43186004274099"], + ["103.92368235570289", "30.432873120236845"], + ["103.92295031411437", "30.434332578364209"], + ["103.92240799395007", "30.435737829713382"], + ["103.92198144891331", "30.438496649982572"], + ["103.9212413426517", "30.440237989019028"], + ["103.92018062104721", "30.441579688326399"], + ["103.9186014388668", "30.443032756595549"], + ["103.91722093229197", "30.444033658456497"], + ["103.91520990501878", "30.446138667256943"], + ["103.91358934128634", "30.447834343987285"], + ["103.91187272034158", "30.449452970264218"], + ["103.9106216337251", "30.450511369032927"], + ["103.90898171867278", "30.451622848908375"], + ["103.90714278227388", "30.452564313099199"], + ["103.90712774433047", "30.453694049832354"], + ["103.90806608699141", "30.456579029394597"], + ["103.91044534554268", "30.460701014216902"], + ["103.91056023714587", "30.461302811394805"], + ["103.91175721971624", "30.463941546569892"], + ["103.91397911148252", "30.469329885423225"], + ["103.91398006585099", "30.470418608783056"], + ["103.91355439549176", "30.47168655418848"], + ["103.91264311969796", "30.473166722224263"], + ["103.91098536795009", "30.474855186933127"], + ["103.90947437561674", "30.476511468497335"], + ["103.90862385907708", "30.478236373356385"], + ["103.90742637513102", "30.483095533726374"], + ["103.90687054398325", "30.486474811323962"], + ["103.9059858979719", "30.488939407439215"], + ["103.90401567188829", "30.491262235822571"], + ["103.89681896352407", "30.496119126060574"], + ["103.89545691563836", "30.497037659504368"], + ["103.89288759341373", "30.498339681970617"], + ["103.89137727446236", "30.498622113457028"], + ["103.88943572166019", "30.498530371199788"], + ["103.88969578563118", "30.499048337396573"], + ["103.88926662997667", "30.499381056842111"], + ["103.88883748619803", "30.499232905081179"], + ["103.88827927140915", "30.49938060024682"], + ["103.88793611924207", "30.499787316798383"], + ["103.88802112799539", "30.500416180920258"], + ["103.88823620069114", "30.500711202288237"], + ["103.88849429615762", "30.500785304586763"], + ["103.88883741971922", "30.500859443362444"], + ["103.88913752536654", "30.500859579521883"], + ["103.88918052868475", "30.501155514843909"], + ["103.88918052263737", "30.501303472913794"], + ["103.88930955748513", "30.501525466745647"], + ["103.8895246247031", "30.501636528659674"], + ["103.88999676228373", "30.50193264376253"], + ["103.89059692373023", "30.502265788527549"], + ["103.89137010216847", "30.502782927942388"], + ["103.89192822151641", "30.50296806711404"], + ["103.89218526869772", "30.503116108498048"], + ["103.89248631831109", "30.503338139353939"], + ["103.89278636264763", "30.503560166326285"], + ["103.89304439853711", "30.503745188544258"], + ["103.89321540824425", "30.504151120057067"], + ["103.89351644343898", "30.504336148600839"], + ["103.89385947549809", "30.504632151736224"], + ["103.89398847532188", "30.505002077119499"], + ["103.89420248971787", "30.505224064577344"], + ["103.89450350227446", "30.505630016548608"], + ["103.89458949933153", "30.505888960619778"], + ["103.89497550983785", "30.506332913773644"], + ["103.89510449655428", "30.50685078944344"], + ["103.89527548448952", "30.50736767205256"], + ["103.89561847485297", "30.507959562938229"], + ["103.89591946038345", "30.508513451870847"], + ["103.89634844061801", "30.509068355848253"], + ["103.89694939161707", "30.510029152959763"], + ["103.89720636643888", "30.510399073755693"], + ["103.89746432412471", "30.511101892722031"], + ["103.89750730615698", "30.51147078830186"], + ["103.89755028895409", "30.511840683452146"], + ["103.89746427274822", "30.512358521544801"], + ["103.89742124987336", "30.512986331852641"], + ["103.89703524740328", "30.513467147378073"], + ["103.89669124049033", "30.513873984702936"], + ["103.89634822907125", "30.514242827639833"], + ["103.89611121934212", "30.514465726191929"], + ["103.89594021055618", "30.514631649545418"], + ["103.89555318527994", "30.515001473124393"], + ["103.895382159516", "30.515445308732584"], + ["103.89514612555817", "30.515981103881359"], + ["103.89516711002105", "30.516387985923725"], + ["103.89536010133624", "30.516849883656644"], + ["103.89546808863234", "30.517274776132126"], + ["103.89563908101077", "30.517607706386368"], + ["103.89570407575637", "30.517792661838019"], + ["103.89585406352641", "30.518180570445569"], + ["103.89594004806779", "30.518605456110947"], + ["103.89606803259474", "30.519030348357902"], + ["103.89615402149802", "30.519326272036491"], + ["103.8961970131145", "30.519529216504299"], + ["103.89623999781189", "30.519899111391172"], + ["103.89630398626046", "30.520195030640668"], + ["103.89638997571051", "30.520452964659363"], + ["103.89679794276131", "30.521099822538535"], + ["103.89677592691569", "30.521506695861522"], + ["103.89677591481349", "30.521802604920978"], + ["103.89684090286788", "30.522061534094409"], + ["103.89703388259076", "30.522393455524519"], + ["103.89709785943494", "30.522911304585506"], + ["103.89729083059373", "30.523392177750971"], + ["103.89739879772321", "30.524056984702945"], + ["103.89750576749007", "30.524648812179681"], + ["103.89752673742507", "30.525350597963509"], + ["103.89750571764245", "30.525867435710243"], + ["103.89729070587501", "30.526441236603603"], + ["103.89726968130519", "30.527069039624461"], + ["103.89726965108372", "30.527807809765743"], + ["103.89763462312537", "30.527974793240521"], + ["103.89793459305125", "30.528177754658575"], + ["103.89808557068369", "30.528399696854596"], + ["103.89812755613252", "30.528658618533068"], + ["103.89814954039542", "30.529009510261325"], + ["103.89812753122513", "30.529267428685419"], + ["103.89784954425099", "30.529526326817965"], + ["103.89744156228434", "30.529767215603343"], + ["103.89711956953947", "30.529970118471855"], + ["103.89669057310292", "30.530191996599331"], + ["103.89664755387467", "30.530689835018475"], + ["103.89664754405887", "30.530929759631121"], + ["103.8966475334659", "30.531188678001005"], + ["103.89662651198297", "30.531724506121108"], + ["103.89662650065347", "30.532001419309751"], + ["103.89660449218144", "30.532223345765264"], + ["103.89656147861858", "30.532556235336024"], + ["103.89651847191558", "30.532741171055296"], + ["103.89645445998327", "30.533036068354875"], + ["103.89643344508757", "30.533405948494622"], + ["103.8964544342555", "30.533664869536633"], + ["103.89647542266518", "30.533941784229896"], + ["103.89645440100081", "30.534477611010409"], + ["103.89641138879222", "30.534791505162509"], + ["103.89669037886038", "30.534939496011894"], + ["103.89688338206074", "30.534754579398481"], + ["103.89742035720155", "30.534810620677476"], + ["103.89767733351664", "30.534995585227367"], + ["103.89782731035214", "30.535290503425049"], + ["103.89789229723803", "30.535494444111947"], + ["103.89836224558182", "30.535694411898241"], + ["103.89889817375381", "30.535934359791305"], + ["103.89945607982196", "30.536248271621222"], + ["103.90003496932535", "30.536507186561884"], + ["103.90027092066451", "30.536581158235293"], + ["103.9006148437733", "30.536710104935096"], + ["103.90132266772427", "30.536950987798615"], + ["103.90248131729768", "30.537522690824211"], + ["103.90327504171984", "30.537818483677867"], + ["103.90374686284088", "30.537985349976054"], + ["103.90383182198663", "30.538206263490235"], + ["103.90421865820493", "30.538502093385819"], + ["103.9043845877321", "30.53857303713713"], + ["103.90460449264465", "30.538667958919799"], + ["103.90479740703036", "30.538760886683853"], + ["103.90556905125098", "30.538945638537829"], + ["103.90606280720513", "30.539092456125104"], + ["103.90632067196736", "30.539222340142878"], + ["103.90662052480731", "30.539018314962348"], + ["103.90681342742188", "30.53890829010561"], + ["103.90724218911561", "30.539018114487558"], + ["103.90758598685829", "30.539202936616494"], + ["103.90799274381688", "30.53931375399587"], + ["103.90812166185107", "30.539424669998382"], + ["103.90848444244875", "30.539363550735818"], + ["103.90863534916544", "30.539326502710754"], + ["103.90865633737371", "30.539289506005357"], + ["103.90884921584932", "30.539271433881925"], + ["103.90921397631175", "30.539326264199506"], + ["103.90957873059151", "30.539363094389376"], + ["103.91009337499096", "30.53936286109009"], + ["103.91024326918787", "30.5393447967929"], + ["103.91043613554926", "30.539233740774058"], + ["103.91077888609988", "30.539177590864377"], + ["103.9108438441699", "30.539030606598121"], + ["103.91082186762796", "30.538863670938127"], + ["103.91082187672559", "30.538641742732896"], + ["103.91092880309506", "30.538494736394821"], + ["103.91127254554384", "30.538420585135089"], + ["103.91159429466508", "30.538438410345378"], + ["103.91187307471225", "30.538438260064797"], + ["103.91236567278197", "30.538493967441877"], + ["103.91307308443123", "30.538308614181023"], + ["103.91320197746046", "30.538197572564481"], + ["103.91345975636857", "30.538086450119067"], + ["103.91375949192378", "30.538049275047694"], + ["103.91388837652538", "30.538031199020082"], + ["103.91414513974999", "30.538104010870054"], + ["103.91446683090267", "30.538381710376239"], + ["103.91478851973199", "30.538584430110049"], + ["103.91515315740597", "30.538880084736771"], + ["103.91543187496578", "30.539119812139148"], + ["103.91594634703961", "30.539470329443585"], + ["103.91637488810638", "30.539987845040837"], + ["103.91663160511213", "30.540375525489299"], + ["103.91703916174393", "30.540689110381283"], + ["103.91772540079265", "30.541076439437312"], + ["103.91802505745365", "30.541316116691206"], + ["103.91838963517185", "30.541574729316523"], + ["103.91860338486735", "30.541722500438567"], + ["103.91941343119551", "30.541856754213647"], + ["103.92035627873334", "30.542003850150341"], + ["103.92112828936268", "30.542408988274961"], + ["103.92168454585028", "30.542963264751396"], + ["103.92219885114942", "30.543331630241635"], + ["103.92279904014775", "30.543331015574182"], + ["103.92322745398316", "30.543220603231514"], + ["103.92408524759777", "30.543145704073456"], + ["103.92442776168635", "30.542960387376244"], + ["103.92511374801668", "30.54310756727055"], + ["103.92657050667822", "30.543696665910844"], + ["103.92734126953387", "30.544176567608201"], + ["103.9278983440913", "30.544840652457008"], + ["103.92836954466986", "30.54550483453059"], + ["103.9295265881027", "30.545836211157667"], + ["103.93042603034368", "30.545871982449363"], + ["103.93166881744455", "30.545759281262889"], + ["103.93231063717263", "30.545906308571745"], + ["103.93316802977866", "30.546052998916728"], + ["103.93385269985926", "30.546679762454044"], + ["103.93415309079096", "30.547381072971767"], + ["103.93428181133169", "30.548119630774316"], + ["103.93428178379673", "30.548785409578429"], + ["103.93440949926548", "30.549634930223835"], + ["103.9350951244468", "30.550298641992658"], + ["103.9356520105693", "30.550371736510868"], + ["103.93637954582879", "30.550148641102837"], + ["103.93689350533167", "30.549777925105278"], + ["103.93667997920682", "30.548965545333612"], + ["103.93650835110755", "30.54848598525907"], + ["103.9362519119267", "30.547599695463774"], + ["103.93620903787777", "30.546676070113463"], + ["103.93629489078243", "30.546011150588456"], + ["103.93625200983887", "30.545234475364595"], + ["103.93616620962779", "30.544643808651312"], + ["103.935908761405", "30.543905465033149"], + ["103.93590878283538", "30.543387634000872"], + ["103.93629502998753", "30.542648253342943"], + ["103.93659444599068", "30.541946994912884"], + ["103.93676610553653", "30.541650810679915"], + ["103.9369796789059", "30.541280579526788"], + ["103.9374078018258", "30.54094797868223"], + ["103.9375794523545", "30.540688776241812"], + ["103.93787884200368", "30.540207428968898"], + ["103.93813631582667", "30.539727149704959"], + ["103.9385644186181", "30.539319551677597"], + ["103.93907832303428", "30.538986773627595"], + ["103.93950639788032", "30.538801088126707"], + ["103.93993446489804", "30.538578407090721"], + ["103.94040543904825", "30.538097724322313"], + ["103.94079158529136", "30.537838115171152"], + ["103.94130543557792", "30.537541279607701"], + ["103.94207568610048", "30.53720697236902"], + ["103.94306040571389", "30.536873236466409"], + ["103.94378867803354", "30.536945826289948"], + ["103.94477330232583", "30.537127860264736"], + ["103.94537283761296", "30.537163669720226"], + ["103.94614295808975", "30.536608313066779"], + ["103.94661380413591", "30.536089530110672"], + ["103.94691406983961", "30.535609073599506"], + ["103.94717044556505", "30.535053727640157"], + ["103.94725626856309", "30.534092858518736"], + ["103.94691419446509", "30.532616024920561"], + ["103.94708478074271", "30.532208806042373"], + ["103.94721349295669", "30.531321822790225"], + ["103.94675768158395", "30.530372050527181"], + ["103.94669983219619", "30.530251205912556"], + ["103.94614325796302", "30.529402594965937"], + ["103.94562956227087", "30.528626863722003"], + ["103.94571539396127", "30.527592015331599"], + ["103.94584412201661", "30.526483103410005"], + ["103.94533042575742", "30.525560409916423"], + ["103.94524471402391", "30.523676160022852"], + ["103.94520187373118", "30.522345653211293"], + ["103.945030316226", "30.52179116053258"], + ["103.94404571425865", "30.52135021218017"], + ["103.94353193062362", "30.521535141132354"], + ["103.9422908283851", "30.521833388850492"], + ["103.94109157497903", "30.521798602600633"], + ["103.93916486274466", "30.521469123496164"], + ["103.93787962086928", "30.521398343592406"], + ["103.93608135449436", "30.521179374639757"], + ["103.93505341240288", "30.521217996462628"], + ["103.93333973398575", "30.521183633842512"], + ["103.93256917931113", "30.521221762244632"], + ["103.9317127903584", "30.520317276429708"], + ["103.93134847849316", "30.519579017607313"], + ["103.93104903959428", "30.518987617734116"], + ["103.93057787965438", "30.518859311119769"], + ["103.92993501197149", "30.518601266561951"], + ["103.92929211520031", "30.51852814835258"], + ["103.92894970046457", "30.518343654704577"], + ["103.92858531276958", "30.518252156076109"], + ["103.92822092377075", "30.518030691497938"], + ["103.92796435724836", "30.517698118006102"], + ["103.92774971942659", "30.517365488544996"], + ["103.92766388079258", "30.516811762693713"], + ["103.92751414574552", "30.516239122099044"], + ["103.9275571000598", "30.515664240378875"], + ["103.92824300775806", "30.515109540355589"], + ["103.92849961031932", "30.514480399098478"], + ["103.9285854940228", "30.51385247525883"], + ["103.92807133535514", "30.514000089758632"], + ["103.92700004754246", "30.514223359379795"], + ["103.92592872091151", "30.514002710386254"], + ["103.92567211697957", "30.51385605493557"], + ["103.92545745118922", "30.513597380635233"], + ["103.92545746640609", "30.513227490722869"], + ["103.92571511335716", "30.512377443795149"], + ["103.92652888559425", "30.511821643335889"], + ["103.9276431415648", "30.511302429364438"], + ["103.92858562649538", "30.510636426612635"], + ["103.9298285504121", "30.510005971707983"], + ["103.93081384703392", "30.50956175494186"], + ["103.93141379354073", "30.509117043570502"], + ["103.93158449271054", "30.508931856345832"], + ["103.93394116064208", "30.507282868373537"], + ["103.93445519046047", "30.506653263583459"], + ["103.93501213095121", "30.505838633762153"], + ["103.93552612813416", "30.505357962236538"], + ["103.9361688614551", "30.504654136400788"], + ["103.93599722590733", "30.504248529670495"], + ["103.93548329221622", "30.503472573511353"], + ["103.93338438667574", "30.503364841861629"], + ["103.93201393809451", "30.50344083370679"], + ["103.9307711603753", "30.503812483714292"], + ["103.92935760093522", "30.504073326506919"], + ["103.92841516606846", "30.504406461320936"], + ["103.92802979204218", "30.504554910501557"], + ["103.92738682090845", "30.504814641818619"], + ["103.9266579676769", "30.504963491341901"], + ["103.92584422411248", "30.504927471159327"], + ["103.92520120226841", "30.504669290460505"], + ["103.92477284505269", "30.504447839978219"], + ["103.92455917379559", "30.504042196710095"], + ["103.92447331364131", "30.503672398139415"], + ["103.92447333188797", "30.5032285258368"], + ["103.92472998795512", "30.502489450569104"], + ["103.92485881544977", "30.502082421883735"], + ["103.92554482463073", "30.501341848608973"], + ["103.925844386774", "30.500972604537118"], + ["103.92665814561019", "30.500638730347912"], + ["103.92687282577438", "30.500231585607469"], + ["103.9272582396521", "30.49963928161247"], + ["103.92708755137566", "30.498641773634738"], + ["103.92674412919403", "30.497754442474999"], + ["103.92644461498384", "30.497311928466075"], + ["103.92571576186737", "30.49660998769707"], + ["103.92533035953893", "30.496166558143567"], + ["103.92490201111373", "30.495798149493606"], + ["103.92425896284348", "30.495428971370067"], + ["103.9237876528517", "30.495022599320365"], + ["103.9234022073806", "30.494727094873213"], + ["103.92318751509038", "30.494505384185882"], + ["103.92310165947252", "30.493877649236595"], + ["103.92310167162641", "30.493581731319694"], + ["103.92331240981386", "30.492839714733933"], + ["103.92382670442437", "30.49243227590248"], + ["103.92438392156198", "30.492061767748357"], + ["103.92515580564239", "30.49165401132268"], + ["103.92579885042109", "30.49139433927963"], + ["103.92656967914868", "30.491024525769667"], + ["103.92708389156691", "30.490543032334323"], + ["103.92764102479589", "30.489950504733155"], + ["103.92802641406985", "30.489617110242751"], + ["103.9290118087935", "30.488951020782583"], + ["103.92931231990202", "30.488506746295123"], + ["103.92952596792054", "30.488210542936027"], + ["103.92986838978365", "30.487988144215269"], + ["103.9309395236201", "30.487764736300878"], + ["103.93153947514799", "30.487136062681884"], + ["103.93265344812318", "30.486727565069419"], + ["103.93350983264908", "30.486800272724498"], + ["103.9341955115561", "30.486910202386991"], + ["103.93535223290847", "30.487056362439013"], + ["103.935909122176", "30.486907515844567"], + ["103.93625143136686", "30.486832984423025"], + ["103.93702185011223", "30.486794735947512"], + ["103.93745095062384", "30.486941984814042"], + ["103.93817841129659", "30.487051731612279"], + ["103.93903459152446", "30.486606384098028"], + ["103.93972010464154", "30.486383248263159"], + ["103.9401052558152", "30.486345577763082"], + ["103.94061910997446", "30.486381651334824"], + ["103.94061912835305", "30.485937771526526"], + ["103.94070495918231", "30.485382766476366"], + ["103.94096241962471", "30.484421560767959"], + ["103.94096245795947", "30.483495808785143"], + ["103.94096249625154", "30.482571054849906"], + ["103.94096253603259", "30.481610310603745"], + ["103.94116012313003", "30.480787171044298"], + ["103.94117609045765", "30.480722159028357"], + ["103.94139062875594", "30.480092934802922"], + ["103.94160515361449", "30.47975962976972"], + ["103.94177578213873", "30.479316433725014"], + ["103.9420761079767", "30.47890898637246"], + ["103.94203321792503", "30.478650133307237"], + ["103.94194744127176", "30.478021456634622"], + ["103.94199036150108", "30.477577493685924"], + ["103.9422038898193", "30.477059233289442"], + ["103.94211910147358", "30.476690486903614"], + ["103.94207621520245", "30.4763206626684"], + ["103.94160529753812", "30.47628453960418"], + ["103.94113437903391", "30.476026466097132"], + ["103.94109149480157", "30.475582659512661"], + ["103.94134794254043", "30.474879374907562"], + ["103.9411763660562", "30.474065897857098"], + ["103.94070545055015", "30.473512891014863"], + ["103.94027743230164", "30.472884818449355"], + ["103.93993519972166", "30.472663482313621"], + ["103.93937840492994", "30.47307035607367"], + ["103.93899224303563", "30.473108017218792"], + ["103.93864997636324", "30.473219577811204"], + ["103.93800734321462", "30.473331643567992"], + ["103.93770797173816", "30.473406128837109"], + ["103.93732278052434", "30.473369780798894"], + ["103.93676594835274", "30.473037785651748"], + ["103.9358238676547", "30.473039311125085"], + ["103.93518115319122", "30.473040330782563"], + ["103.93466716298084", "30.47311511467251"], + ["103.93402440820094", "30.473227074505328"], + ["103.9336391452328", "30.473264649944738"], + ["103.93329681056903", "30.472932249539173"], + ["103.93278279328146", "30.472526115878313"], + ["103.93205415206826", "30.472268244178967"], + ["103.93132548783625", "30.471936368187883"], + ["103.93021247840039", "30.471383053348745"], + ["103.92986909005916", "30.47097662245514"], + ["103.92961254743614", "30.470571070332781"], + ["103.92939792559552", "30.470275431051899"], + ["103.92935501713711", "30.469831601064488"], + ["103.9294408942112", "30.469276627441534"], + ["103.92948384662004", "30.468647729694361"], + ["103.92978434772414", "30.468277420633893"], + ["103.92982628759761", "30.467981439142505"] + ] + \ No newline at end of file diff --git a/src/util/config.ts b/src/util/config.ts index 603e062..9e176f4 100644 --- a/src/util/config.ts +++ b/src/util/config.ts @@ -6,6 +6,7 @@ class Config { // static ws = "ws://127.0.0.1:12214/ws?id=admin"; // static baseUrl = "http://127.0.0.1:12214/"; // static uploadUrl = "http://127.0.0.1:12214/"; + } export default Config;