数据库里的省市区三级数据转json

@Data
@AllArgsConstructor
@NoArgsConstructor
@Builder
@ToString
public class AreaDataVo {
    private Integer id;
    private Integer pid;
    private String cityName;
    private String type;
    private List<AreaDataVo> childList;
}
List<AreaDataVo> mAreaCodeList2 = assetEnumMapper.getCHinaList();//这里是查询数据库里的所有记录
        List<AreaDataVo> resultList = new ArrayList<>();
        //缓存所有地区
        Map<Integer, AreaDataVo> areaMap = new HashMap<>(mAreaCodeList2.size());
        mAreaCodeList2.forEach(area -> {
            AreaDataVo vo = areaMap.get(area.getId());
            //判断这条记录是否缓存过
            if (vo == null) {
                //没有缓存过开始缓存
                vo = new AreaDataVo();
                vo.setChildList(new ArrayList<>());
                areaMap.put(area.getId(), vo);
            }
            vo.setId(area.getId());
            vo.setCityName(area.getCityName());
            vo.setPid(area.getPid());
            vo.setType(area.getType());
            Integer parentId = area.getPid();
            //pid >0 的不是顶级父类的走这边
            if (parentId > 0) {
                AreaDataVo parentVo = areaMap.get(parentId);
                //这条记录的父类没有缓存过开始缓存
                if (parentVo!=null) {
                    parentVo = new AreaDataVo();
                    parentVo.setId(parentId);
                    parentVo.setChildList(new ArrayList<>());
                    areaMap.put(parentId , parentVo);
                }
                parentVo.getChildList().add(vo);
            } else {
                //pid =0 是顶级父类的走这边
                resultList.add(vo);
            }
        });
        String s = JSONArray.toJSONString(resultList);
        System.out.println("--------->" + s);

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 2
    评论
ecahrts省市县地区json eg: 110100.josn {"type": "FeatureCollection", "features": [{"type":"Feature","properties":{"name":"顺义区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.863170195313,40.2896681953126],[116.873267851563,40.2634804511719],[116.898316679688,40.2285353828125],[116.927345,40.223843],[116.934151640625,40.2196486640625],[116.927926054688,40.1996486640626],[116.944151640625,40.1896486640626],[116.940538359375,40.1780373359375],[116.970382109375,40.1596486640626],[116.960777617188,40.1288112617188],[116.973912382813,40.0888747382813],[116.970787382813,40.0788430000001],[116.974151640625,40.0680373359375],[116.961158476563,40.0600307441407],[116.957345,40.0438430000001],[116.927613554688,40.0511452460938],[116.912345,40.0477223945313],[116.902345,40.0499636054687],[116.872345,40.0432387519532],[116.83033328125,40.0526564765625],[116.813013945313,40.0275722480469],[116.802345,40.0299636054688],[116.792345,40.0277223945312],[116.7720715625,40.0322670722656],[116.767345,40.0138430000001],[116.733414335938,40.0220180488282],[116.712345,40.0178554511719],[116.702345,40.0198305488282],[116.677261992188,40.0148744941406],[116.6016028125,40.0299806953126],[116.597345,40.0138430000001],[116.5466028125,40.0430995917969],[116.51838015625,40.0758571601563],[116.457345,40.0838430000001],[116.46142703125,40.0897585273438],[116.486158476563,40.1068325019531],[116.475621367188,40.153843],[116.483565703125,40.1892897773437],[116.465953398438,40.2163381171876],[116.497345,40.263843],[116.512345,40.2583339667969],[116.550831328125,40.2724672675781],[116.604410429688,40.2578041816407],[116.622345,40.2592446113281],[116.637345,40.2580397773438],[116.653961210938,40.2593752265626],[116.676456328125,40.2332692695312],[116.737345,40.283843],[116.746568632813,40.27097190625],[116.762779570313,40.26776878125],[116.781519804688,40.2796681953125],[116.81666140625,40.2889394355469],[116.837345,40.3177956367188],[116.851519804688,40.2980178046876],[116.863170195313,40.2896681953126]],[[116.574132109375,40.0617617011719],[116.597345,40.0438430000001],[116.59297,40.0896742988281],[116.581832304688,40.0880287910156],[116.567506132813,40.1065908027344],[116.574132109375,40.0617617011719]]]]}},{"type":"Feature","properties":{"name":"昌平区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.137345,40.3438430000001],[116.140767851563,40.3316506171876],[116.149537382813,40.3404201484375],[116.141793242188,40.3593959785156],[116.21209109375,40.3794960761719],[116.232345,40.376977765625],[116.257345,40.3800868964844],[116.281890898438,40.3770339179688],[116.287345,40.3838430000001],[116.33797,40.3775112128907],[116.364273710938,40.3342006660157],[116.417345,40.3275991035156],[116.44150515625,40.3306044746094],[116.443590117188,40.3138430000001],[116.440909453125,40.2923207832031],[116.481793242188,40.2682900214844],[116.497345,40.263843],[116.465953398438,40.2163381171876],[116.483565703125,40.1892897773437],[116.475621367188,40.153843],[116.486158476563,40.1068325019531],[116.46142703125,40.0897585273438],[116.457345,40.0838430000001],[116.453214140625,40.0510927558594],[116.427110625,40.0638417792969],[116.400704375,40.050483625],[116.393985625,40.037202375],[116.387345,40.033843],[116.382896757813,40.0393959785157],[116.360885039063,40.0486708808594],[116.38025515625,40.0641799140625],[116.327345,40.0575991035156],[116.29736453125,40.0613283515625],[116.282896757813,40.0793959785157],[116.266236601563,40.0927370429687],[116.252799101563,40.1095217109375],[116.241846953125,40.10815940625],[116.232896757813,40.1293959785156],[116.201793242188,40.1482900214844],[116.192545195313,40.1598378730469],[116.16138796875,40.1415248847657],[116.163404570313,40.1253383613282],[116.067164335938,40.1085903144531],[116.047345,40.0838430000001],[116.007642851563,40.0773207832032],[115.982345,40.081059796875],[115.961773710938,40.0780202460938],[115.95298953125,40.0994863105469],[115.909117460938,40.1333498359376],[115.847345,40.143843],[115.840396757813,40.1721401191407],[115.86326296875,40.1879274726563],[115.884346953125,40.2248671699219],[115.91978640625,40.2493361640625],[115.95326296875,40.2579274726563],[115.957345,40.263843],[115.981314726563,40.283755109375],[115.982896757813,40.299233625],[115.962808867188,40.3159181953125],[116.009464140625,40.3333303046875],[116.029420195313,40.3093056464844],[116.042808867188,40.3183803535156],[116.054298125,40.332212140625],[116.092345,40.3283339667969],[116.102735625,40.3293923164063],[116.119420195313,40.3093056464844],[116.132896757813,40.3184401679688],[116.130855742188,40.338452375],[116.137345,40.3438430000001]]]]}},{"type":"Feature","properties":{"name":"朝阳区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.617345,39.883843],[116.617345,39.8938430000001],[116.630152617188,39.8888430000001],[116.617345,39.883843]]],[[[116.617345,39.8938430000001],[116.604537382813,39.8888430000001],[116.617345,39.883843],[116.613443632813,39.8577455878907],[116.601246367188,39.8499404121094],[116.5914465625,39.8220705390626],[116.536158476563,39.8376076484375],[116.527345,39.823843],[116.473433867188,39.8149867988282],[116.437838164063,39.8202480292969],[116.427345,39.833843],[116.454151640625,39.8484108710938],[116.437345,39.873843],[116.4308215625,39.9135451484376],[116.435811796875,39.9473073554688],[116.405264921875,39.9708876777344],[116.387345,39.9638430000001],[116.387345,39.9738430000001],[116.377345,39.9738430000001],[116.349678984375,40.0225026679688],[116.387345,40.033843],[116.393985625,40.037202375],[116.400704375,40.050483625],[116.427110625,40.0638417792969],[116.453214140625,40.0510927558594],[116.457345,40.0838430000001],[116.51838015625,40.0758571601563],[116.5466028125,40.0430995917969],[116.597345,40.0138430000001],[116.64142703125,40.0025295234375],[116.63326296875,39.9479274726563],[116.62142703125,39.9297585273438],[116.617345,39.8938430000001]]],[[[116.567506132813,40.1065908027344],[116.581832304688,40.0880287910156],[116.59297,40.0896742988281],[116.597345,40.0438430000001],[116.574132109375,40.0617617011719],[116.567506132813,40.1065908027344]]]]}},{"type":"Feature","properties":{"name":"大兴区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.417345,39.503843],[116.410499296875,39.5277809882813],[116.392896757813,39.5108327460938],[116.407345,39.4837270332032],[116.422345,39.47640159375],[116.43334109375,39.4817702460938],[116.447345,39.453843],[116.44005984375,39.4447475410156],[116.331793242188,39.4582900214844],[116.292896757813,39.4893959785156],[116.261793242188,39.4982900214844],[116.237345,39.5138430000001],[116.237345,39.563843],[116.217345,39.563843],[116.217345,39.573843],[116.2116028125,39.6088088203125],[116.213824492188,39.6238430000001],[116.210562773438,39.6458974433594],[116.24298953125,39.7481996894532],[116.247345,39.793843],[116.284703398438,39.7890627265625],[116.302413359375,39.7677419257813],[116.32748171875,39.8083803535157],[116.352808867188,39.7993056464844],[116.369420195313,39.7793056464844],[116.431300078125,39.7922487617188],[116.407515898438,39.8120082832032],[116.421881132813,39.8293056464844],[116.427345,39.833843],[116.437838164063,39.8202480292969],[116.473433867188,39.8149867988282],[116.527345,39.823843],[116.532882109375,39.8091078925782],[116.530816679688,39.788843],[116.532896757813,39.768452375],[116.515308867188,39.753843],[116.532896757813,39.7392336250001],[116.530011015625,39.7109609199219],[116.641480742188,39.7223220039063],[116.6428528125,39.7088430000001],[116.640968046875,39.6903578925781],[116.661881132813,39.6783803535156],[116.692808867188,39.6693056464844],[116.701881132813,39.6483803535157],[116.717345,39.6238430000001],[116.699390898438,39.6099831367187],[116.713160429688,39.5993544746094],[116.710972929688,39.5845546699219],[116.667174101563,39.6017726875],[116.638736601563,39.5975710273438],[116.58013796875,39.6206081367187],[116.54298953125,39.5981996894532],[116.52170046875,39.5894863105469],[116.512095976563,39.5660195136719],[116.471519804688,39.5494130683594],[116.4731653125,39.5383034492188],[116.44170046875,39.5194863105469],[116.43298953125,39.5081996894532],[116.417345,39.503843]]]]}},{"type":"Feature","properties":{"name":"房山区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.773839140625,39.9269374824219],[115.84232546875,39.8984535957032],[115.898365507813,39.9185622382812],[115.94166140625,39.9066347480469],[115.912628203125,39.8806923652344],[115.952154570313,39.8685341621094],[115.982735625,39.8703566718751],[115.981436796875,39.8486074042969],[116.047345,39.843843],[116.072535429688,39.8290334296875],[116.085533476563,39.7879787421875],[116.122125273438,39.7894289375001],[116.122545195313,39.7788430000001],[116.1217590625,39.7590334296875],[116.152535429688,39.7686525703125],[116.162877226563,39.7798122382813],[116.192530546875,39.778637921875],[116.2157825,39.8279079414063],[116.247345,39.793843],[116.24298953125,39.7481996894532],[116.210562773438,39.6458974433594],[116.213824492188,39.6238430000001],[116.2116028125,39.6088088203125],[116.217345,39.573843],[116.163424101563,39.5856044746094],[116.131104765625,39.56757346875],[116.0123840625,39.5792482734376],[115.992667265625,39.5776638007813],[115.975640898438,39.5974306464844],[115.962345,39.5676381660156],[115.939742460938,39.5694533515626],[115.92271609375,39.5892153144532],[115.901168242188,39.5984706855469],[115.903526640625,39.5691664863281],[115.8780090625,39.54718284375],[115.843326445313,39.5499697089844],[115.820465117188,39.5372158027345],[115.822847929688,39.5075978828125],[115.773961210938,39.5115248847656],[115.767345,39.503843],[115.749595976563,39.5160964179688],[115.73326296875,39.5397585273438],[115.69142703125,39.5679274726563],[115.68326296875,39.5997585273438],[115.665211210938,39.6122206855469],[115.642789335938,39.5976222968751],[115.632345,39.5999636054688],[115.622345,39.5977223945313],[115.607345,39.6010842109375],[115.569581328125,39.5926186347657],[115.537345,39.6136110664062],[115.5080090625,39.5945082832032],[115.515709257813,39.6288430000001],[115.510079375,39.6539394355469],[115.475753203125,39.6462441230469],[115.493585234375,39.6887050605469],[115.478150664063,39.7385036445313],[115.434874296875,39.7496096015625],[115.42326296875,39.7776625800782],[115.4810559375,39.7924941230469],[115.507345,39.7866017890625],[115.552979765625,39.79683128125],[115.557345,39.8138430000001],[115.583902617188,39.8188002753907],[115.627891875,39.8680300117188],[115.672628203125,39.8885622382813],[115.692061796875,39.8991237617188],[115.722628203125,39.9085622382813],[115.773839140625,39.9269374824219]]]]}},{"type":"Feature","properties":{"name":"丰台区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.317345,39.8938430000001],[116.321324492188,39.8769472480469],[116.35845828125,39.8653823066407],[116.377345,39.873843],[116.39634890625,39.8501113105469],[116.411793242188,39.8693959785156],[116.437345,39.873843],[116.454151640625,39.8484108710938],[116.427345,39.833843],[116.421881132813,39.8293056464844],[116.407515898438,39.8120082832032],[116.431300078125,39.7922487617188],[116.369420195313,39.7793056464844],[116.352808867188,39.7993056464844],[116.32748171875,39.8083803535157],[116.302413359375,39.7677419257813],[116.284703398438,39.7890627265625],[116.247345,39.793843],[116.2157825,39.8279079414063],[116.192530546875,39.778637921875],[116.162877226563,39.7798122382813],[116.152535429688,39.7686525703125],[116.1217590625,39.7590334296875],[116.122545195313,39.7788430000001],[116.122125273438,39.7894289375001],[116.085533476563,39.7879787421875],[116.072535429688,39.8290334296875],[116.047345,39.843843],[116.05388796875,39.8544655585938],[116.131158476563,39.8800307441406],[116.157345,39.883843],[116.210953398438,39.8771450019531],[116.231793242188,39.8893959785157],[116.247345,39.8938430000001],[116.292506132813,39.8882009101563],[116.317345,39.8938430000001]]]]}},{"type":"Feature","properties":{"name":"海淀区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.232896757813,40.1293959785156],[116.241846953125,40.10815940625],[116.252799101563,40.1095217109375],[116.266236601563,40.0927370429687],[116.282896757813,40.0793959785157],[116.29736453125,40.0613283515625],[116.327345,40.0575991035156],[116.38025515625,40.0641799140625],[116.360885039063,40.0486708808594],[116.382896757813,40.0393959785157],[116.387345,40.033843],[116.349678984375,40.0225026679688],[116.377345,39.9738430000001],[116.377345,39.9638430000001],[116.367345,39.9638430000001],[116.367345,39.943843],[116.327345,39.943843],[116.327345,39.8938430000001],[116.317345,39.8938430000001],[116.292506132813,39.8882009101563],[116.247345,39.8938430000001],[116.243199492188,39.9201552558594],[116.199312773438,39.910317609375],[116.208101835938,39.9495131660157],[116.18142703125,39.9679274726563],[116.17326296875,39.9797585273438],[116.15142703125,39.9879274726563],[116.147345,39.993843],[116.16716921875,40.0075283027344],[116.130113554688,40.0286782050781],[116.07142703125,40.0379274726563],[116.06326296875,40.0597585273437],[116.047345,40.0838430000001],[116.067164335938,40.1085903144531],[116.163404570313,40.1253383613282],[116.16138796875,40.1415248847657],[116.192545195313,40.1598378730469],[116.201793242188,40.1482900214844],[116.232896757813,40.1293959785156]]]]}},{"type":"Feature","properties":{"name":"怀柔区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.682413359375,41.0035353828125],[116.67326296875,40.9684670234375],[116.70326296875,40.9297585273438],[116.714508085938,40.8997035957032],[116.75326296875,40.8897585273438],[116.80142703125,40.8479274726563],[116.83326296875,40.8397585273438],[116.869464140625,40.8245522285157],[116.877345,40.793843],[116.861881132813,40.7893056464844],[116.831519804688,40.7719167304688],[116.8328528125,40.758843],[116.831685820313,40.7473818183595],[116.812345,40.7493520332032],[116.797345,40.7478237128906],[116.780748320313,40.7495156074219],[116.7844934375,40.7127577949219],[116.713394804688,40.6861269355469],[116.700079375,40.6260756660157],[116.705826445313,40.5696901679688],[116.6732434375,40.5555580878907],[116.706422148438,40.5279970527344],[116.685406523438,40.4720680976563],[116.712896757813,40.449233625],[116.711807890625,40.4385781074219],[116.723072539063,40.4086000800782],[116.708975859375,40.3968910957032],[116.714620390625,40.3415309882813],[116.761016875,40.3214076972656],[116.737345,40.283843],[116.676456328125,40.2332692695312],[116.653961210938,40.2593752265626],[116.637345,40.2580397773438],[116.622345,40.2592446113281],[116.604410429688,40.2578041816407],[116.550831328125,40.2724672675781],[116.512345,40.2583339667969],[116.497345,40.263843],[116.481793242188,40.2682900214844],[116.440909453125,40.2923207832031],[116.443590117188,40.3138430000001],[116.44150515625,40.3306044746094],[116.417345,40.3275991035156],[116.364273710938,40.3342006660157],[116.33797,40.3775112128907],[116.287345,40.3838430000001],[116.282110625,40.3987795234375],[116.29287234375,40.4605776191407],[116.291842070313,40.486577375],[116.34533328125,40.4993190742188],[116.363678007813,40.4985915351563],[116.38252078125,40.4782558417969],[116.407345,40.4792397285157],[116.427345,40.4784462714844],[116.497496367188,40.4812270332031],[116.512154570313,40.5028224921875],[116.452623320313,40.5216701484375],[116.492535429688,40.5586525703125],[116.502154570313,40.5690334296876],[116.521920195313,40.5873476386719],[116.535362578125,40.6158278632813],[116.5628528125,40.6288014960938],[116.517862578125,40.6617995429688],[116.474732695313,40.6821559882813],[116.492535429688,40.6986525703126],[116.50732546875,40.7299855781251],[116.489503203125,40.7636611152344],[116.457345,40.7738430000001],[116.451265898438,40.7935366035156],[116.406783476563,40.8332802558594],[116.387906523438,40.8544057441407],[116.323175078125,40.9122450996094],[116.352628203125,40.9385622382813],[116.357345,40.943843],[116.367725859375,40.934223859375],[116.399483671875,40.8999477363281],[116.437345,40.8984462714844],[116.452345,40.8990407539063],[116.46978640625,40.8983498359376],[116.442535429688,40.9760951972657],[116.453345976563,40.9793984199219],[116.472345,40.9786452460938],[116.482345,40.9790407539062],[116.509288359375,40.9779726386719],[116.562428007813,40.9890908027344],[116.60033328125,40.9690334296875],[116.612891875,41.0200930000001],[116.611363554688,41.0586525703125],[116.680499296875,41.0425014472656],[116.697345,41.013843],[116.682413359375,41.0035353828125]]]]}},{"type":"Feature","properties":{"name":"门头沟区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.909117460938,40.1333498359376],[115.95298953125,40.0994863105469],[115.961773710938,40.0780202460938],[115.982345,40.081059796875],[116.007642851563,40.0773207832032],[116.047345,40.0838430000001],[116.06326296875,40.0597585273437],[116.07142703125,40.0379274726563],[116.130113554688,40.0286782050781],[116.16716921875,40.0075283027344],[116.147345,39.993843],[116.111519804688,39.9794142890625],[116.113082304688,39.9688430000001],[116.111607695313,39.958843],[116.113082304688,39.948843],[116.111226835938,39.9362831855469],[116.13298953125,39.9194863105469],[116.157345,39.883843],[116.131158476563,39.8800307441406],[116.05388796875,39.8544655585938],[116.047345,39.843843],[115.981436796875,39.8486074042969],[115.982735625,39.8703566718751],[115.952154570313,39.8685341621094],[115.912628203125,39.8806923652344],[115.94166140625,39.9066347480469],[115.898365507813,39.9185622382812],[115.84232546875,39.8984535957032],[115.773839140625,39.9269374824219],[115.722628203125,39.9085622382813],[115.692061796875,39.8991237617188],[115.672628203125,39.8885622382813],[115.627891875,39.8680300117188],[115.583902617188,39.8188002753907],[115.557345,39.8138430000001],[115.510499296875,39.8389846015625],[115.513590117188,39.863843],[115.511099882813,39.883843],[115.513687773438,39.9046218085937],[115.436803007813,39.9513210273438],[115.417345,39.943843],[115.421793242188,39.9793959785156],[115.450982695313,40.0290554023438],[115.478912382813,40.0408242011719],[115.497345,40.063843],[115.51142703125,40.0697585273438],[115.54326296875,40.0779274726563],[115.55142703125,40.0897585273438],[115.58326296875,40.0979274726563],[115.59142703125,40.1097585273438],[115.63326296875,40.1179274726563],[115.676392851563,40.1312978339844],[115.692345,40.1277223945313],[115.707345,40.1310842109375],[115.72697390625,40.1266835761719],[115.74326296875,40.1379274726563],[115.753682890625,40.1657802558594],[115.772623320313,40.1700258613281],[115.815513945313,40.1520119453126],[115.847345,40.143843],[115.909117460938,40.1333498359376]]]]}},{"type":"Feature","properties":{"name":"平谷区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.217345,40.373843],[117.221676054688,40.3675722480469],[117.236475859375,40.3708901191406],[117.26326296875,40.3297585273438],[117.27142703125,40.3079274726563],[117.28326296875,40.2997585273438],[117.292345,40.2754799628906],[117.324664335938,40.2827260566406],[117.3423840625,40.2353823066406],[117.387345,40.223843],[117.38298953125,40.2181996894531],[117.369390898438,40.2077028632813],[117.401085234375,40.1832387519531],[117.35170046875,40.1694863105469],[117.34298953125,40.1381996894531],[117.296436796875,40.1283766914063],[117.262735625,40.1080458808594],[117.22978640625,40.1129152656251],[117.207345,40.0838430000001],[117.197345,40.0838430000001],[117.197345,40.063843],[117.187345,40.063843],[117.183360625,40.0807558417969],[117.132647734375,40.0640761542969],[117.097345,40.0750722480469],[117.052471953125,40.0610964179688],[117.023531523438,40.0376552558594],[116.988179960938,40.0300307441407],[116.957345,40.0438430000001],[116.961158476563,40.0600307441407],[116.974151640625,40.0680373359375],[116.970787382813,40.0788430000001],[116.973912382813,40.0888747382813],[116.960777617188,40.1288112617188],[116.970382109375,40.1596486640626],[116.940538359375,40.1780373359375],[116.944151640625,40.1896486640626],[116.927926054688,40.1996486640626],[116.934151640625,40.2196486640625],[116.927345,40.223843],[116.93197390625,40.2292153144531],[116.971959257813,40.2412538886719],[116.949932890625,40.2602272773438],[117.002979765625,40.3059291816407],[117.001202421875,40.3280568671876],[117.042139921875,40.3392604804688],[117.052584257813,40.3384218574219],[117.08197390625,40.3492153144531],[117.12271609375,40.3584706855469],[117.15197390625,40.3692153144532],[117.217345,40.373843]]]]}},{"type":"Feature","properties":{"name":"石景山区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.208101835938,39.9495131660157],[116.199312773438,39.910317609375],[116.243199492188,39.9201552558594],[116.247345,39.8938430000001],[116.231793242188,39.8893959785157],[116.210953398438,39.8771450019531],[116.157345,39.883843],[116.13298953125,39.9194863105469],[116.111226835938,39.9362831855469],[116.113082304688,39.948843],[116.111607695313,39.958843],[116.113082304688,39.9688430000001],[116.111519804688,39.9794142890625],[116.147345,39.993843],[116.15142703125,39.9879274726563],[116.17326296875,39.9797585273438],[116.18142703125,39.9679274726563],[116.208101835938,39.9495131660157]]]]}},{"type":"Feature","properties":{"name":"通州区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.617345,39.883843],[116.604537382813,39.8888430000001],[116.617345,39.8938430000001],[116.617345,39.883843]]],[[[116.617345,39.883843],[116.630152617188,39.8888430000001],[116.617345,39.8938430000001],[116.62142703125,39.9297585273438],[116.63326296875,39.9479274726563],[116.64142703125,40.0025295234375],[116.597345,40.0138430000001],[116.6016028125,40.0299806953126],[116.677261992188,40.0148744941406],[116.702345,40.0198305488282],[116.712345,40.0178554511719],[116.733414335938,40.0220180488282],[116.767345,40.0138430000001],[116.763985625,39.9872023750001],[116.74927859375,39.9576137519532],[116.773985625,39.9504836250001],[116.780704375,39.887202375],[116.807345,39.883843],[116.812320585938,39.8773952460938],[116.858590117188,39.8430922675782],[116.892486601563,39.8380825019532],[116.917345,39.843843],[116.9286340625,39.799858625],[116.95142703125,39.7841188789063],[116.942843046875,39.7776100898438],[116.923013945313,39.782055890625],[116.91326296875,39.7679274726563],[116.90107546875,39.7595131660157],[116.906158476563,39.7368325019532],[116.873316679688,39.7141579414063],[116.89142703125,39.6879274726563],[116.897345,39.683843],[116.894801054688,39.6763869453125],[116.859644804688,39.6712636542969],[116.829888945313,39.6412990546876],[116.824801054688,39.6163869453125],[116.807345,39.613843],[116.79170046875,39.6094863105469],[116.779400664063,39.5935536933595],[116.75298953125,39.6094863105469],[116.717345,39.6238430000001],[116.701881132813,39.6483803535157],[116.692808867188,39.6693056464844],[116.661881132813,39.6783803535156],[116.640968046875,39.6903578925781],[116.6428528125,39.7088430000001],[116.641480742188,39.7223220039063],[116.530011015625,39.7109609199219],[116.532896757813,39.7392336250001],[116.515308867188,39.753843],[116.532896757813,39.768452375],[116.530816679688,39.788843],[116.532882109375,39.8091078925782],[116.527345,39.823843],[116.536158476563,39.8376076484375],[116.5914465625,39.8220705390626],[116.601246367188,39.8499404121094],[116.613443632813,39.8577455878907],[116.617345,39.883843]]]]}},{"type":"Feature","properties":{"name":"密云县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.921793242188,40.7482900214844],[116.932896757813,40.7393959785156],[116.941793242188,40.7282900214844],[116.952896757813,40.7193959785157],[116.96736453125,40.7013283515626],[117.017345,40.6951113105469],[117.052345,40.6994643378907],[117.062345,40.6982216621094],[117.087345,40.7013307929687],[117.112345,40.6982216621094],[117.122369414063,40.6994680000001],[117.202896757813,40.6893959785157],[117.234508085938,40.6772463203125],[117.252706328125,40.6795095039063],[117.298331328125,40.65269065625],[117.361119414063,40.6768239570313],[117.410640898438,40.6829848457031],[117.501793242188,40.6682900214844],[117.507345,40.663843],[117.497345,40.643843],[117.486143828125,40.6298537421875],[117.452144804688,40.6498378730469],[117.434610625,40.6279396796875],[117.414410429688,40.6304518867188],[117.411099882813,40.603843],[117.415582304688,40.5678188300782],[117.402345,40.5694643378907],[117.376954375,40.5663063789063],[117.340284453125,40.5804018378907],[117.243448515625,40.5527150703125],[117.241676054688,40.5384828925781],[117.253472929688,40.5184145332031],[117.192999296875,40.5053298164063],[117.212896757813,40.4893959785157],[117.231793242188,40.4582900214844],[117.254327421875,40.4402443671876],[117.231793242188,40.4093959785156],[117.217345,40.373843],[117.15197390625,40.3692153144532],[117.12271609375,40.3584706855469],[117.08197390625,40.3492153144531],[117.052584257813,40.3384218574219],[117.042139921875,40.3392604804688],[117.001202421875,40.3280568671876],[117.002979765625,40.3059291816407],[116.949932890625,40.2602272773438],[116.971959257813,40.2412538886719],[116.93197390625,40.2292153144531],[116.927345,40.223843],[116.898316679688,40.2285353828125],[116.873267851563,40.2634804511719],[116.863170195313,40.2896681953126],[116.851519804688,40.2980178046876],[116.837345,40.3177956367188],[116.81666140625,40.2889394355469],[116.781519804688,40.2796681953125],[116.762779570313,40.26776878125],[116.746568632813,40.27097190625],[116.737345,40.283843],[116.761016875,40.3214076972656],[116.714620390625,40.3415309882813],[116.708975859375,40.3968910957032],[116.723072539063,40.4086000800782],[116.711807890625,40.4385781074219],[116.712896757813,40.449233625],[116.685406523438,40.4720680976563],[116.706422148438,40.5279970527344],[116.6732434375,40.5555580878907],[116.705826445313,40.5696901679688],[116.700079375,40.6260756660157],[116.713394804688,40.6861269355469],[116.7844934375,40.7127577949219],[116.780748320313,40.7495156074219],[116.797345,40.7478237128906],[116.812345,40.7493520332032],[116.831685820313,40.7473818183595],[116.8328528125,40.758843],[116.831519804688,40.7719167304688],[116.861881132813,40.7893056464844],[116.877345,40.793843],[116.882896757813,40.7893959785156],[116.891793242188,40.7782900214844],[116.912896757813,40.7693959785157],[116.921793242188,40.7482900214844]]]]}},{"type":"Feature","properties":{"name":"延庆县"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.137345,40.3438430000001],[116.149537382813,40.3404201484375],[116.140767851563,40.3316506171876],[116.137345,40.3438430000001]]],[[[116.137345,40.3438430000001],[116.130855742188,40.338452375],[116.132896757813,40.3184401679688],[116.119420195313,40.3093056464844],[116.102735625,40.3293923164063],[116.092345,40.3283339667969],[116.054298125,40.332212140625],[116.042808867188,40.3183803535156],[116.029420195313,40.3093056464844],[116.009464140625,40.3333303046875],[115.962808867188,40.3159181953125],[115.982896757813,40.299233625],[115.981314726563,40.283755109375],[115.957345,40.263843],[115.942061796875,40.2885622382813],[115.932628203125,40.3091237617187],[115.922061796875,40.3285622382813],[115.912628203125,40.3491237617187],[115.862423125,40.3608046699219],[115.76982546875,40.441567609375],[115.7726575,40.4891139960937],[115.742061796875,40.4985622382813],[115.737345,40.513843],[115.765655546875,40.5479250312501],[115.812808867188,40.5583803535157],[115.8257434375,40.5882118964844],[115.882808867188,40.5983803535157],[115.906553984375,40.6119814277344],[115.95650515625,40.606889875],[115.980391875,40.5781349921875],[115.995582304688,40.5796828437501],[116.011881132813,40.5993056464844],[116.062808867188,40.6083803535157],[116.071881132813,40.6193056464844],[116.084893828125,40.63011253125],[116.113018828125,40.6272450996095],[116.11068484375,40.6501125312501],[116.159781523438,40.6714052558594],[116.171881132813,40.6993056464844],[116.222808867188,40.7583803535157],[116.237784453125,40.7929189277344],[116.296436796875,40.7507094550782],[116.318980742188,40.7778493476563],[116.449610625,40.7645351386719],[116.457345,40.7738430000001],[116.489503203125,40.7636611152344],[116.50732546875,40.7299855781251],[116.492535429688,40.6986525703126],[116.474732695313,40.6821559882813],[116.517862578125,40.6617995429688],[116.5628528125,40.6288014960938],[116.535362578125,40.6158278632813],[116.521920195313,40.5873476386719],[116.502154570313,40.5690334296876],[116.492535429688,40.5586525703125],[116.452623320313,40.5216701484375],[116.512154570313,40.5028224921875],[116.497496367188,40.4812270332031],[116.427345,40.4784462714844],[116.407345,40.4792397285157],[116.38252078125,40.4782558417969],[116.363678007813,40.4985915351563],[116.34533328125,40.4993190742188],[116.291842070313,40.486577375],[116.29287234375,40.4605776191407],[116.282110625,40.3987795234375],[116.287345,40.3838430000001],[116.281890898438,40.3770339179688],[116.257345,40.3800868964844],[116.232345,40.376977765625],[116.21209109375,40.3794960761719],[116.141793242188,40.3593959785156],[116.137345,40.3438430000001]]]]}},{"type":"Feature","properties":{"name":"东城区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.411793242188,39.8693959785156],[116.39634890625,39.8501113105469],[116.377345,39.873843],[116.39302859375,39.8783278632813],[116.384810820313,39.9444228339844],[116.377345,39.9638430000001],[116.387345,39.9638430000001],[116.405264921875,39.9708876777344],[116.435811796875,39.9473073554688],[116.4308215625,39.9135451484376],[116.437345,39.873843],[116.411793242188,39.8693959785156]]]]}},{"type":"Feature","properties":{"name":"西城区"},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.377345,39.9638430000001],[116.384810820313,39.9444228339844],[116.39302859375,39.8783278632813],[116.377345,39.873843],[116.35845828125,39.8653823066407],[116.321324492188,39.8769472480469],[116.317345,39.8938430000001],[116.327345,39.8938430000001],[116.327345,39.943843],[116.367345,39.943843],[116.367345,39.9638430000001],[116.377345,39.9638430000001]]],[[[116.377345,39.9638430000001],[116.377345,39.9738430000001],[116.387345,39.9738430000001],[116.387345,39.9638430000001],[116.377345,39.9638430000001]]]]}}]}

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

焱童鞋

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值