OpenLayers6/7使用GeoJSON进行行政区裁剪

要实现如下效果:

参考效果如图

参考代码:

以下示例以高德地图影像图为底图做测试:

import TileLayer from 'ol/layer/Tile'
import { MultiPolygon, Polygon } from 'ol/geom'
import { getVectorContext } from 'ol/render'
import Style from 'ol/style/Style'
import Fill from 'ol/style/Fill'

const gaodeditu = new TileLayer({
  source: new XYZ({
    url: 'http://wprd0{1-4}.is.autonavi.com/appmaptile?lang=zh_cn&size=1&style=6&x={x}&y={y}&z={z}',
    wrapX: true,
  })
})
fetch('geoline.json')
  .then(res => res.json())
  .then((geoJson: any) => {
	const geometry = new MultiPolygon(geoJson.features[0].geometry.coordinates).transform('EPSG:4326', 'EPSG:3857')
	gaodeditu.on('prerender', event => {
	  const ctx = event.context as CanvasRenderingContext2D
	  const vecCtx = getVectorContext(event)
	  ctx.save()
	  vecCtx.setStyle(new Style({
        fill: new Fill({
          color: [0, 0, 0, 0]
      	}
      }))
      vecCtx.drawGeometry(geometry)
      ctx.clip()
    })
    gaodeditu.on('postrender', event => {
      const ctx = event.context as CanvasRenderingContext2D;
      ctx.restore();
    })
  })

提供四川省边界GeoJSON数据供测试:

{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"adcode":510000,"name":"四川省","center":[104.065735,30.659462],"centroid":[102.693453,30.674545],"childrenNum":21,"level":"province","acroutes":[100000],"parent":{"adcode":100000}},"geometry":{"type":"MultiPolygon","coordinates":[[[[101.839897,26.082429],[101.835417,26.045865],[101.858039,26.049392],[101.881668,26.072364],[101.899698,26.099202],[101.922879,26.107975],[101.954684,26.084494],[102.020756,26.096278],[102.052561,26.075547],[102.084253,26.065138],[102.107771,26.068235],[102.117066,26.086128],[102.130056,26.086386],[102.136999,26.108319],[102.152342,26.109609],[102.175075,26.147013],[102.1996,26.158447],[102.241708,26.188617],[102.244955,26.210874],[102.257386,26.220068],[102.282807,26.220154],[102.351007,26.245927],[102.396138,26.297627],[102.440149,26.300632],[102.542954,26.340121],[102.551577,26.362178],[102.571063,26.362607],[102.629408,26.33686],[102.638591,26.307673],[102.611266,26.282343],[102.601299,26.249019],[102.620113,26.245755],[102.659197,26.221442],[102.674539,26.205374],[102.719782,26.218177],[102.721686,26.239999],[102.73994,26.268602],[102.761889,26.275301],[102.785183,26.298915],[102.833449,26.306642],[102.867493,26.339005],[102.88026,26.366125],[102.89325,26.338834],[102.926847,26.334628],[102.975561,26.340894],[102.998183,26.371874],[102.988328,26.409023],[102.997735,26.459622],[102.990344,26.483027],[103.031891,26.486884],[103.057088,26.528109],[103.053505,26.554242],[103.036706,26.555355],[103.019348,26.590047],[103.029651,26.601694],[103.024164,26.639795],[103.028195,26.659569],[103.00591,26.677456],[103.009605,26.70732],[102.996727,26.724943],[102.98396,26.764799],[102.991799,26.774633],[102.964474,26.839428],[102.947452,26.844299],[102.896498,26.912556],[102.888883,26.954565],[102.895266,26.999802],[102.871301,27.02796],[102.898962,27.076323],[102.913744,27.134637],[102.902209,27.195903],[102.90165,27.235763],[102.883284,27.258242],[102.882164,27.293314],[102.900082,27.317653],[102.911392,27.349133],[102.941405,27.40552],[102.955292,27.411386],[102.97097,27.377628],[102.985304,27.367337],[103.033347,27.388003],[103.055632,27.409516],[103.079598,27.397272],[103.111514,27.401013],[103.14455,27.425584],[103.14455,27.450574],[103.190353,27.523472],[103.204464,27.529163],[103.218126,27.562111],[103.236156,27.570431],[103.278711,27.561856],[103.293606,27.564743],[103.299205,27.597171],[103.280391,27.617964],[103.314547,27.655297],[103.349711,27.678454],[103.370093,27.708644],[103.39305,27.709407],[103.420935,27.742979],[103.448148,27.7551],[103.464722,27.782472],[103.489584,27.797384],[103.509181,27.84033],[103.499998,27.877502],[103.502574,27.91043],[103.526315,27.940555],[103.563943,27.964159],[103.563271,27.977693],[103.54065,27.965766],[103.516685,27.965259],[103.498879,27.984121],[103.496527,28.016593],[103.48824,28.032403],[103.459459,28.021412],[103.43247,28.041279],[103.432918,28.072213],[103.453636,28.087677],[103.454979,28.12375],[103.47021,28.122145],[103.533147,28.168508],[103.552633,28.191302],[103.573238,28.230884],[103.608178,28.239069],[103.632368,28.259992],[103.649502,28.25704],[103.694745,28.227256],[103.702024,28.198983],[103.721286,28.202022],[103.739987,28.236032],[103.770336,28.2335],[103.78579,28.254087],[103.813003,28.265138],[103.828906,28.28496],[103.870229,28.301067],[103.875604,28.322147],[103.853431,28.356708],[103.859814,28.383506],[103.851303,28.40676],[103.829801,28.436325],[103.830249,28.458388],[103.810428,28.49543],[103.781983,28.524549],[103.800685,28.533805],[103.801357,28.561821],[103.837305,28.58453],[103.834841,28.622285],[103.851079,28.667085],[103.8737,28.652798],[103.874708,28.626488],[103.896322,28.619678],[103.909984,28.631196],[103.936749,28.622621],[103.942461,28.603031],[104.0596,28.627665],[104.096108,28.603451],[104.125224,28.637248],[104.170355,28.643048],[104.192529,28.633634],[104.231052,28.635819],[104.241467,28.660782],[104.252666,28.660698],[104.269688,28.635147],[104.296341,28.63439],[104.314819,28.615643],[104.343936,28.640947],[104.37406,28.649352],[104.404857,28.64061],[104.425239,28.62674],[104.417288,28.59807],[104.387723,28.59891],[104.368461,28.58596],[104.356814,28.55568],[104.329601,28.558624],[104.319299,28.538685],[104.287046,28.532543],[104.261961,28.536918],[104.248298,28.528336],[104.248634,28.509654],[104.265433,28.502753],[104.261401,28.482046],[104.27036,28.465881],[104.258377,28.453251],[104.267672,28.42049],[104.254346,28.40895],[104.278423,28.346594],[104.301828,28.32847],[104.29007,28.314727],[104.313923,28.306632],[104.33856,28.33083],[104.35827,28.338923],[104.384811,28.330156],[104.392874,28.291538],[104.408217,28.269862],[104.449316,28.269946],[104.444053,28.259233],[104.462306,28.2416],[104.445956,28.21426],[104.402281,28.202866],[104.404409,28.17712],[104.434982,28.168255],[104.451668,28.17408],[104.444836,28.138193],[104.450996,28.116317],[104.399034,28.087761],[104.395338,28.063847],[104.376524,28.052268],[104.341472,28.057846],[104.304068,28.050746],[104.298805,28.0439],[104.326578,28.025471],[104.356142,28.018453],[104.378764,27.993677],[104.383467,27.968727],[104.401161,27.952315],[104.449652,27.927609],[104.47037,27.905098],[104.497694,27.895787],[104.503294,27.881989],[104.53745,27.886983],[104.558392,27.86658],[104.558952,27.852186],[104.580901,27.842024],[104.608002,27.858198],[104.633647,27.850916],[104.679114,27.882243],[104.743731,27.902051],[104.759633,27.884867],[104.795245,27.900527],[104.829513,27.89985],[104.872964,27.905944],[104.887971,27.914492],[104.891442,27.933025],[104.921119,27.94174],[104.903089,27.960437],[104.929182,27.985051],[104.9471,27.980568],[104.946876,27.994861],[104.974985,28.019891],[104.980808,28.062832],[105.011045,28.06672],[105.059199,28.098154],[105.076782,28.084212],[105.108138,28.081086],[105.144198,28.066636],[105.17701,28.066889],[105.18373,28.040349],[105.167603,28.023611],[105.184401,27.996468],[105.215534,27.990548],[105.246219,28.009237],[105.270856,27.995792],[105.269848,27.978961],[105.283398,27.959929],[105.280935,27.929132],[105.264137,27.91153],[105.248906,27.912969],[105.234908,27.898919],[105.250138,27.844818],[105.244763,27.822544],[105.27052,27.818139],[105.314195,27.81941],[105.313187,27.81077],[105.287766,27.807042],[105.273879,27.795266],[105.292917,27.771287],[105.287878,27.742386],[105.290566,27.712459],[105.309603,27.705676],[105.327073,27.727042],[105.339952,27.729077],[105.353838,27.748828],[105.368957,27.749421],[105.440181,27.77527],[105.458211,27.767897],[105.477137,27.774846],[105.517788,27.764931],[105.537498,27.753744],[105.550488,27.72611],[105.60413,27.71619],[105.604018,27.700758],[105.619025,27.687614],[105.623392,27.667088],[105.643102,27.659963],[105.66438,27.683882],[105.702007,27.676927],[105.721045,27.684815],[105.722837,27.705846],[105.784206,27.719158],[105.842888,27.705337],[105.868309,27.732552],[105.921279,27.747048],[105.929902,27.728144],[105.985448,27.74976],[106.023075,27.746963],[106.062383,27.763321],[106.063727,27.777134],[106.12756,27.778659],[106.19352,27.754422],[106.224653,27.760948],[106.268552,27.782133],[106.295989,27.803145],[106.341792,27.820172],[106.317154,27.838721],[106.34,27.86531],[106.325889,27.879364],[106.325777,27.897988],[106.304836,27.899342],[106.308083,27.936748],[106.328353,27.957983],[106.294309,28.003656],[106.268888,28.003318],[106.246266,28.012027],[106.244139,28.030543],[106.265528,28.049816],[106.266648,28.066551],[106.25153,28.090296],[106.231484,28.097985],[106.226221,28.115894],[106.207071,28.134223],[106.145254,28.162851],[106.122072,28.167073],[106.093515,28.162682],[106.060927,28.143007],[106.027219,28.131267],[106.036514,28.110741],[106.01322,28.119949],[105.976153,28.108038],[105.970777,28.131267],[105.945244,28.143513],[105.936957,28.132281],[105.903697,28.129156],[105.895186,28.11978],[105.876036,28.128227],[105.8785,28.139037],[105.860918,28.159558],[105.870996,28.201937],[105.889026,28.238479],[105.874244,28.254593],[105.862709,28.248941],[105.845687,28.259908],[105.823402,28.306885],[105.797645,28.312366],[105.785662,28.336478],[105.771328,28.319449],[105.78667,28.308825],[105.740643,28.304862],[105.738627,28.277284],[105.730004,28.272139],[105.688569,28.284369],[105.670091,28.310427],[105.639518,28.32417],[105.654861,28.362355],[105.643326,28.431524],[105.612529,28.438936],[105.619361,28.463608],[105.609842,28.473964],[105.627984,28.507802],[105.684649,28.534563],[105.683417,28.557867],[105.69316,28.588567],[105.720709,28.590585],[105.747474,28.615895],[105.757665,28.590333],[105.78499,28.611103],[105.798429,28.603199],[105.884995,28.595463],[105.905937,28.611019],[105.890258,28.62136],[105.895634,28.64372],[105.889474,28.67053],[105.904817,28.669606],[105.935613,28.681874],[105.934269,28.703633],[105.955883,28.713881],[105.967754,28.761665],[105.979288,28.746551],[106.008965,28.738238],[106.030802,28.695064],[106.080413,28.686327],[106.10337,28.636071],[106.144582,28.644729],[106.165747,28.636239],[106.192064,28.577802],[106.236187,28.560138],[106.254889,28.539443],[106.292629,28.537339],[106.305396,28.50452],[106.330705,28.48213],[106.378859,28.479689],[106.373036,28.526906],[106.350191,28.5402],[106.34224,28.532627],[106.332049,28.55324],[106.346607,28.583773],[106.324546,28.616736],[106.329809,28.634054],[106.304052,28.649856],[106.321522,28.664648],[106.308531,28.672547],[106.305172,28.704221],[106.287702,28.732359],[106.273143,28.739833],[106.267656,28.779295],[106.252426,28.785842],[106.244363,28.814629],[106.264856,28.846093],[106.206959,28.904548],[106.173474,28.920813],[106.149173,28.901949],[106.101243,28.898931],[106.070558,28.919807],[106.04928,28.906393],[106.039426,28.917711],[106.043793,28.954172],[106.017476,28.952915],[106.000902,28.974031],[105.970217,28.966071],[105.944012,28.939589],[105.909744,28.920477],[105.90952,28.900188],[105.889362,28.909495],[105.888019,28.926848],[105.875028,28.933973],[105.852742,28.927351],[105.830457,28.944283],[105.797533,28.935901],[105.803804,28.947635],[105.788238,28.978221],[105.761921,28.993049],[105.765952,29.013906],[105.744563,29.046649],[105.757777,29.06624],[105.729892,29.098799],[105.735156,29.122396],[105.752066,29.129758],[105.728884,29.134443],[105.721381,29.169573],[105.704471,29.175678],[105.711974,29.218902],[105.693944,29.267539],[105.695176,29.287338],[105.715894,29.290846],[105.705031,29.299199],[105.678042,29.27347],[105.665164,29.276561],[105.666507,29.252917],[105.647581,29.253251],[105.631791,29.280404],[105.607938,29.255758],[105.609506,29.272719],[105.583301,29.270379],[105.558328,29.278483],[105.51846,29.264447],[105.509165,29.285416],[105.476241,29.279235],[105.465378,29.29235],[105.466498,29.32158],[105.420135,29.314399],[105.418567,29.352305],[105.437045,29.364743],[105.432006,29.378848],[105.443092,29.399126],[105.427302,29.4189],[105.372988,29.420902],[105.399193,29.439003],[105.387995,29.455099],[105.362014,29.454683],[105.360446,29.444258],[105.324498,29.448594],[105.337824,29.458852],[105.32125,29.476029],[105.318898,29.512375],[105.294373,29.53396],[105.289782,29.552624],[105.296725,29.571202],[105.317667,29.578115],[105.311283,29.593357],[105.322258,29.610095],[105.335473,29.595189],[105.346783,29.620253],[105.380827,29.628246],[105.37758,29.643313],[105.393146,29.650721],[105.389674,29.67652],[105.400537,29.671611],[105.423943,29.687587],[105.436373,29.676936],[105.475681,29.67469],[105.479712,29.716288],[105.538842,29.694908],[105.529659,29.707637],[105.550488,29.722443],[105.549145,29.737663],[105.567398,29.728015],[105.575014,29.744482],[105.572326,29.768677],[105.583301,29.819294],[105.604914,29.817216],[105.610626,29.836908],[105.661804,29.840813],[105.677818,29.85427],[105.708951,29.840564],[105.719365,29.856513],[105.735716,29.860915],[105.738963,29.891227],[105.717462,29.893552],[105.702679,29.924767],[105.714998,29.930743],[105.731012,29.956636],[105.723397,29.975969],[105.73258,29.998781],[105.753634,30.018602],[105.746242,30.034275],[105.727988,30.027227],[105.722389,30.041073],[105.687001,30.039001],[105.674682,30.071247],[105.66046,30.066274],[105.639294,30.076386],[105.642206,30.100915],[105.598083,30.109201],[105.569974,30.134302],[105.593156,30.144738],[105.596851,30.15716],[105.570758,30.161466],[105.558216,30.151943],[105.536826,30.15244],[105.551048,30.179186],[105.556536,30.187465],[105.557544,30.195826],[105.558887,30.185561],[105.561463,30.183656],[105.579941,30.173473],[105.595171,30.183656],[105.64243,30.186388],[105.655421,30.220822],[105.636271,30.219746],[105.619473,30.234641],[105.625072,30.27584],[105.667179,30.265666],[105.670651,30.254085],[105.723845,30.254747],[105.734932,30.276998],[105.71175,30.282209],[105.714774,30.322809],[105.741875,30.319833],[105.735044,30.336697],[105.756209,30.347112],[105.751842,30.357112],[105.769536,30.375292],[105.760241,30.384546],[105.77032,30.403959],[105.78275,30.403133],[105.791709,30.425434],[105.818026,30.437243],[105.846695,30.410733],[105.846247,30.392394],[105.873796,30.408668],[105.899441,30.405612],[105.901569,30.386363],[105.917023,30.395947],[105.940877,30.372317],[105.967978,30.379258],[105.992055,30.369177],[106.00079,30.376283],[106.032146,30.371821],[106.033714,30.361823],[106.07347,30.334135],[106.08926,30.345541],[106.088364,30.32314],[106.114793,30.317353],[106.131815,30.301808],[106.131815,30.324132],[106.149733,30.30925],[106.171235,30.305033],[106.180418,30.277825],[106.180418,30.232821],[106.201023,30.228021],[106.192288,30.21627],[106.212558,30.20311],[106.232268,30.212546],[106.24593,30.196488],[106.260601,30.196985],[106.260377,30.20402],[106.260265,30.207911],[106.264296,30.209732],[106.278407,30.195743],[106.296437,30.205841],[106.30058,30.23853],[106.335072,30.226366],[106.349295,30.245232],[106.372588,30.248211],[106.402713,30.242088],[106.427798,30.253754],[106.407976,30.276171],[106.434741,30.276998],[106.428582,30.291554],[106.449747,30.297839],[106.544825,30.296764],[106.560279,30.31512],[106.611009,30.292712],[106.634863,30.265666],[106.642142,30.246556],[106.611457,30.228021],[106.624448,30.227111],[106.631839,30.186554],[106.677642,30.157409],[106.673274,30.122042],[106.703175,30.118148],[106.700263,30.073651],[106.725797,30.057073],[106.732404,30.026812],[106.785486,30.017276],[106.800044,30.030543],[106.830169,30.033943],[106.842039,30.049115],[106.861413,30.028139],[106.884259,30.034357],[106.913599,30.025568],[106.914831,30.033943],[106.94854,30.040161],[106.956715,30.067518],[106.976088,30.083596],[106.975864,30.087906],[106.976648,30.088071],[106.97732,30.087491],[106.978552,30.087408],[106.979784,30.088071],[106.980456,30.087657],[106.981912,30.085171],[107.020659,30.036845],[107.042721,30.035021],[107.042497,30.055084],[107.059295,30.043146],[107.084492,30.063871],[107.073853,30.080944],[107.080125,30.094204],[107.103082,30.090143],[107.106554,30.11384],[107.131303,30.121545],[107.136454,30.134385],[107.173298,30.164861],[107.220221,30.212794],[107.256057,30.263764],[107.272743,30.305447],[107.286742,30.334796],[107.304772,30.354881],[107.33904,30.387107],[107.345535,30.425517],[107.359981,30.456233],[107.408696,30.521598],[107.419895,30.516483],[107.442852,30.535293],[107.42751,30.547666],[107.46021,30.571335],[107.485295,30.598296],[107.493694,30.618986],[107.51542,30.642061],[107.499182,30.660188],[107.478576,30.664472],[107.456627,30.682347],[107.458642,30.704831],[107.436133,30.721958],[107.424374,30.740645],[107.439045,30.747066],[107.447892,30.778751],[107.466369,30.77406],[107.477792,30.799813],[107.497726,30.809273],[107.492127,30.833125],[107.481152,30.836826],[107.513852,30.855081],[107.527515,30.839046],[107.535466,30.847681],[107.577573,30.848092],[107.616209,30.837731],[107.631103,30.817828],[107.643646,30.820624],[107.691912,30.874811],[107.704119,30.872263],[107.717333,30.888291],[107.737715,30.885004],[107.760336,30.862233],[107.752273,30.846036],[107.763808,30.817088],[107.787885,30.819473],[107.818906,30.797428],[107.852278,30.793479],[107.891586,30.830247],[107.929437,30.859356],[107.955307,30.873249],[107.955979,30.882949],[107.992262,30.902591],[107.945004,30.92338],[107.936269,30.952789],[107.943548,30.989415],[107.981176,30.983339],[108.003797,31.025369],[108.053296,31.040716],[108.058895,31.053926],[108.028994,31.061721],[108.024739,31.089283],[108.009397,31.108309],[108.025747,31.116345],[108.036274,31.139956],[108.08566,31.188063],[108.089356,31.205922],[108.076141,31.231804],[108.040081,31.218618],[108.019475,31.244988],[108.066398,31.261773],[108.092379,31.265784],[108.095291,31.275526],[108.144341,31.301225],[108.185553,31.338044],[108.176034,31.35473],[108.154084,31.370759],[108.182865,31.392999],[108.206494,31.397413],[108.216349,31.411146],[108.210526,31.435746],[108.223852,31.449229],[108.223181,31.46516],[108.19328,31.468183],[108.19048,31.491461],[108.212206,31.493748],[108.226764,31.505834],[108.254761,31.498811],[108.28175,31.507303],[108.323297,31.502404],[108.344015,31.512447],[108.339535,31.53898],[108.350286,31.546],[108.381195,31.542572],[108.39161,31.561425],[108.377947,31.570401],[108.402584,31.603851],[108.442676,31.633701],[108.468321,31.622284],[108.472017,31.639001],[108.490159,31.641284],[108.504493,31.656286],[108.532826,31.669084],[108.546488,31.66672],[108.514796,31.694106],[108.525435,31.702499],[108.518603,31.726207],[108.505501,31.732643],[108.53529,31.757728],[108.515692,31.761067],[108.488591,31.780283],[108.462498,31.780527],[108.454435,31.791111],[108.465185,31.808367],[108.441444,31.807635],[108.391946,31.828712],[108.385898,31.854097],[108.340991,31.863533],[108.308403,31.905984],[108.282646,31.917773],[108.280182,31.953047],[108.259352,31.966861],[108.269879,31.985141],[108.282198,31.97921],[108.307059,31.997244],[108.35051,31.97198],[108.369436,31.986847],[108.329233,32.019253],[108.362493,32.036304],[108.364061,32.048319],[108.343567,32.063904],[108.373804,32.077133],[108.394521,32.066177],[108.412887,32.070073],[108.430021,32.061388],[108.450403,32.074374],[108.452531,32.090279],[108.431589,32.101719],[108.406616,32.141303],[108.369436,32.17333],[108.406392,32.196188],[108.45925,32.181436],[108.479296,32.182085],[108.509756,32.201213],[108.51446,32.21823],[108.507069,32.245694],[108.484447,32.250716],[108.471793,32.27064],[108.450739,32.259302],[108.421846,32.260679],[108.415015,32.252498],[108.390602,32.263594],[108.370668,32.253632],[108.347935,32.253956],[108.331808,32.233381],[108.312099,32.232166],[108.264504,32.257439],[108.248602,32.274446],[108.212206,32.256953],[108.213326,32.248205],[108.179729,32.221714],[108.15666,32.238971],[108.141654,32.218878],[108.123064,32.218392],[108.089915,32.233705],[108.066062,32.229654],[108.043329,32.215232],[108.018579,32.211829],[108.023171,32.175924],[107.995734,32.147141],[107.979384,32.146006],[107.954299,32.163926],[107.924734,32.196998],[107.890466,32.214422],[107.867508,32.202428],[107.835816,32.223011],[107.788669,32.279871],[107.754625,32.338233],[107.716773,32.328846],[107.707926,32.332083],[107.693592,32.362911],[107.695272,32.374721],[107.680377,32.397609],[107.648013,32.413701],[107.636366,32.406019],[107.602882,32.411275],[107.573317,32.403513],[107.566262,32.394294],[107.533114,32.383618],[107.512396,32.386368],[107.489775,32.425262],[107.456963,32.417743],[107.450691,32.432214],[107.462002,32.441348],[107.458194,32.458401],[107.438709,32.465835],[107.429302,32.501141],[107.436357,32.52973],[107.40612,32.539177],[107.377899,32.538935],[107.356846,32.506391],[107.313955,32.490236],[107.28607,32.454522],[107.283718,32.434154],[107.263896,32.40327],[107.230636,32.416126],[107.21003,32.431971],[107.189648,32.468017],[107.127048,32.48248],[107.10465,32.516648],[107.080125,32.542407],[107.091995,32.552579],[107.107786,32.600761],[107.097595,32.62706],[107.099051,32.649481],[107.08774,32.667946],[107.068366,32.669962],[107.059743,32.686165],[107.066798,32.708894],[107.03029,32.712359],[107.012596,32.721545],[106.988407,32.711795],[106.949099,32.716549],[106.91304,32.704381],[106.903409,32.721303],[106.872612,32.725654],[106.845959,32.721062],[106.821098,32.706073],[106.793213,32.712601],[106.78179,32.700915],[106.779439,32.737498],[106.7333,32.739351],[106.684473,32.709297],[106.66342,32.69076],[106.64035,32.687294],[106.629375,32.681248],[106.588612,32.688584],[106.566774,32.675847],[106.517276,32.668027],[106.498126,32.64932],[106.472929,32.650368],[106.451651,32.660125],[106.450979,32.640207],[106.420519,32.616655],[106.38905,32.626738],[106.383227,32.646578],[106.351199,32.671897],[106.305508,32.679636],[106.278855,32.670687],[106.256457,32.693259],[106.17437,32.697611],[106.171795,32.709136],[106.153653,32.705751],[106.145366,32.720417],[106.119944,32.719611],[106.062047,32.7673],[106.065519,32.783486],[106.094747,32.795966],[106.093627,32.823737],[106.069998,32.824059],[106.046705,32.852224],[106.021732,32.857534],[106.011541,32.829693],[105.99519,32.828003],[105.969321,32.849005],[105.927214,32.825991],[105.89317,32.838464],[105.857782,32.827439],[105.850727,32.818103],[105.831129,32.826071],[105.816906,32.790411],[105.82273,32.771649],[105.779615,32.750225],[105.768752,32.767542],[105.750722,32.767945],[105.73594,32.75385],[105.719253,32.75973],[105.678042,32.726541],[105.649261,32.718725],[105.625408,32.702044],[105.596403,32.699303],[105.585204,32.729119],[105.556312,32.732019],[105.55788,32.752964],[105.56807,32.758763],[105.554744,32.773985],[105.556312,32.792021],[105.535818,32.789847],[105.524507,32.847718],[105.495503,32.873221],[105.486768,32.92139],[105.456307,32.932645],[105.42551,32.931117],[105.41308,32.918898],[105.407816,32.885768],[105.380827,32.878771],[105.399753,32.829049],[105.427526,32.784292],[105.425174,32.774951],[105.453283,32.767623],[105.459443,32.7524],[105.448916,32.732744],[105.425398,32.733953],[105.394266,32.714293],[105.365597,32.710425],[105.346895,32.682699],[105.308708,32.67109],[105.297733,32.657061],[105.261785,32.653191],[105.241179,32.668914],[105.219677,32.666334],[105.215086,32.63682],[105.186865,32.62585],[105.184737,32.617381],[105.143862,32.601245],[105.110826,32.594145],[105.095931,32.6077],[105.079357,32.637223],[105.030195,32.650449],[105.014852,32.640127],[104.971961,32.632948],[104.927726,32.60891],[104.881811,32.601164],[104.873636,32.623027],[104.845751,32.653916],[104.820666,32.662947],[104.795917,32.643514],[104.766016,32.645449],[104.739587,32.635449],[104.696808,32.673509],[104.668027,32.662544],[104.635775,32.668511],[104.596355,32.693259],[104.582805,32.72219],[104.555144,32.733792],[104.526699,32.728394],[104.510237,32.754495],[104.458947,32.748534],[104.447524,32.761743],[104.422103,32.768831],[104.421655,32.780588],[104.371709,32.805949],[104.365325,32.821564],[104.330161,32.824622],[104.294325,32.835728],[104.28895,32.870325],[104.277079,32.891317],[104.28615,32.939075],[104.305972,32.951533],[104.345392,32.940361],[104.378428,32.953221],[104.383579,32.994278],[104.426135,33.010744],[104.421095,33.024235],[104.391418,33.035477],[104.360174,33.028411],[104.337664,33.038287],[104.367229,33.086768],[104.360846,33.099285],[104.377196,33.107067],[104.374956,33.11918],[104.350879,33.159038],[104.328257,33.224118],[104.329041,33.252956],[104.303844,33.30452],[104.336321,33.314205],[104.349199,33.300678],[104.39825,33.297316],[104.393546,33.310924],[104.420087,33.32709],[104.367677,33.345014],[104.328034,33.333092],[104.295669,33.332852],[104.270584,33.393325],[104.242923,33.406998],[104.22075,33.404599],[104.221981,33.428741],[104.213134,33.446884],[104.18077,33.473092],[104.156133,33.547118],[104.168115,33.570981],[104.17965,33.575689],[104.168563,33.611749],[104.103499,33.663499],[104.05232,33.685258],[104.013237,33.683265],[103.966538,33.670434],[103.926783,33.679679],[103.861606,33.68215],[103.800461,33.670194],[103.778287,33.658875],[103.689257,33.693386],[103.667756,33.685816],[103.667308,33.698566],[103.64995,33.700159],[103.669099,33.712429],[103.651629,33.721351],[103.644238,33.708525],[103.633375,33.721829],[103.598883,33.717846],[103.563943,33.699601],[103.552073,33.67147],[103.520492,33.678563],[103.545577,33.720396],[103.549497,33.740308],[103.531355,33.749069],[103.54009,33.766746],[103.518364,33.807102],[103.506494,33.810126],[103.464498,33.802407],[103.431686,33.750741],[103.349599,33.743494],[103.320147,33.752095],[103.279607,33.773593],[103.284647,33.802009],[103.24993,33.814026],[103.228093,33.794846],[103.203008,33.795403],[103.161348,33.807182],[103.153397,33.819118],[103.18117,33.900717],[103.171203,33.924403],[103.134359,33.930363],[103.123049,33.941567],[103.123833,33.96818],[103.139511,33.976123],[103.157205,33.998756],[103.147238,34.036543],[103.119241,34.039558],[103.130888,34.066934],[103.170195,34.065744],[103.178371,34.080341],[103.149814,34.102867],[103.135479,34.10025],[103.121817,34.1127],[103.13268,34.129033],[103.124057,34.161849],[103.100315,34.181896],[103.071534,34.184907],[103.050481,34.194731],[103.03973,34.185779],[103.005574,34.184907],[102.973433,34.205424],[102.980153,34.241298],[102.956523,34.2694],[102.939949,34.299946],[102.913184,34.312446],[102.879252,34.312129],[102.86111,34.302398],[102.856743,34.270667],[102.806572,34.274703],[102.783839,34.258081],[102.777903,34.235676],[102.731877,34.237498],[102.701304,34.197662],[102.6639,34.192513],[102.647438,34.178331],[102.650462,34.165573],[102.625377,34.167475],[102.598388,34.147741],[102.641167,34.127051],[102.655725,34.113493],[102.660317,34.085101],[102.649454,34.080024],[102.61597,34.099695],[102.585285,34.101043],[102.5574,34.091526],[102.516749,34.087401],[102.46725,34.073916],[102.438805,34.087401],[102.417752,34.042177],[102.39961,34.017731],[102.391435,33.970802],[102.350559,33.977394],[102.345856,33.96969],[102.32525,33.982159],[102.310132,33.971675],[102.316179,33.994071],[102.287286,33.977553],[102.277768,33.990021],[102.25817,33.975647],[102.241484,33.981524],[102.238012,33.963653],[102.202624,33.967068],[102.198592,33.978347],[102.1669,33.982874],[102.136327,33.965242],[102.205424,33.90493],[102.233868,33.870187],[102.253354,33.861518],[102.261977,33.824847],[102.237004,33.798746],[102.238572,33.788877],[102.300277,33.782349],[102.324354,33.754563],[102.322898,33.746043],[102.295238,33.739034],[102.284375,33.723423],[102.301285,33.70988],[102.325474,33.735291],[102.3416,33.720873],[102.328386,33.706294],[102.313939,33.668839],[102.333649,33.642053],[102.344512,33.606883],[102.386619,33.598747],[102.410137,33.579439],[102.440261,33.574811],[102.454596,33.555179],[102.477889,33.543446],[102.474529,33.529635],[102.445973,33.531152],[102.461987,33.504323],[102.4537,33.483636],[102.462435,33.449681],[102.442277,33.453117],[102.434214,33.439451],[102.403641,33.424585],[102.396138,33.405319],[102.367134,33.408996],[102.370157,33.394125],[102.347424,33.409716],[102.31058,33.397963],[102.300949,33.410915],[102.277096,33.407637],[102.263433,33.417151],[102.261081,33.396363],[102.238124,33.388607],[102.219758,33.351494],[102.186946,33.332772],[102.205536,33.320128],[102.202288,33.300998],[102.217518,33.248151],[102.203408,33.223317],[102.174963,33.233652],[102.15279,33.253117],[102.144167,33.274418],[102.111466,33.285628],[102.108667,33.257762],[102.089517,33.227563],[102.089517,33.204968],[102.055025,33.189981],[102.010566,33.191745],[101.993767,33.199999],[101.957371,33.186695],[101.935646,33.186855],[101.923215,33.155831],[101.884132,33.132495],[101.86599,33.103056],[101.825562,33.119501],[101.840681,33.160401],[101.841352,33.1891],[101.82825,33.214984],[101.797565,33.233011],[101.788382,33.229006],[101.767553,33.263368],[101.8091,33.28835],[101.823882,33.271215],[101.832282,33.291712],[101.858039,33.312044],[101.876069,33.314125],[101.875509,33.349334],[101.886371,33.382369],[101.914144,33.405878],[101.915936,33.425784],[101.946285,33.442808],[101.924447,33.45],[101.927359,33.472932],[101.907425,33.480201],[101.897906,33.519096],[101.907201,33.542009],[101.885252,33.56324],[101.882004,33.57928],[101.844376,33.602416],[101.830826,33.578801],[101.830266,33.554541],[101.805964,33.548155],[101.782335,33.556297],[101.770016,33.545042],[101.777856,33.533946],[101.77584,33.492023],[101.768785,33.465102],[101.775952,33.453516],[101.75949,33.444726],[101.734516,33.445126],[101.695769,33.433937],[101.692969,33.422427],[101.662733,33.38165],[101.649294,33.324609],[101.678187,33.297476],[101.706744,33.298517],[101.730933,33.283866],[101.740452,33.269133],[101.727573,33.2564],[101.727461,33.240461],[101.711111,33.213462],[101.680651,33.202003],[101.686698,33.185413],[101.65411,33.162726],[101.661165,33.136505],[101.634176,33.102414],[101.567095,33.154628],[101.557576,33.167136],[101.515469,33.193027],[101.486464,33.227163],[101.475937,33.223237],[101.428231,33.230287],[101.40337,33.22524],[101.386795,33.207372],[101.396202,33.187176],[101.393851,33.157835],[101.381196,33.154388],[101.374477,33.171385],[101.328898,33.223477],[101.328674,33.237337],[101.310532,33.244466],[101.296982,33.262247],[101.246251,33.262327],[101.222734,33.270335],[101.206944,33.255279],[101.203248,33.269614],[101.183538,33.270094],[101.156997,33.237017],[101.127881,33.223798],[101.120377,33.186615],[101.13348,33.1891],[101.130568,33.168899],[101.158677,33.144204],[101.151174,33.132415],[101.169652,33.101692],[101.143223,33.08412],[101.146582,33.056832],[101.162149,33.056591],[101.184434,33.041258],[101.171332,33.013555],[101.184098,32.984236],[101.129112,32.989539],[101.133704,32.947997],[101.123961,32.910054],[101.176259,32.894132],[101.223854,32.855522],[101.222622,32.838303],[101.23774,32.827681],[101.224414,32.771569],[101.22307,32.725816],[101.190146,32.686568],[101.157445,32.661577],[101.130232,32.660609],[101.111866,32.637223],[101.112874,32.671897],[101.083981,32.671897],[101.076702,32.683022],[101.030563,32.660528],[100.997191,32.627867],[100.956876,32.62093],[100.932126,32.60068],[100.914768,32.616574],[100.89797,32.615686],[100.887555,32.632545],[100.860679,32.635529],[100.834026,32.648917],[100.807037,32.646901],[100.799645,32.654884],[100.773552,32.640933],[100.765825,32.663673],[100.752051,32.65053],[100.692025,32.677701],[100.684746,32.67109],[100.709271,32.649804],[100.717559,32.617058],[100.70412,32.611249],[100.676347,32.627867],[100.666156,32.624318],[100.658653,32.599712],[100.658093,32.546686],[100.667948,32.523674],[100.645439,32.52642],[100.602883,32.553629],[100.572311,32.556777],[100.56492,32.569611],[100.544762,32.570096],[100.54465,32.581475],[100.52438,32.594952],[100.525052,32.611249],[100.508702,32.61012],[100.516541,32.630045],[100.48888,32.667221],[100.476338,32.672461],[100.470178,32.694548],[100.449909,32.694065],[100.434902,32.720095],[100.420344,32.731778],[100.390107,32.695596],[100.378685,32.698417],[100.398842,32.739109],[100.400634,32.756186],[100.33445,32.718241],[100.264345,32.742734],[100.262106,32.729119],[100.240268,32.722673],[100.230861,32.696241],[100.229741,32.65053],[100.20992,32.605844],[100.188082,32.630771],[100.131864,32.632465],[100.110139,32.639239],[100.105435,32.656739],[100.087853,32.669075],[100.125257,32.714857],[100.138696,32.720981],[100.136344,32.740881],[100.121785,32.7764],[100.117082,32.802487],[100.123129,32.837257],[100.109691,32.846591],[100.109243,32.86228],[100.088637,32.864211],[100.082366,32.885125],[100.066016,32.895982],[100.02962,32.895821],[100.038355,32.929108],[100.002519,32.941647],[99.970826,32.939075],[99.956604,32.948077],[99.947421,32.986887],[99.908897,33.020622],[99.903074,33.047038],[99.877317,33.045513],[99.882692,33.025199],[99.877765,32.993716],[99.863654,32.980219],[99.850888,32.941888],[99.828714,32.95097],[99.802845,32.941969],[99.788287,32.956596],[99.775296,32.952337],[99.763986,32.924445],[99.7744,32.922516],[99.791982,32.883114],[99.786495,32.861798],[99.766897,32.826232],[99.769809,32.802326],[99.76029,32.769877],[99.737109,32.745312],[99.73946,32.732503],[99.717735,32.732181],[99.7062,32.764079],[99.651326,32.772132],[99.640127,32.790733],[99.607427,32.780829],[99.586485,32.792665],[99.581782,32.813515],[99.557145,32.840074],[99.532396,32.84804],[99.490176,32.850936],[99.452772,32.862441],[99.435302,32.877242],[99.376173,32.899842],[99.354112,32.885446],[99.343473,32.895258],[99.327235,32.881505],[99.282888,32.885044],[99.269113,32.878529],[99.259482,32.907963],[99.245596,32.928384],[99.248955,32.951533],[99.233277,32.954426],[99.234733,32.983353],[99.215135,32.990181],[99.20864,33.018694],[99.179411,33.04487],[99.147607,33.05041],[99.124649,33.045994],[99.092733,33.078101],[99.075039,33.075934],[99.025764,33.095033],[99.014566,33.081311],[98.969883,33.099526],[98.957004,33.118298],[98.935502,33.115651],[98.902802,33.125838],[98.895635,33.135061],[98.860695,33.150058],[98.829674,33.181325],[98.830906,33.196874],[98.804701,33.219311],[98.813548,33.248311],[98.807501,33.26529],[98.785663,33.276821],[98.758786,33.278102],[98.774017,33.301799],[98.764274,33.321088],[98.783424,33.344054],[98.779168,33.371652],[98.762818,33.37901],[98.74658,33.405159],[98.734037,33.410275],[98.744228,33.454315],[98.742212,33.477725],[98.722838,33.486113],[98.72463,33.505601],[98.680059,33.521571],[98.668748,33.544324],[98.648031,33.548794],[98.657774,33.576806],[98.65251,33.594997],[98.622722,33.610233],[98.61757,33.637269],[98.656654,33.647315],[98.594501,33.70239],[98.596181,33.717129],[98.581734,33.732185],[98.538059,33.747556],[98.516893,33.77415],[98.497968,33.768497],[98.486769,33.782111],[98.492928,33.793254],[98.463475,33.848395],[98.435143,33.843145],[98.406922,33.867244],[98.42708,33.908189],[98.411849,33.924721],[98.415433,33.95698],[98.431111,33.961826],[98.44063,33.981365],[98.428199,34.029002],[98.391915,34.058842],[98.401882,34.087718],[98.338721,34.094777],[98.308821,34.087718],[98.209936,34.078517],[98.157302,34.107387],[98.14196,34.104374],[98.098172,34.122928],[98.050354,34.114682],[98.027844,34.123325],[98.012614,34.14576],[97.995592,34.153765],[97.944526,34.198612],[97.88898,34.204474],[97.810701,34.207484],[97.796478,34.199167],[97.790879,34.178093],[97.773409,34.162007],[97.667021,34.127685],[97.662989,34.117458],[97.683371,34.080738],[97.703193,34.058127],[97.702297,34.036781],[97.687403,34.016619],[97.65851,34.012174],[97.652798,33.998359],[97.659854,33.956345],[97.644399,33.943315],[97.633985,33.919078],[97.601844,33.930045],[97.546746,33.914151],[97.522109,33.903261],[97.503631,33.912005],[97.482801,33.896981],[97.468467,33.902069],[97.460628,33.887361],[97.395339,33.88927],[97.389628,33.879967],[97.398027,33.848315],[97.371822,33.841952],[97.368798,33.824131],[97.406426,33.795165],[97.409898,33.767621],[97.423224,33.754961],[97.417849,33.728521],[97.435319,33.682468],[97.40553,33.626663],[97.415721,33.605527],[97.437111,33.600183],[97.448645,33.583668],[97.472835,33.587418],[97.525245,33.575769],[97.51203,33.519415],[97.542155,33.492662],[97.55257,33.465662],[97.582358,33.468777],[97.604644,33.451838],[97.625585,33.461507],[97.645183,33.449041],[97.665005,33.447683],[97.67486,33.433058],[97.703641,33.428981],[97.741268,33.411635],[97.750003,33.397403],[97.719991,33.386288],[97.702297,33.359734],[97.676316,33.357574],[97.676092,33.341013],[97.636784,33.344614],[97.622002,33.335972],[97.615395,33.301799],[97.606548,33.287469],[97.60666,33.262567],[97.577655,33.234453],[97.575191,33.220834],[97.546746,33.203686],[97.532972,33.20625],[97.518078,33.182607],[97.487953,33.168178],[97.486273,33.145246],[97.498032,33.137949],[97.487729,33.106746],[97.516958,33.09752],[97.537339,33.058196],[97.542379,33.036199],[97.517966,33.022148],[97.497696,33.021826],[97.523789,32.988575],[97.464995,32.972024],[97.447413,32.976283],[97.410122,32.9619],[97.375741,32.956676],[97.361967,32.941969],[97.369582,32.926535],[97.361743,32.906998],[97.350096,32.903943],[97.355472,32.886894],[97.379101,32.88239],[97.3931,32.828727],[97.380221,32.826313],[97.38582,32.780266],[97.424792,32.727749],[97.423784,32.704945],[97.480786,32.664076],[97.484705,32.652788],[97.513262,32.648836],[97.543723,32.621737],[97.606324,32.615283],[97.610579,32.596],[97.629729,32.575907],[97.662989,32.560006],[97.698601,32.536836],[97.736229,32.52642],[97.757507,32.530942],[97.768817,32.518344],[97.797262,32.520202],[97.804541,32.501706],[97.836906,32.504129],[97.862775,32.499364],[97.880245,32.486358],[97.90645,32.489347],[97.940158,32.482399],[97.947101,32.470765],[97.970283,32.470765],[98.008582,32.451128],[98.023589,32.452502],[98.036803,32.42898],[98.051362,32.428576],[98.086526,32.398499],[98.112171,32.391787],[98.124154,32.400682],[98.139384,32.379089],[98.163125,32.375611],[98.197505,32.36016],[98.218895,32.34236],[98.208928,32.319458],[98.230542,32.262865],[98.219791,32.25671],[98.219119,32.234191],[98.258202,32.210613],[98.295494,32.149898],[98.301654,32.12419],[98.328867,32.108291],[98.345665,32.087277],[98.362687,32.078918],[98.405578,32.04353],[98.402666,32.026642],[98.434807,32.007802],[98.427863,31.996432],[98.434023,31.959873],[98.421592,31.94232],[98.432567,31.922569],[98.40345,31.910456],[98.399307,31.895902],[98.426296,31.856782],[98.415657,31.830259],[98.44119,31.829445],[98.445221,31.807472],[98.461124,31.800228],[98.460116,31.78183],[98.476802,31.782318],[98.493488,31.768233],[98.520477,31.730118],[98.518573,31.716268],[98.548138,31.713498],[98.556985,31.690031],[98.553961,31.656612],[98.587893,31.631989],[98.62093,31.590309],[98.650942,31.578806],[98.696633,31.538572],[98.695849,31.530899],[98.74042,31.493176],[98.771217,31.476024],[98.787231,31.474227],[98.79507,31.458951],[98.837625,31.436564],[98.843225,31.41695],[98.887012,31.374602],[98.810636,31.30679],[98.805933,31.279291],[98.780064,31.251129],[98.747812,31.262837],[98.733813,31.289277],[98.714439,31.304253],[98.692714,31.332644],[98.646127,31.339025],[98.632912,31.332235],[98.616114,31.303762],[98.60346,31.256615],[98.607715,31.228037],[98.623282,31.221321],[98.621042,31.203547],[98.604804,31.18413],[98.638736,31.179213],[98.643663,31.169544],[98.67502,31.154055],[98.709848,31.11864],[98.712424,31.083213],[98.734261,31.066807],[98.736949,31.04925],[98.774801,31.031114],[98.806045,30.995654],[98.796862,30.948354],[98.774465,30.908426],[98.782192,30.891497],[98.848712,30.850312],[98.856999,30.829918],[98.878725,30.822352],[98.883204,30.799731],[98.901794,30.785086],[98.952301,30.769699],[98.963947,30.732166],[98.936958,30.716277],[98.930799,30.703266],[98.907506,30.698325],[98.905938,30.683006],[98.923632,30.639589],[98.922064,30.609095],[98.942558,30.590629],[98.926767,30.569439],[98.937966,30.549563],[98.931583,30.527703],[98.945917,30.499155],[98.944349,30.482731],[98.965403,30.450041],[98.962715,30.426838],[98.974026,30.397929],[98.967307,30.375375],[98.973242,30.353558],[98.967419,30.334961],[98.981529,30.321321],[98.985001,30.274848],[98.970331,30.260041],[98.974362,30.231331],[98.991832,30.216435],[98.981529,30.182911],[98.989144,30.15186],[99.014678,30.135461],[99.009862,30.121296],[99.044802,30.080033],[99.034387,30.022832],[99.043234,30.015037],[99.054993,29.958379],[99.051297,29.942529],[99.06832,29.931407],[99.058017,29.921364],[99.052977,29.892888],[99.041667,29.881927],[99.034051,29.855433],[99.01367,29.817881],[99.018933,29.791952],[99.000679,29.737164],[98.997768,29.68767],[98.992056,29.663205],[99.011318,29.628495],[99.014678,29.607347],[99.052081,29.563955],[99.044802,29.51996],[99.049394,29.49112],[99.061376,29.478948],[99.056897,29.456851],[99.066864,29.420818],[99.058689,29.417398],[99.069775,29.327091],[99.068544,29.297445],[99.084782,29.291264],[99.094189,29.267539],[99.115242,29.242053],[99.111211,29.216645],[99.119162,29.198922],[99.104939,29.162632],[99.11793,29.102397],[99.113786,29.074527],[99.118602,29.033754],[99.127561,29.016586],[99.122969,28.998411],[99.131816,28.949479],[99.123529,28.890126],[99.104044,28.841982],[99.104268,28.81421],[99.11737,28.780554],[99.114346,28.765863],[99.133832,28.734795],[99.126889,28.699517],[99.140887,28.68221],[99.147383,28.641031],[99.162277,28.635735],[99.159253,28.621108],[99.172804,28.613793],[99.167093,28.59521],[99.183779,28.588903],[99.170116,28.565185],[99.172132,28.545164],[99.191618,28.493073],[99.183443,28.472701],[99.18725,28.439862],[99.165525,28.424449],[99.175828,28.400863],[99.201137,28.377439],[99.200913,28.364377],[99.230365,28.349965],[99.238429,28.317004],[99.280648,28.298031],[99.289495,28.286056],[99.281544,28.259908],[99.299574,28.259064],[99.306741,28.227593],[99.3456,28.20447],[99.361055,28.181087],[99.375949,28.180834],[99.402378,28.150691],[99.389164,28.181425],[99.386924,28.210293],[99.405962,28.262523],[99.417608,28.266741],[99.413801,28.292803],[99.393083,28.317762],[99.408985,28.331673],[99.40697,28.357804],[99.420856,28.36876],[99.437318,28.398504],[99.430935,28.416195],[99.417832,28.4167],[99.404506,28.444241],[99.426455,28.452578],[99.414025,28.476826],[99.395659,28.493157],[99.402826,28.514199],[99.394539,28.524213],[99.402938,28.545753],[99.426791,28.555259],[99.463411,28.549202],[99.466099,28.579736],[99.497007,28.602863],[99.496672,28.616231],[99.518173,28.613793],[99.540795,28.623546],[99.542586,28.670614],[99.531724,28.680025],[99.553785,28.710438],[99.601044,28.726396],[99.615826,28.742185],[99.605859,28.771572],[99.622545,28.795243],[99.625569,28.814713],[99.678427,28.810266],[99.700601,28.835019],[99.719527,28.844751],[99.72367,28.810769],[99.722774,28.755956],[99.736437,28.734711],[99.733189,28.719509],[99.756482,28.700357],[99.794446,28.699097],[99.841705,28.653218],[99.834538,28.628085],[99.873285,28.631784],[99.875973,28.611439],[99.91864,28.599079],[99.961531,28.561568],[99.964443,28.539611],[99.987065,28.524465],[99.990312,28.476658],[100.000839,28.464955],[100.045186,28.446178],[100.060864,28.447694],[100.074639,28.424365],[100.060976,28.405833],[100.054257,28.376597],[100.099948,28.359405],[100.134552,28.351651],[100.172628,28.321135],[100.168708,28.296345],[100.147543,28.288755],[100.188418,28.252737],[100.163445,28.2335],[100.168148,28.220758],[100.153366,28.208268],[100.10286,28.201769],[100.091997,28.182354],[100.061984,28.193834],[100.050337,28.181763],[100.033315,28.184633],[100.021109,28.147398],[100.039699,28.130592],[100.061536,28.082776],[100.086733,28.030374],[100.12089,28.018707],[100.142615,27.991817],[100.196145,27.93734],[100.16994,27.907637],[100.210479,27.877248],[100.25785,27.864972],[100.294918,27.869544],[100.30914,27.859129],[100.30858,27.830421],[100.286071,27.805856],[100.302869,27.792386],[100.307125,27.748658],[100.299509,27.736113],[100.32773,27.720429],[100.344416,27.734333],[100.3508,27.755947],[100.374765,27.754591],[100.377005,27.775608],[100.392795,27.787556],[100.411609,27.815683],[100.415192,27.840923],[100.443189,27.866242],[100.478017,27.857859],[100.495599,27.844649],[100.504334,27.852016],[100.511166,27.827626],[100.536587,27.824661],[100.546442,27.808567],[100.55988,27.824153],[100.607027,27.855996],[100.609043,27.876232],[100.634688,27.915338],[100.654958,27.910853],[100.679819,27.924224],[100.704456,27.886814],[100.699865,27.86912],[100.719462,27.858283],[100.708152,27.842278],[100.707032,27.801366],[100.73962,27.774507],[100.749923,27.772897],[100.775456,27.743064],[100.781503,27.693635],[100.789007,27.684391],[100.836489,27.681677],[100.848472,27.670905],[100.832346,27.650207],[100.850488,27.640705],[100.828202,27.615758],[100.855303,27.62365],[100.854071,27.596662],[100.86807,27.591824],[100.912081,27.521689],[100.901554,27.486265],[100.90133,27.453379],[100.921264,27.47131],[100.93683,27.469101],[100.957212,27.43825],[100.951836,27.427199],[101.001783,27.349303],[101.020261,27.344454],[101.010182,27.312292],[101.030004,27.294591],[101.0281,27.266586],[101.042546,27.247003],[101.038963,27.233464],[101.059568,27.198629],[101.082526,27.195051],[101.118698,27.20868],[101.170436,27.195648],[101.168084,27.165232],[101.145351,27.103779],[101.157221,27.094826],[101.137399,27.022329],[101.227213,26.984441],[101.227101,26.958919],[101.264505,26.955504],[101.255546,26.923913],[101.267753,26.90299],[101.293958,26.896157],[101.31154,26.902905],[101.323299,26.888299],[101.365406,26.883686],[101.374701,26.865318],[101.399674,26.840453],[101.372013,26.800367],[101.379852,26.786432],[101.357791,26.770614],[101.390267,26.750004],[101.389707,26.723146],[101.421624,26.726312],[101.43607,26.740596],[101.457124,26.729733],[101.459139,26.747353],[101.445925,26.774205],[101.465747,26.786688],[101.513341,26.768562],[101.510654,26.754452],[101.492176,26.746412],[101.498895,26.732214],[101.472802,26.721436],[101.454548,26.703641],[101.4541,26.691148],[101.481201,26.673177],[101.461043,26.640737],[101.461939,26.606746],[101.452084,26.601009],[101.400234,26.605119],[101.39609,26.592017],[101.406617,26.556383],[101.422967,26.531708],[101.438422,26.538477],[101.439766,26.512684],[101.458691,26.495456],[101.506958,26.499656],[101.530027,26.467252],[101.565639,26.454563],[101.588149,26.425834],[101.635632,26.396069],[101.631488,26.359517],[101.660605,26.346816],[101.640335,26.318833],[101.660381,26.310849],[101.646942,26.305183],[101.621073,26.312824],[101.597444,26.303466],[101.585797,26.283888],[101.59442,26.261559],[101.616706,26.249792],[101.630368,26.224879],[101.649966,26.234244],[101.67158,26.231838],[101.690057,26.241717],[101.705064,26.224449],[101.735748,26.219982],[101.773152,26.168247],[101.807644,26.156298],[101.797229,26.142198],[101.796558,26.114769],[101.819515,26.087074],[101.839897,26.082429]]],[[[106.264296,30.209732],[106.260265,30.207911],[106.260377,30.20402],[106.260601,30.196985],[106.264296,30.209732]]],[[[106.976648,30.088071],[106.975864,30.087906],[106.976088,30.083596],[106.981912,30.085171],[106.980456,30.087657],[106.979784,30.088071],[106.978552,30.087408],[106.97732,30.087491],[106.976648,30.088071]]],[[[105.558887,30.185561],[105.556536,30.187465],[105.551048,30.179186],[105.561463,30.183656],[105.558887,30.185561]]]]}}]}

  • 1
    点赞
  • 3
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值