echarts 3D地图

vue+echarts 3D地图,可自定义地图背景底图。鼠标放上显示弹窗,弹窗自动切换。

<template>
    <div id="gbznt" class="gbznt" ref="gbznt">
        <img class="mapBg" src="../../../img/propertyTransaction/echart-bg1.png" alt="">
        <div id="mapContainer1" class="mapContainer"></div>
        <div class="echart-dialog" ref="echartDialog">
            <div class="echart-dialog-title">{{nowName}}XXXX
                <span onclick="returnArea()" class="echarts-close" v-if="isClick"></span>
            </div>
            <div class="echart-dialog-cont" v-for="item in mapAreaInfo" v-if="item.name == nowName">
                <div class="echart-item">
                    <div class="echart-item-l">
                        <img class="echart-img" src="../../../img/propertyTransaction/echart-gp.png" alt="">
                        <div class="echart-label">XXXX</div>
                    </div>
                    <div class="echart-item-r">{{item.gpzs}}
                    <span class="item-r-unit">宗</span>
                    </div>
                </div>
                <div class="echart-item echart-item1">
                    <div class="echart-item-l">
                        <img class="echart-img" src="../../../img/propertyTransaction/echart-je.png" alt="">
                        <div class="echart-label">XXXX</div>
                    </div>
                    <div class="echart-item-r">
                        <div style="width: 100%">{{item.jyje}}</div>
                        <div class="item-r-unit">万元</div>
                    </div>
                </div>
                <div class="echart-item">
                    <div class="echart-item-l">
                        <img class="echart-img" src="../../../img/propertyTransaction/echart-jy.png" alt="">
                        <div class="echart-label">XXXX</div>
                    </div>
                    <div class="echart-item-r">{{item.jyzs}}
                        <span class="item-r-unit">宗</span>
                    </div>
                </div>
                <div class="echart-item echart-item1">
                    <div class="echart-item-l">
                        <img class="echart-img" src="../../../img/propertyTransaction/echart-td.png" alt="">
                        <div class="echart-label">XXXX</div>
                    </div>
                    <div class="echart-item-r">
                        <div style="width: 100%">{{item.area}}</div>
                        <div class="item-r-unit">亩</div>
                    </div>
                </div>
            </div></div>
    </div>
</template>
<script>
    import geoJson from '../../../assets/Json/jiNan'
    let domImg = require('../../../img/propertyTransaction/echartbg.png')
    let flag = 1
    let areaColor1 = ['#0badaa', '#0b6966'];
    let areaColor2 = ['#d0d716', '#7e9300'];
    let borderColor0 = '#0badaa';//区县边界颜色
    let borderColor1 = '#f3ee19';//选中后的边界颜色
    let emphasizeColor = "#0b6966";
    let labelColor = ['#bafdff', '#ffffff'];
    import * as echarts from "echarts";

    let hdOption, initEcharts, mapFlag = true;
    var aTimer = null;
    export default {
        name: 'centerMap',
        data() {
            return {
                tmpLunboInfo:{
                    index: 0,
                    areaColor: {
                        type: 'radial',
                        x: 0.7,
                        y: 0.5,
                        r: 0.4,
                        colorStops: [{
                            offset: 0,
                            color: areaColor1[0] // 0% 处的颜色
                        }, {
                            offset: 1,
                            color: areaColor1[1] // 100% 处的颜色
                        }],
                        global: false // 缺省为 false
                    }
                },
                tmpLunboInfo1:{
                    index: 0,
                    areaColor: {
                        type: 'radial',
                        x: 0.7,
                        y: 0.5,
                        r: 0.4,
                        colorStops: [{
                            offset: 0,
                            color: areaColor2[0] // 0% 处的颜色
                        }, {
                            offset: 1,
                            color: areaColor2[1] // 100% 处的颜色
                        }],
                        global: false // 缺省为 false
                    }
                },
                mapIndex: 1,
                isClick: false,
                regionsData: [
                    {
                        name: '济南市',
                        value: [117.000923, 36.675807],
                        itemStyle: {
                            areaColor: {
                                type: 'radial',
                                x: 0.7,
                                y: 0.5,
                                r: 0.4,
                                colorStops: [{
                                    offset: 0,
                                    color: areaColor1[0] // 0% 处的颜色
                                }, {
                                    offset: 1,
                                    color: areaColor1[1] // 100% 处的颜色
                                }],
                                global: false // 缺省为 false
                            },
                            borderColor: borderColor0,
                            borderWidth: 2,
                            //选中效果
                            emphasis: {
                                areaColor: {
                                    type: 'radial',
                                    x: 0.7,
                                    y: 0.5,
                                    r: 0.4,
                                    colorStops: [{
                                        offset: 0,
                                        color: areaColor2[0] // 0% 处的颜色
                                    }, {
                                        offset: 1,
                                        color: areaColor2[1] // 100% 处的颜色
                                    }],
                                    global: false // 缺省为 false
                                },
                                borderColor: borderColor1
                            },
                        },
                        label: {
                            textStyle: {
                                color: labelColor[0]
                            }
                        },
                    },
                    {
                        name: '历下区',
                        CJQYDM: "370102",
                        value: [117.03862, 36.664169],
                        itemStyle: {
                            areaColor: {
                                type: 'radial',
                                x: 0.7,
                                y: 0.5,
                                r: 0.4,
                                colorStops: [{
                                    offset: 0,
                                    color: areaColor1[0] // 0% 处的颜色
                                }, {
                                    offset: 1,
                                    color: areaColor1[1] // 100% 处的颜色
                                }],
                                global: false // 缺省为 false
                            },
                            borderColor: borderColor0,
                            borderWidth: 2,
                            //选中效果
                            emphasis: {
                                areaColor: {
                                    type: 'radial',
                                    x: 0.7,
                                    y: 0.5,
                                    r: 0.4,
                                    colorStops: [{
                                        offset: 0,
                                        color: areaColor2[0] // 0% 处的颜色
                                    }, {
                                        offset: 1,
                                        color: areaColor2[1] // 100% 处的颜色
                                    }],
                                    global: false // 缺省为 false
                                },
                                borderColor: borderColor1
                            },
                        },
                        label: {
                            textStyle: {
                                color: labelColor[0]
                            }
                        },
                    },
                    {
                        name: '市中区',
                        CJQYDM: "370103",
                        value: [116.99898, 36.657354],
                        itemStyle: {
                            areaColor: {
                                type: 'radial',
                                x: 0.7,
                                y: 0.5,
                                r: 0.4,
                                colorStops: [{
                                    offset: 0,
                                    color: areaColor1[0] // 0% 处的颜色
                                }, {
                                    offset: 1,
                                    color: areaColor1[1] // 100% 处的颜色
                                }],
                                global: false // 缺省为 false
                            },
                            borderColor: borderColor0,
                            borderWidth: 2,
                            //选中效果
                            emphasis: {
                                areaColor: {
                                    type: 'radial',
                                    x: 0.7,
                                    y: 0.5,
                                    r: 0.4,
                                    colorStops: [{
                                        offset: 0,
                                        color: areaColor2[0] // 0% 处的颜色
                                    }, {
                                        offset: 1,
                                        color: areaColor2[1] // 100% 处的颜色
                                    }],
                                    global: false // 缺省为 false
                                },
                                borderColor: borderColor1
                            },
                        },
                        label: {
                            textStyle: {
                                color: labelColor[0]
                            }
                        },
                    },
                    {
                        name: '槐荫区',
                        CJQYDM: "370104",
                        value: [116.947921, 36.668205],
                        itemStyle: {
                            areaColor: {
                                type: 'radial',
                                x: 0.7,
                                y: 0.5,
                                r: 0.4,
                                colorStops: [{
                                    offset: 0,
                                    color: areaColor1[0] // 0% 处的颜色
                                }, {
                                    offset: 1,
                                    color: areaColor1[1] // 100% 处的颜色
                                }],
                                global: false // 缺省为 false
                            },
                            borderColor: borderColor0,
                            borderWidth: 2,
                            //选中效果
                            emphasis: {
                                areaColor: {
                                    type: 'radial',
                                    x: 0.7,
                                    y: 0.5,
                                    r: 0.4,
                                    colorStops: [{
                                        offset: 0,
                                        color: areaColor2[0] // 0% 处的颜色
                                    }, {
                                        offset: 1,
                                        color: areaColor2[1] // 100% 处的颜色
                                    }],
                                    global: false // 缺省为 false
                                },
                                borderColor: borderColor1
                            },
                        },
                        label: {
                            textStyle: {
                                color: labelColor[0]
                            }
                        },
                    },
                    {
                        name: '天桥区',
                        CJQYDM: "370105",
                        value: [116.996086, 36.693374],
                        itemStyle: {
                            areaColor: {
                                type: 'radial',
                                x: 0.7,
                                y: 0.5,
                                r: 0.4,
                                colorStops: [{
                                    offset: 0,
                                    color: areaColor1[0] // 0% 处的颜色
                                }, {
                                    offset: 1,
                                    color: areaColor1[1] // 100% 处的颜色
                                }],
                                global: false // 缺省为 false
                            },
                            borderColor: borderColor0,
                            borderWidth: 2,
                            //选中效果
                            emphasis: {
                                areaColor: {
                                    type: 'radial',
                                    x: 0.7,
                                    y: 0.5,
                                    r: 0.4,
                                    colorStops: [{
                                        offset: 0,
                                        color: areaColor2[0] // 0% 处的颜色
                                    }, {
                                        offset: 1,
                                        color: areaColor2[1] // 100% 处的颜色
                                    }],
                                    global: false // 缺省为 false
                                },
                                borderColor: borderColor1
                            },
                        },
                        label: {
                            textStyle: {
                                color: labelColor[0]
                            }
                        },
                    },
                    {
                        name: '历城区',
                        CJQYDM: "370112",
                        value: [117.063744, 36.681744],
                        itemStyle: {
                            areaColor: {
                                type: 'radial',
                                x: 0.7,
                                y: 0.5,
                                r: 0.4,
                                colorStops: [{
                                    offset: 0,
                                    color: areaColor1[0] // 0% 处的颜色
                                }, {
                                    offset: 1,
                                    color: areaColor1[1] // 100% 处的颜色
                                }],
                                global: false // 缺省为 false
                            },
                            borderColor: borderColor0,
                            borderWidth: 2,
                            //选中效果
                            emphasis: {
                                areaColor: {
                                    type: 'radial',
                                    x: 0.7,
                                    y: 0.5,
                                    r: 0.4,
                                    colorStops: [{
                                        offset: 0,
                                        color: areaColor2[0] // 0% 处的颜色
                                    }, {
                                        offset: 1,
                                        color: areaColor2[1] // 100% 处的颜色
                                    }],
                                    global: false // 缺省为 false
                                },
                                borderColor: borderColor1
                            },
                        },
                        label: {
                            textStyle: {
                                color: labelColor[0]
                            }
                        },
                    },
                    {
                        name: '长清区',
                        CJQYDM: "370113",
                        value: [116.74588, 36.561049],
                        itemStyle: {
                            areaColor: {
                                type: 'radial',
                                x: 0.7,
                                y: 0.5,
                                r: 0.4,
                                colorStops: [{
                                    offset: 0,
                                    color: areaColor1[0] // 0% 处的颜色
                                }, {
                                    offset: 1,
                                    color: areaColor1[1] // 100% 处的颜色
                                }],
                                global: false // 缺省为 false
                            },
                            borderColor: borderColor0,
                            borderWidth: 2,
                            //选中效果
                            emphasis: {
                                areaColor: {
                                    type: 'radial',
                                    x: 0.7,
                                    y: 0.5,
                                    r: 0.4,
                                    colorStops: [{
                                        offset: 0,
                                        color: areaColor2[0] // 0% 处的颜色
                                    }, {
                                        offset: 1,
                                        color: areaColor2[1] // 100% 处的颜色
                                    }],
                                    global: false // 缺省为 false
                                },
                                borderColor: borderColor1
                            },
                        },
                        label: {
                            textStyle: {
                                color: labelColor[0]
                            }
                        },
                    },
                    {
                        name: '章丘区',
                        CJQYDM: "370114",
                        value: [117.54069, 36.71209],
                        itemStyle: {
                            areaColor: {
                                type: 'radial',
                                x: 0.7,
                                y: 0.5,
                                r: 0.4,
                                colorStops: [{
                                    offset: 0,
                                    color: areaColor1[0] // 0% 处的颜色
                                }, {
                                    offset: 1,
                                    color: areaColor1[1] // 100% 处的颜色
                                }],
                                global: false // 缺省为 false
                            },
                            borderColor: borderColor0,
                            borderWidth: 2,
                            //选中效果
                            emphasis: {
                                areaColor: {
                                    type: 'radial',
                                    x: 0.7,
                                    y: 0.5,
                                    r: 0.4,
                                    colorStops: [{
                                        offset: 0,
                                        color: areaColor2[0] // 0% 处的颜色
                                    }, {
                                        offset: 1,
                                        color: areaColor2[1] // 100% 处的颜色
                                    }],
                                    global: false // 缺省为 false
                                },
                                borderColor: borderColor1
                            },
                        },
                        label: {
                            textStyle: {
                                color: labelColor[0]
                            }
                        },
                    },
                    {
                        name: '济阳区',
                        CJQYDM: "370115",
                        value: [117.176035, 36.976771],
                        itemStyle: {
                            areaColor: {
                                type: 'radial',
                                x: 0.7,
                                y: 0.5,
                                r: 0.4,
                                colorStops: [{
                                    offset: 0,
                                    color: areaColor1[0] // 0% 处的颜色
                                }, {
                                    offset: 1,
                                    color: areaColor1[1] // 100% 处的颜色
                                }],
                                global: false // 缺省为 false
                            },
                            borderColor: borderColor0,
                            borderWidth: 2,
                            //选中效果
                            emphasis: {
                                areaColor: {
                                    type: 'radial',
                                    x: 0.7,
                                    y: 0.5,
                                    r: 0.4,
                                    colorStops: [{
                                        offset: 0,
                                        color: areaColor2[0] // 0% 处的颜色
                                    }, {
                                        offset: 1,
                                        color: areaColor2[1] // 100% 处的颜色
                                    }],
                                    global: false // 缺省为 false
                                },
                                borderColor: borderColor1
                            },
                        },
                        label: {
                            textStyle: {
                                color: labelColor[0]
                            }
                        },
                    },
                    {
                        name: '莱芜区',
                        CJQYDM: "370116",
                        value: [117.675808, 36.214395],
                        itemStyle: {
                            areaColor: {
                                type: 'radial',
                                x: 0.7,
                                y: 0.5,
                                r: 0.4,
                                colorStops: [{
                                    offset: 0,
                                    color: areaColor1[0] // 0% 处的颜色
                                }, {
                                    offset: 1,
                                    color: areaColor1[1] // 100% 处的颜色
                                }],
                                global: false // 缺省为 false
                            },
                            borderColor: borderColor0,
                            borderWidth: 2,
                            //选中效果
                            emphasis: {
                                areaColor: {
                                    type: 'radial',
                                    x: 0.7,
                                    y: 0.5,
                                    r: 0.4,
                                    colorStops: [{
                                        offset: 0,
                                        color: areaColor2[0] // 0% 处的颜色
                                    }, {
                                        offset: 1,
                                        color: areaColor2[1] // 100% 处的颜色
                                    }],
                                    global: false // 缺省为 false
                                },
                                borderColor: borderColor1
                            },
                        },
                        label: {
                            textStyle: {
                                color: labelColor[0]
                            }
                        },
                    },
                    {
                        name: '钢城区',
                        CJQYDM: "370117",
                        value: [117.82033, 36.058038],
                        itemStyle: {
                            areaColor: {
                                type: 'radial',
                                x: 0.7,
                                y: 0.5,
                                r: 0.4,
                                colorStops: [{
                                    offset: 0,
                                    color: areaColor1[0] // 0% 处的颜色
                                }, {
                                    offset: 1,
                                    color: areaColor1[1] // 100% 处的颜色
                                }],
                                global: false // 缺省为 false
                            },
                            borderColor: borderColor0,
                            borderWidth: 2,
                            //选中效果
                            emphasis: {
                                areaColor: {
                                    type: 'radial',
                                    x: 0.7,
                                    y: 0.5,
                                    r: 0.4,
                                    colorStops: [{
                                        offset: 0,
                                        color: areaColor2[0] // 0% 处的颜色
                                    }, {
                                        offset: 1,
                                        color: areaColor2[1] // 100% 处的颜色
                                    }],
                                    global: false // 缺省为 false
                                },
                                borderColor: borderColor1
                            },
                        },
                        label: {
                            textStyle: {
                                color: labelColor[0]
                            }
                        },
                    },
                    {
                        name: '平阴县',
                        CJQYDM: "370124",
                        value: [116.455054, 36.286923],
                        itemStyle: {
                            areaColor: {
                                type: 'radial',
                                x: 0.7,
                                y: 0.5,
                                r: 0.4,
                                colorStops: [{
                                    offset: 0,
                                    color: areaColor1[0] // 0% 处的颜色
                                }, {
                                    offset: 1,
                                    color: areaColor1[1] // 100% 处的颜色
                                }],
                                global: false // 缺省为 false
                            },
                            borderColor: borderColor0,
                            borderWidth: 2,
                            //选中效果
                            emphasis: {
                                areaColor: {
                                    type: 'radial',
                                    x: 0.7,
                                    y: 0.5,
                                    r: 0.4,
                                    colorStops: [{
                                        offset: 0,
                                        color: areaColor2[0] // 0% 处的颜色
                                    }, {
                                        offset: 1,
                                        color: areaColor2[1] // 100% 处的颜色
                                    }],
                                    global: false // 缺省为 false
                                },
                                borderColor: borderColor1
                            },
                        },
                        label: {
                            textStyle: {
                                color: labelColor[0]
                            }
                        },
                    },
                    {
                        name: '商河县',
                        CJQYDM: "370126",
                        value: [117.156369, 37.310544],
                        itemStyle: {
                            areaColor: {
                                type: 'radial',
                                x: 0.7,
                                y: 0.5,
                                r: 0.4,
                                colorStops: [{
                                    offset: 0,
                                    color: areaColor1[0] // 0% 处的颜色
                                }, {
                                    offset: 1,
                                    color: areaColor1[1] // 100% 处的颜色
                                }],
                                global: false // 缺省为 false
                            },
                            borderColor: borderColor0,
                            borderWidth: 2,
                            //选中效果
                            emphasis: {
                                areaColor: {
                                    type: 'radial',
                                    x: 0.7,
                                    y: 0.5,
                                    r: 0.4,
                                    colorStops: [{
                                        offset: 0,
                                        color: areaColor2[0] // 0% 处的颜色
                                    }, {
                                        offset: 1,
                                        color: areaColor2[1] // 100% 处的颜色
                                    }],
                                    global: false // 缺省为 false
                                },
                                borderColor: borderColor1
                            },
                        },
                        label: {
                            textStyle: {
                                color: labelColor[0]
                            }
                        },
                    }
                ],
                mapAreaInfo: [
                    {name:'章丘区',gpzs:"5",jyje:'952.37',jyzs:'4',area:'1659.44'},
                    {name:'商河县',gpzs:"3",jyje:'146.77',jyzs:'1',area:'1756.37'},
                    {name:'济阳区',gpzs:"7",jyje:'1652.4',jyzs:'5',area:'983.5'},
                    {name:'天桥区',gpzs:"11",jyje:'354.76',jyzs:'4',area:'543.5'},
                    {name:'槐荫区',gpzs:"9",jyje:'4267.33',jyzs:'8',area:'2897.1'},
                    {name:'历城区',gpzs:"23",jyje:'7523.78',jyzs:'21',area:'7864.8'},
                    {name:'历下区',gpzs:"14",jyje:'4567.4',jyzs:'13',area:'1896.7'},
                    {name:'市中区',gpzs:"17",jyje:'4125.4',jyzs:'15',area:'1669.35'},
                    {name:'莱芜区',gpzs:"4",jyje:'442.37',jyzs:'3',area:'2456.7'},
                    {name:'长清区',gpzs:"8",jyje:'420.8',jyzs:'5',area:'2573.1'},
                    {name:'钢城区',gpzs:"1",jyje:'0',jyzs:'0',area:'0'},
                    {name:'平阴县',gpzs:"3",jyje:'0',jyzs:'0',area:'0'},
                ],
                nowName:''


            }
        },
        methods: {
            async initChartMap() {
                var _this = this;
                if (aTimer) clearInterval(aTimer)
                initEcharts = echarts.init(document.getElementById('mapContainer1'))
                initEcharts.clear()
                _this.$nextTick(() => {
                    hdOption = {
                        grid: {
                            top: "2%", // 等价于 y: '16%'
                            left: "2%",
                            right: "2%",
                            bottom: "2%",

                        },
                        geo: [
                            {
                                map: 'jiNan',
                                aspectScale: 0.9,
                                roam: false, //是否允许缩放
                                //zoom: 1.1, //默认显示级别
                                layoutSize: '80%',
                                layoutCenter: ['46%', '50%'],
                                itemStyle: {
                                    areaColor: '#0bc9b2',
                                    // areaColor:{
                                    //     type:'pattern',
                                    //     image:domImg,
                                    //     repeat:'no-repeat',
                                    // },
                                    //可换成背景图片
                                    borderColor: 'rgba(4,165,149,0.65)',
                                    borderWidth: 5,
                                },
                                silent: true,
                            },
                            {
                                map: 'jiNan',
                                aspectScale: 0.9,
                                roam: false, //是否允许缩放
                                //zoom: 1.1, //默认显示级别
                                layoutSize: '80%',
                                layoutCenter: ['46%', '48%'],
                                itemStyle: {
                                    areaColor: '#00313a',
                                    // areaColor:{
                                    //     type:'pattern',
                                    //     image:domImg,
                                    //     repeat:'repeat'
                                    // },
                                    borderColor: '#00313a',
                                    borderWidth: 2,
                                },
                                silent: true,
                            },
                            {
                                map: 'jiNan',
                                aspectScale: 0.9,
                                roam: false, //是否允许缩放
                                //zoom: 1.1, //默认显示级别
                                layoutSize: '80%',
                                layoutCenter: ['46%', '46%'],
                                regions: _this.regionsData,
                                silent: false,
                                label: {
                                    show:true,
                                    textStyle: {
                                        color: labelColor[0]
                                    }
                                },
                            },
                        ],
                        tooltip: {
                            show: true,
                            trigger: 'item', //触发类型。item,axis,none
                            enterable: true,//鼠标是否可进入提示框浮层中,默认为false,
                            showContent: true,      //是否显示提示框浮层
                            triggerOn: 'none', //提示框触发的条件(mousemove|click|none)
                            //showDelay: 200,         //浮层显示的延迟,单位为 ms,默认没有延迟,也不建议设置。在 triggerOn 为 'mousemove'有效。
                            textStyle: {
                                color: 'white',
                                fontSize: 12
                            },
                            padding: [0, 8],
                            position: function (point, params, dom, rect, size) {
                                // 鼠标坐标和提示框位置的参考坐标系是:以外层div的左上角那一点为原点,x轴向右,y轴向下
                                // 提示框位置
                                var x = 0; // x坐标位置
                                var y = 0; // y坐标位置

                                // 当前鼠标位置
                                var pointX = point[0];
                                var pointY = point[1];
                                // 提示框大小
                                var boxWidth = size.contentSize[0] / 2 - 300;
                                var boxHeight = size.contentSize[1] + 300;

                                // boxWidth > pointX 说明鼠标左边放不下提示框
                                if (boxWidth > pointX) {
                                    x = 5;
                                } else { // 左边放的下
                                    x = pointX - boxWidth;
                                }

                                // boxHeight > pointY 说明鼠标上边放不下提示框
                                if (boxHeight > pointY) {
                                    y = 5;
                                } else { // 上边放得下
                                    y = pointY - boxHeight;
                                }
                                return [x, y];
                            },
                            // hideDelay: 10,
                            formatter: (item) => {
                                this.nowName = item.name
                                return this.$refs.echartDialog
                            },
                            extraCssText: 'box-shadow: none',
                            borderWidth: '0',
                            boxShadow: 'none',
                            backgroundColor: 'none',  //提示框浮层的背景颜色。
                            alwaysShowContent: true,
                            transitionDuration: 1,      //提示框浮层的移动动画过渡时间,单位是 s,设置为 0 的时候会紧跟着鼠标移动。
                        },
                        legend: {show: false},
                        //配置属性
                        series: [
                            {
                                name: '自定义图标',
                                map: 'jiNan',
                                type: "scatter",
                                coordinateSystem: "geo",
                                symbolSize: 0,
                                silent: 'none',
                                data: _this.regionsData.map(item => {
                                    return {
                                        name: item.name,
                                        value: item.value,
                                        CJQYDM: item.CJQYDM
                                    };
                                })
                            }
                        ],
                        visualMap: {show: false},
                    }
                    //地图组件
                    echarts.registerMap("jiNan", geoJson);
                    // 使用刚指定的配置项和数据显示图表。
                    initEcharts.setOption(hdOption);
                    // 开始轮播
                     aTimer = setInterval(_this.setMapArea, 5000);

                     initEcharts.on('mouseOver', function (e) {//停止轮播
                         _this.echartOver(e)
                     })
                     initEcharts.on('mouseOut', function (e) {
                         if (!_this.isClick) {
                             if (aTimer != '') clearInterval(aTimer)
                             aTimer = setInterval(_this.setMapArea, 5000);
                         }
                     })
                     initEcharts.on('click', function (e) {
                         if (aTimer != '') clearInterval(aTimer)
                         aTimer = ''
                         _this.isClick = true;
                         _this.mapIndex = _this.regionsData.findIndex(rec => rec.name === e.name);
                         _this.setMapArea()
                         _this.$emit('changeEchartArea', '')

                     })
                })
            },
            //地图弹窗
            mapDetail() {


            },

            returnArea() {
                this.isClick = false
                this.setMapArea()
                aTimer = setInterval(this.setMapArea, 5000);
                this.$emit('changeEchartArea', '');
            },
            async setMapArea() {
                var _this = this;
                _this.mapIndex = _this.mapIndex % _this.regionsData.length;
                if (_this.mapIndex === 0) {
                    _this.mapIndex++
                }
                _this.regionsData[_this.tmpLunboInfo.index].itemStyle.areaColor = _this.tmpLunboInfo.areaColor;
                _this.regionsData[_this.tmpLunboInfo.index].itemStyle.borderColor = borderColor0;
                _this.tmpLunboInfo.index = _this.mapIndex;
                _this.regionsData[_this.mapIndex].itemStyle.areaColor = _this.tmpLunboInfo1.areaColor;
                _this.regionsData[_this.mapIndex].itemStyle.borderColor =  borderColor1;

                hdOption.geo[2].regions = _this.regionsData;
                initEcharts.clear()
                initEcharts.setOption(hdOption);
                initEcharts.dispatchAction({
                    type: 'showTip',
                    seriesIndex: 0,
                    dataIndex: _this.mapIndex
                });
                _this.mapIndex++;
            },
            async echartOver(e){
                let _this = this;
                if (!_this.isClick){
                    _this.mapIndex = _this.regionsData.findIndex(rec => rec.name === e.name);
                    if(aTimer !== '') clearInterval(aTimer)
                    aTimer = ''
                    _this.regionsData[_this.tmpLunboInfo.index].itemStyle.areaColor = _this.tmpLunboInfo.areaColor;
                    _this.regionsData[_this.tmpLunboInfo.index].itemStyle.borderColor = borderColor0;
                    _this.tmpLunboInfo.index = _this.mapIndex;
                    _this.regionsData[_this.mapIndex].itemStyle.areaColor =  _this.tmpLunboInfo1.areaColor;
                    _this.regionsData[_this.mapIndex].itemStyle.borderColor =  borderColor1;
                    hdOption.geo[2].regions = _this.regionsData;
                    initEcharts.clear()
                    initEcharts.setOption(hdOption);
                    initEcharts.dispatchAction({
                        type: 'showTip',
                        seriesIndex: 0,
                        dataIndex: _this.mapIndex
                    });
                    // _this.mapIndex++
                }
            }

        },
        created() {
            window.returnArea = this.returnArea
        },
        mounted() {
            if (mapFlag) {
                mapFlag = false;
                this.initChartMap()
            }
            this.mapDetail()
        },
        // activated() {
        //     // 开始轮播
        //     // this.isClick = false
        //     // if (aTimer !== null) this.setMapArea()
        //     // if (aTimer !== null) aTimer = setInterval(this.setMapArea, 5000);
        //     this.$emit('changeEchartArea', '');
        // },
        // deactivated() {
        //     clearInterval(aTimer)
        //     aTimer = ''
        //     this.isClick = false
        // }

    };
</script>

<style lang="scss" scoped>
    .gbznt {
        width: 100%;
        height: 100%;
        .mapContainer {
            width: 50vw;
            height: 86vh;
            top: 10vh;
            left: 25vw;
            position: relative;
            z-index: 2;
        }
        .mapBg{
            position: absolute;
            top:12vh;
            left: 25vw;
            z-index: 1;
            width: 50vw;
            height:80%;
            perspective:1920px;
            transform: rotateX(35deg);
        }
    }

    .gbznt::v-deep .echart-dialog {
        position: absolute;
        top: 0;
        left: -500px;
        padding: 13px 15px;
        width: 370px;
        height: 194px;
        background-image: url("../../../img/propertyTransaction/echart-d-bg.png");
        background-size: 100% 100%;
        .echart-dialog-title{
            width: 100%;
            height: 30px;
            line-height: 30px;
            font-size: 14px;
            color: #00fff9;
            text-align: left;
            padding-left: 15px;
            background-image: url("../../../img/propertyTransaction/echart-d-line.png");
            background-size: 88% 5%;
            background-repeat: no-repeat;
            background-position:15px bottom;
            .echarts-close {
                position: absolute;
                right: 16px;
                top: 0;
                width: 18px;
                height: 18px;
                background-image: url("../../../img/propertyTransaction/e-d-close.png");
                background-size: 100% 100%;
                cursor: pointer;
            }
        }
        .echart-dialog-cont{
            width: 100%;
            height: calc(100% - 30px);
            display: flex;

            align-items: start;
            flex-wrap: wrap;
            padding: 10px 20px;
            .echart-item{
                width: 150px;
                height: 50px;
                display: flex;
                .echart-item-l{
                    width: 90px;
                    height: 50px;
                    background-image: url("../../../img/propertyTransaction/echart-d-l.png");
                    background-size: 100% 100%;
                    .echart-img{
                        width: 25px;
                        height: 25px;
                    }
                    .echart-label{
                        width: 100%;
                        height: 25px;
                        text-align: center;
                        font-size: 12px;
                        color: #64bcbb;
                    }
                }
                .echart-item-r{
                     width:60px;
                     height: 50px;
                     font-size: 22px;
                     color: #00fff9;
                     padding-top: 14px;
                     .item-r-unit{
                         opacity: 0.6;
                         font-size: 11px;
                     }
                 }
            }
        .echart-item1{
            width: 180px;
            margin-left: 10px;
            .echart-item-r{
                width:90px;
                .item-r-unit{
                    margin-top: 3px;
                }
            }
        }
        }
    }
</style>

jiNan.js

var jiNan = {
    "type": "FeatureCollection",
    "features": [
        {
        "type": "Feature",
        "properties": {
            "adcode": 370102,
            "name": "历下区",
            "center": [117.03862, 36.664169],
            "centroid": [117.097207, 36.65519],
            "childrenNum": 0,
            "level": "district",
            "parent": {"adcode": 370100},
            "subFeatureIndex": 0,
            "acroutes": [100000, 370000, 370100]
        },
        "geometry": {
            "type": "MultiPolygon",
            "coordinates": [[[[117.130707, 36.592397], [117.133873, 36.593155], [117.138754, 36.598596], [117.138998, 36.604237], [117.138386, 36.60892], [117.139208, 36.61198], [117.138789, 36.615642], [117.139996, 36.619413], [117.142812, 36.621267], [117.146415, 36.621993], [117.147238, 36.623523], [117.136829, 36.627726], [117.134048, 36.633257], [117.135465, 36.637243], [117.134835, 36.638834], [117.13494, 36.648072], [117.138439, 36.649354], [117.138299, 36.651501], [117.13452, 36.651732], [117.133033, 36.653107], [117.133261, 36.655378], [117.137162, 36.655316], [117.137564, 36.659578], [117.142025, 36.661246], [117.13648, 36.668304], [117.138964, 36.671439], [117.141045, 36.672273], [117.14199, 36.670574], [117.150596, 36.671253], [117.151436, 36.666991], [117.154147, 36.667316], [117.154462, 36.665818], [117.15922, 36.664721], [117.161897, 36.665169], [117.167214, 36.659239], [117.172462, 36.658003], [117.179372, 36.659084], [117.180649, 36.661169], [117.179862, 36.66364], [117.177553, 36.664212], [117.175436, 36.670466], [117.173075, 36.671145], [117.171658, 36.67445], [117.168439, 36.675469], [117.1729, 36.675824], [117.173005, 36.680039], [117.170486, 36.682294], [117.168474, 36.682047], [117.167897, 36.683637], [117.170048, 36.687636], [117.168631, 36.688655], [117.169751, 36.690986], [117.169961, 36.695339], [117.165833, 36.698257], [117.167214, 36.708089], [117.164311, 36.708151], [117.163244, 36.706515], [117.163628, 36.701128], [117.15985, 36.701236], [117.158748, 36.706129], [117.156072, 36.706098], [117.155704, 36.698921], [117.151261, 36.697392], [117.148672, 36.701421], [117.148147, 36.70403], [117.145436, 36.703752], [117.143459, 36.707703], [117.140923, 36.708259], [117.126386, 36.706577], [117.111115, 36.707611], [117.100304, 36.706577], [117.101004, 36.702749], [117.100392, 36.694444], [117.099342, 36.69361], [117.096578, 36.694567], [117.093797, 36.692746], [117.090176, 36.693533], [117.089196, 36.690847], [117.090648, 36.69097], [117.090876, 36.686879], [117.089844, 36.685953], [117.089634, 36.682803], [117.09301, 36.682649], [117.093027, 36.679128], [117.090298, 36.679391], [117.089564, 36.680673], [117.085733, 36.680534], [117.084981, 36.67902], [117.084893, 36.674187], [117.080555, 36.672242], [117.078666, 36.673122], [117.078648, 36.669014], [117.076094, 36.668443], [117.075027, 36.666343], [117.073348, 36.667949], [117.0688, 36.668613], [117.068712, 36.669617], [117.063989, 36.669323], [117.058444, 36.669725], [117.056047, 36.671115], [117.056012, 36.679144], [117.052409, 36.688145], [117.052916, 36.689735], [117.052864, 36.691295], [117.047791, 36.689334], [117.05066, 36.689272], [117.051097, 36.688191], [117.047388, 36.687111], [117.049085, 36.68654], [117.04319, 36.681089], [117.044047, 36.679036], [117.040356, 36.678959], [117.039937, 36.681197], [117.037942, 36.683436], [117.03175, 36.682062], [117.032222, 36.678356], [117.026152, 36.678403], [117.018438, 36.677492], [117.016566, 36.676226], [117.015814, 36.672998], [117.015971, 36.664073], [117.01319, 36.660227], [117.015184, 36.659439], [117.015184, 36.65615], [117.013592, 36.654883], [117.013645, 36.644843], [117.013067, 36.636687], [117.014309, 36.635497], [117.021377, 36.635621], [117.022654, 36.636764], [117.028286, 36.635126], [117.031995, 36.633272], [117.037855, 36.628483], [117.042386, 36.627309], [117.04898, 36.627077], [117.052164, 36.625501], [117.05477, 36.625516], [117.057884, 36.627896], [117.06105, 36.628297], [117.069132, 36.626443], [117.070636, 36.621622], [117.085768, 36.606494], [117.091803, 36.60586], [117.095914, 36.606803], [117.100672, 36.60586], [117.119984, 36.594762], [117.124479, 36.595551], [117.12824, 36.594701], [117.130707, 36.592397]]]]
        }
    },
        {
        "type": "Feature",
        "properties": {
            "adcode": 370103,
            "name": "市中区",
            "center": [116.99898, 36.657354],
            "centroid": [116.971622, 36.57841],
            "childrenNum": 0,
            "level": "district",
            "parent": {"adcode": 370100},
            "subFeatureIndex": 1,
            "acroutes": [100000, 370000, 370100]
        },
        "geometry": {
            "type": "MultiPolygon",
            "coordinates": [[[[116.822326, 36.622287], [116.822221, 36.620788], [116.818582, 36.618238], [116.821293, 36.617481], [116.8172, 36.613278], [116.817935, 36.611084], [116.820296, 36.610944], [116.828186, 36.606895], [116.832559, 36.600265], [116.841883, 36.587729], [116.842337, 36.582875], [116.856069, 36.581221], [116.858151, 36.579319], [116.86053, 36.573459], [116.862577, 36.572176], [116.866058, 36.571851], [116.870466, 36.568681], [116.873947, 36.567414], [116.882658, 36.565821], [116.884705, 36.564244], [116.883918, 36.562171], [116.872845, 36.561074], [116.868891, 36.559187], [116.866512, 36.556821], [116.864308, 36.552614], [116.861947, 36.544077], [116.8613, 36.535925], [116.858151, 36.521909], [116.86004, 36.519449], [116.863521, 36.518969], [116.863521, 36.514373], [116.867789, 36.512795], [116.869049, 36.509932], [116.869364, 36.506404], [116.872373, 36.502891], [116.877585, 36.501297], [116.881381, 36.500972], [116.884215, 36.499703], [116.892139, 36.492584], [116.895306, 36.49068], [116.90274, 36.489086], [116.906763, 36.489333], [116.912116, 36.49099], [116.91628, 36.49133], [116.922455, 36.486749], [116.922455, 36.483792], [116.933685, 36.485464], [116.933405, 36.489736], [116.934105, 36.498016], [116.938426, 36.499982], [116.942991, 36.499549], [116.944653, 36.502087], [116.943848, 36.505166], [116.94523, 36.508168], [116.949586, 36.511542], [116.95074, 36.510134], [116.951808, 36.513074], [116.95088, 36.515023], [116.956321, 36.517066], [116.95926, 36.519557], [116.964385, 36.52112], [116.97726, 36.518675], [116.979901, 36.518721], [116.980006, 36.521383], [116.983557, 36.521847], [116.985376, 36.51965], [116.984887, 36.523023], [116.98165, 36.526813], [116.982333, 36.528778], [116.986198, 36.532707], [116.994752, 36.535569], [116.996397, 36.538106], [117.002799, 36.539467], [117.007435, 36.541803], [117.011441, 36.542607], [117.016076, 36.545608], [117.023021, 36.546443], [117.02442, 36.545422], [117.028689, 36.554223], [117.027324, 36.554903], [117.023301, 36.560517], [117.025977, 36.560749], [117.026834, 36.563857], [117.029108, 36.566687], [117.034426, 36.563888], [117.036525, 36.563718], [117.039884, 36.569779], [117.041021, 36.572841], [117.045622, 36.575175], [117.045639, 36.571418], [117.050257, 36.571387], [117.054596, 36.56797], [117.065319, 36.570058], [117.070077, 36.573629], [117.078526, 36.572748], [117.081132, 36.569795], [117.079103, 36.565187], [117.078946, 36.559403], [117.082532, 36.56095], [117.085453, 36.558383], [117.08701, 36.552289], [117.091138, 36.550016], [117.091488, 36.547742], [117.099115, 36.54038], [117.100532, 36.539653], [117.113249, 36.536188], [117.116923, 36.538616], [117.121873, 36.540875], [117.123028, 36.54253], [117.128835, 36.542824], [117.130847, 36.540906], [117.129657, 36.538508], [117.13536, 36.537131], [117.141238, 36.539885], [117.146905, 36.54021], [117.149354, 36.540968], [117.153448, 36.540643], [117.15992, 36.545592], [117.161774, 36.550526], [117.160445, 36.554578], [117.157698, 36.555769], [117.159413, 36.560625], [117.158276, 36.566934], [117.155529, 36.568465], [117.14722, 36.565883], [117.142252, 36.567398], [117.138684, 36.575608], [117.139506, 36.577355], [117.137039, 36.57969], [117.134818, 36.578422], [117.135115, 36.581653], [117.132019, 36.584282], [117.126089, 36.58609], [117.127628, 36.591207], [117.130707, 36.592397], [117.12824, 36.594701], [117.124479, 36.595551], [117.119984, 36.594762], [117.100672, 36.60586], [117.095914, 36.606803], [117.091803, 36.60586], [117.085768, 36.606494], [117.070636, 36.621622], [117.069132, 36.626443], [117.06105, 36.628297], [117.057884, 36.627896], [117.05477, 36.625516], [117.052164, 36.625501], [117.04898, 36.627077], [117.042386, 36.627309], [117.037855, 36.628483], [117.031995, 36.633272], [117.028286, 36.635126], [117.022654, 36.636764], [117.021377, 36.635621], [117.014309, 36.635497], [117.013067, 36.636687], [117.013645, 36.644843], [117.013592, 36.654883], [117.015184, 36.65615], [117.015184, 36.659439], [117.01319, 36.660227], [117.015971, 36.664073], [117.012228, 36.66398], [117.011948, 36.665123], [117.00789, 36.666173], [117.0081, 36.667316], [116.997324, 36.668875], [116.987685, 36.666822], [116.98905, 36.663841], [116.986741, 36.660768], [116.987983, 36.653308], [116.984887, 36.650589], [116.985131, 36.644102], [116.981405, 36.643437], [116.983015, 36.635296], [116.979954, 36.630739], [116.978886, 36.626984], [116.977242, 36.626768], [116.974478, 36.632314], [116.97133, 36.635744], [116.969703, 36.639421], [116.966449, 36.641723], [116.96477, 36.639993], [116.963178, 36.635636], [116.960029, 36.636795], [116.95856, 36.635512], [116.954396, 36.63559], [116.952577, 36.636501], [116.951108, 36.639622], [116.950706, 36.644426], [116.945947, 36.647902], [116.945808, 36.650512], [116.944566, 36.650188], [116.943149, 36.647114], [116.940262, 36.646651], [116.939195, 36.644117], [116.93372, 36.644241], [116.93323, 36.64662], [116.927685, 36.646743], [116.925603, 36.645785], [116.919953, 36.649415], [116.919918, 36.646388], [116.918536, 36.643963], [116.911434, 36.64438], [116.913113, 36.641151], [116.912956, 36.635157], [116.916175, 36.633504], [116.916647, 36.625223], [116.91586, 36.62343], [116.913288, 36.622117], [116.910594, 36.622642], [116.907761, 36.621808], [116.904664, 36.618996], [116.899906, 36.616585], [116.898105, 36.616539], [116.895481, 36.618455], [116.891125, 36.619413], [116.887137, 36.621437], [116.887241, 36.619119], [116.883778, 36.619181], [116.883848, 36.620185], [116.877113, 36.620525], [116.877271, 36.623956], [116.873142, 36.624033], [116.873824, 36.624975], [116.872163, 36.628004], [116.869994, 36.629317], [116.846308, 36.625594], [116.845941, 36.633612], [116.842162, 36.633983], [116.837649, 36.633442], [116.838419, 36.631511], [116.836827, 36.627927], [116.83464, 36.626443], [116.83046, 36.626582], [116.827591, 36.623848], [116.825002, 36.623832], [116.825404, 36.622117], [116.822326, 36.622287]]]]
        }
    },
        {
        "type": "Feature",
        "properties": {
            "adcode": 370104,
            "name": "槐荫区",
            "center": [116.947921, 36.668205],
            "centroid": [116.885114, 36.678414],
            "childrenNum": 0,
            "level": "district",
            "parent": {"adcode": 370100},
            "subFeatureIndex": 2,
            "acroutes": [100000, 370000, 370100]
        },
        "geometry": {
            "type": "MultiPolygon",
            "coordinates": [[[[116.987685, 36.666822], [116.978432, 36.664335], [116.975458, 36.665648], [116.967569, 36.665308], [116.96295, 36.671145], [116.957195, 36.671609], [116.957125, 36.676133], [116.952647, 36.681583], [116.953312, 36.684162], [116.952052, 36.684486], [116.951878, 36.687713], [116.949376, 36.690831], [116.949586, 36.698365], [116.944111, 36.698612], [116.943324, 36.702455], [116.94042, 36.703443], [116.943324, 36.705265], [116.943359, 36.710713], [116.930869, 36.71133], [116.931743, 36.716068], [116.926198, 36.716454], [116.926198, 36.722442], [116.927073, 36.7315], [116.927265, 36.739924], [116.920915, 36.743087], [116.917084, 36.744105], [116.911329, 36.744784], [116.893556, 36.746095], [116.886769, 36.74554], [116.881819, 36.744028], [116.874017, 36.739832], [116.866635, 36.733336], [116.861754, 36.730358], [116.856577, 36.729463], [116.849719, 36.728954], [116.842512, 36.727843], [116.837509, 36.726578], [116.83088, 36.723846], [116.820156, 36.71789], [116.810325, 36.712797], [116.802769, 36.706746], [116.801124, 36.704431], [116.800792, 36.70085], [116.814366, 36.683359], [116.821276, 36.679576], [116.822675, 36.677075], [116.817567, 36.673956], [116.809976, 36.656258], [116.808594, 36.651269], [116.808874, 36.649246], [116.812809, 36.640842], [116.812022, 36.636872], [116.808069, 36.63372], [116.807754, 36.628962], [116.808874, 36.627077], [116.822326, 36.622287], [116.825404, 36.622117], [116.825002, 36.623832], [116.827591, 36.623848], [116.83046, 36.626582], [116.83464, 36.626443], [116.836827, 36.627927], [116.838419, 36.631511], [116.837649, 36.633442], [116.842162, 36.633983], [116.845941, 36.633612], [116.846308, 36.625594], [116.869994, 36.629317], [116.872163, 36.628004], [116.873824, 36.624975], [116.873142, 36.624033], [116.877271, 36.623956], [116.877113, 36.620525], [116.883848, 36.620185], [116.883778, 36.619181], [116.887241, 36.619119], [116.887137, 36.621437], [116.891125, 36.619413], [116.895481, 36.618455], [116.898105, 36.616539], [116.899906, 36.616585], [116.904664, 36.618996], [116.907761, 36.621808], [116.910594, 36.622642], [116.913288, 36.622117], [116.91586, 36.62343], [116.916647, 36.625223], [116.916175, 36.633504], [116.912956, 36.635157], [116.913113, 36.641151], [116.911434, 36.64438], [116.918536, 36.643963], [116.919918, 36.646388], [116.919953, 36.649415], [116.925603, 36.645785], [116.927685, 36.646743], [116.93323, 36.64662], [116.93372, 36.644241], [116.939195, 36.644117], [116.940262, 36.646651], [116.943149, 36.647114], [116.944566, 36.650188], [116.945808, 36.650512], [116.945947, 36.647902], [116.950706, 36.644426], [116.951108, 36.639622], [116.952577, 36.636501], [116.954396, 36.63559], [116.95856, 36.635512], [116.960029, 36.636795], [116.963178, 36.635636], [116.96477, 36.639993], [116.966449, 36.641723], [116.969703, 36.639421], [116.97133, 36.635744], [116.974478, 36.632314], [116.977242, 36.626768], [116.978886, 36.626984], [116.979954, 36.630739], [116.983015, 36.635296], [116.981405, 36.643437], [116.985131, 36.644102], [116.984887, 36.650589], [116.987983, 36.653308], [116.986741, 36.660768], [116.98905, 36.663841], [116.987685, 36.666822]]]]
        }
    },
        {
        "type": "Feature",
        "properties": {
            "adcode": 370105,
            "name": "天桥区",
            "center": [116.996086, 36.693374],
            "centroid": [116.978893, 36.772343],
            "childrenNum": 0,
            "level": "district",
            "parent": {"adcode": 370100},
            "subFeatureIndex": 3,
            "acroutes": [100000, 370000, 370100]
        },
        "geometry": {
            "type": "MultiPolygon",
            "coordinates": [[[[117.052916, 36.689735], [117.054123, 36.692869], [117.051534, 36.692437], [117.048875, 36.694089], [117.047231, 36.697516], [117.049348, 36.698488], [117.053004, 36.701637], [117.053756, 36.700325], [117.055138, 36.703057], [117.059196, 36.706376], [117.064182, 36.709478], [117.064269, 36.710466], [117.061173, 36.712642], [117.059703, 36.711253], [117.060613, 36.708799], [117.057919, 36.70741], [117.054788, 36.711269], [117.050222, 36.711855], [117.046444, 36.714494], [117.043785, 36.714803], [117.040934, 36.713306], [117.035371, 36.713862], [117.034969, 36.710682], [117.032187, 36.710837], [117.031557, 36.716856], [117.027184, 36.722149], [117.028619, 36.728321], [117.02617, 36.731469], [117.021989, 36.738304], [117.020502, 36.74159], [117.020869, 36.746018], [117.023161, 36.749643], [117.029371, 36.754734], [117.035458, 36.756076], [117.05052, 36.756646], [117.054281, 36.757988], [117.057937, 36.760657], [117.067523, 36.766487], [117.081604, 36.773735], [117.082654, 36.775894], [117.084438, 36.782787], [117.076234, 36.782957], [117.068152, 36.783743], [117.066333, 36.78877], [117.060753, 36.789494], [117.060631, 36.792578], [117.056415, 36.793919], [117.056432, 36.796756], [117.052391, 36.797681], [117.051307, 36.799747], [117.055068, 36.80636], [117.058164, 36.807978], [117.057307, 36.810398], [117.059161, 36.812942], [117.061575, 36.813666], [117.062975, 36.815855], [117.063027, 36.821958], [117.065756, 36.823253], [117.065773, 36.833454], [117.063534, 36.833439], [117.061488, 36.838462], [117.062152, 36.843362], [117.063779, 36.843377], [117.063779, 36.848477], [117.066071, 36.849093], [117.066631, 36.854778], [117.065424, 36.856796], [117.065336, 36.861525], [117.062362, 36.861926], [117.060403, 36.865145], [117.055435, 36.865237], [117.055103, 36.863712], [117.051114, 36.86533], [117.045954, 36.865622], [117.041686, 36.864791], [117.035651, 36.861294], [117.035721, 36.860277], [117.029353, 36.858429], [117.029038, 36.857628], [117.022199, 36.856935], [117.018438, 36.855625], [117.018508, 36.854069], [117.014344, 36.853684], [117.014292, 36.852359], [117.005528, 36.85316], [116.998601, 36.854547], [116.993003, 36.85504], [116.988875, 36.854424], [116.988403, 36.852883], [116.983557, 36.854932], [116.983347, 36.856935], [116.981196, 36.860478], [116.978782, 36.860031], [116.977819, 36.86342], [116.971994, 36.863481], [116.972029, 36.862572], [116.966012, 36.863019], [116.962128, 36.865283], [116.96379, 36.853546], [116.962863, 36.842684], [116.955446, 36.841344], [116.948082, 36.839217], [116.944618, 36.842961], [116.944163, 36.844903], [116.936974, 36.845488], [116.9347, 36.845134], [116.933545, 36.841328], [116.935259, 36.840234], [116.935189, 36.83518], [116.935959, 36.834148], [116.935942, 36.829741], [116.933807, 36.82971], [116.933195, 36.823715], [116.919113, 36.820848], [116.919393, 36.82279], [116.911504, 36.824393], [116.909073, 36.824069], [116.90951, 36.825595], [116.892507, 36.830033], [116.887137, 36.833439], [116.882466, 36.824069], [116.883498, 36.819554], [116.888361, 36.818413], [116.889043, 36.816225], [116.887959, 36.811431], [116.88565, 36.812325], [116.884478, 36.811077], [116.880874, 36.810059], [116.872845, 36.812002], [116.87141, 36.810337], [116.868227, 36.801889], [116.869241, 36.799978], [116.867317, 36.79486], [116.86555, 36.777868], [116.868856, 36.763047], [116.870763, 36.759145], [116.883865, 36.75822], [116.883953, 36.754857], [116.886594, 36.755582], [116.887311, 36.748995], [116.88586, 36.748255], [116.886769, 36.74554], [116.893556, 36.746095], [116.911329, 36.744784], [116.917084, 36.744105], [116.920915, 36.743087], [116.927265, 36.739924], [116.927073, 36.7315], [116.926198, 36.722442], [116.926198, 36.716454], [116.931743, 36.716068], [116.930869, 36.71133], [116.943359, 36.710713], [116.943324, 36.705265], [116.94042, 36.703443], [116.943324, 36.702455], [116.944111, 36.698612], [116.949586, 36.698365], [116.949376, 36.690831], [116.951878, 36.687713], [116.952052, 36.684486], [116.953312, 36.684162], [116.952647, 36.681583], [116.957125, 36.676133], [116.957195, 36.671609], [116.96295, 36.671145], [116.967569, 36.665308], [116.975458, 36.665648], [116.978432, 36.664335], [116.987685, 36.666822], [116.997324, 36.668875], [117.0081, 36.667316], [117.00789, 36.666173], [117.011948, 36.665123], [117.012228, 36.66398], [117.015971, 36.664073], [117.015814, 36.672998], [117.016566, 36.676226], [117.018438, 36.677492], [117.026152, 36.678403], [117.032222, 36.678356], [117.03175, 36.682062], [117.037942, 36.683436], [117.039937, 36.681197], [117.040356, 36.678959], [117.044047, 36.679036], [117.04319, 36.681089], [117.049085, 36.68654], [117.047388, 36.687111], [117.051097, 36.688191], [117.05066, 36.689272], [117.047791, 36.689334], [117.052864, 36.691295], [117.052916, 36.689735]]]]
        }
    },
        {
        "type": "Feature",
        "properties": {
            "adcode": 370112,
            "name": "历城区",
            "center": [117.063744, 36.681744],
            "centroid": [117.184517, 36.606298],
            "childrenNum": 0,
            "level": "district",
            "parent": {"adcode": 370100},
            "subFeatureIndex": 4,
            "acroutes": [100000, 370000, 370100]
        },
        "geometry": {
            "type": "MultiPolygon",
            "coordinates": [[[[117.052916, 36.689735], [117.052409, 36.688145], [117.056012, 36.679144], [117.056047, 36.671115], [117.058444, 36.669725], [117.063989, 36.669323], [117.068712, 36.669617], [117.0688, 36.668613], [117.073348, 36.667949], [117.075027, 36.666343], [117.076094, 36.668443], [117.078648, 36.669014], [117.078666, 36.673122], [117.080555, 36.672242], [117.084893, 36.674187], [117.084981, 36.67902], [117.085733, 36.680534], [117.089564, 36.680673], [117.090298, 36.679391], [117.093027, 36.679128], [117.09301, 36.682649], [117.089634, 36.682803], [117.089844, 36.685953], [117.090876, 36.686879], [117.090648, 36.69097], [117.089196, 36.690847], [117.090176, 36.693533], [117.093797, 36.692746], [117.096578, 36.694567], [117.099342, 36.69361], [117.100392, 36.694444], [117.101004, 36.702749], [117.100304, 36.706577], [117.111115, 36.707611], [117.126386, 36.706577], [117.140923, 36.708259], [117.143459, 36.707703], [117.145436, 36.703752], [117.148147, 36.70403], [117.148672, 36.701421], [117.151261, 36.697392], [117.155704, 36.698921], [117.156072, 36.706098], [117.158748, 36.706129], [117.15985, 36.701236], [117.163628, 36.701128], [117.163244, 36.706515], [117.164311, 36.708151], [117.167214, 36.708089], [117.165833, 36.698257], [117.169961, 36.695339], [117.169751, 36.690986], [117.168631, 36.688655], [117.170048, 36.687636], [117.167897, 36.683637], [117.168474, 36.682047], [117.170486, 36.682294], [117.173005, 36.680039], [117.1729, 36.675824], [117.168439, 36.675469], [117.171658, 36.67445], [117.173075, 36.671145], [117.175436, 36.670466], [117.177553, 36.664212], [117.179862, 36.66364], [117.180649, 36.661169], [117.179372, 36.659084], [117.172462, 36.658003], [117.167214, 36.659239], [117.161897, 36.665169], [117.15922, 36.664721], [117.154462, 36.665818], [117.154147, 36.667316], [117.151436, 36.666991], [117.150596, 36.671253], [117.14199, 36.670574], [117.141045, 36.672273], [117.138964, 36.671439], [117.13648, 36.668304], [117.142025, 36.661246], [117.137564, 36.659578], [117.137162, 36.655316], [117.133261, 36.655378], [117.133033, 36.653107], [117.13452, 36.651732], [117.138299, 36.651501], [117.138439, 36.649354], [117.13494, 36.648072], [117.134835, 36.638834], [117.135465, 36.637243], [117.134048, 36.633257], [117.136829, 36.627726], [117.147238, 36.623523], [117.146415, 36.621993], [117.142812, 36.621267], [117.139996, 36.619413], [117.138789, 36.615642], [117.139208, 36.61198], [117.138386, 36.60892], [117.138998, 36.604237], [117.138754, 36.598596], [117.133873, 36.593155], [117.130707, 36.592397], [117.127628, 36.591207], [117.126089, 36.58609], [117.132019, 36.584282], [117.135115, 36.581653], [117.134818, 36.578422], [117.137039, 36.57969], [117.139506, 36.577355], [117.138684, 36.575608], [117.142252, 36.567398], [117.14722, 36.565883], [117.155529, 36.568465], [117.158276, 36.566934], [117.159413, 36.560625], [117.157698, 36.555769], [117.160445, 36.554578], [117.161774, 36.550526], [117.15992, 36.545592], [117.153448, 36.540643], [117.149354, 36.540968], [117.146905, 36.54021], [117.141238, 36.539885], [117.13536, 36.537131], [117.129657, 36.538508], [117.130847, 36.540906], [117.128835, 36.542824], [117.123028, 36.54253], [117.121873, 36.540875], [117.116923, 36.538616], [117.113249, 36.536188], [117.100532, 36.539653], [117.099115, 36.54038], [117.091488, 36.547742], [117.091138, 36.550016], [117.08701, 36.552289], [117.085453, 36.558383], [117.082532, 36.56095], [117.078946, 36.559403], [117.079103, 36.565187], [117.081132, 36.569795], [117.078526, 36.572748], [117.070077, 36.573629], [117.065319, 36.570058], [117.054596, 36.56797], [117.050257, 36.571387], [117.045639, 36.571418], [117.045622, 36.575175], [117.041021, 36.572841], [117.039884, 36.569779], [117.036525, 36.563718], [117.034426, 36.563888], [117.029108, 36.566687], [117.026834, 36.563857], [117.025977, 36.560749], [117.023301, 36.560517], [117.027324, 36.554903], [117.028689, 36.554223], [117.02442, 36.545422], [117.023021, 36.546443], [117.016076, 36.545608], [117.011441, 36.542607], [117.007435, 36.541803], [117.002799, 36.539467], [116.996397, 36.538106], [116.994752, 36.535569], [116.986198, 36.532707], [116.982333, 36.528778], [116.98165, 36.526813], [116.984887, 36.523023], [116.985376, 36.51965], [116.983557, 36.521847], [116.980006, 36.521383], [116.979901, 36.518721], [116.97726, 36.518675], [116.964385, 36.52112], [116.95926, 36.519557], [116.956321, 36.517066], [116.95088, 36.515023], [116.951808, 36.513074], [116.95074, 36.510134], [116.949586, 36.511542], [116.94523, 36.508168], [116.943848, 36.505166], [116.944653, 36.502087], [116.942991, 36.499549], [116.938426, 36.499982], [116.934105, 36.498016], [116.933405, 36.489736], [116.933685, 36.485464], [116.938286, 36.484396], [116.939685, 36.482027], [116.939528, 36.479458], [116.942291, 36.478126], [116.948886, 36.478204], [116.951423, 36.47712], [116.959907, 36.470386], [116.964402, 36.466128], [116.965644, 36.451836], [116.961306, 36.449451], [116.961551, 36.447902], [116.964315, 36.443628], [116.966169, 36.442358], [116.974391, 36.440592], [116.984047, 36.441088], [116.98982, 36.439183], [116.995137, 36.433219], [116.995277, 36.431887], [117.003237, 36.428092], [117.006123, 36.425598], [117.007995, 36.425072], [117.011126, 36.422128], [117.009901, 36.419711], [117.011511, 36.415838], [117.011038, 36.410989], [117.011353, 36.401568], [117.013522, 36.39929], [117.017231, 36.393432], [117.019382, 36.39213], [117.017266, 36.385807], [117.014589, 36.382986], [117.017546, 36.380909], [117.018315, 36.378568], [117.016601, 36.375763], [117.018473, 36.370957], [117.014922, 36.365717], [117.023651, 36.365252], [117.031732, 36.36595], [117.0434, 36.364028], [117.051307, 36.361283], [117.058986, 36.357671], [117.06245, 36.355035], [117.060578, 36.352709], [117.057604, 36.351825], [117.05512, 36.348693], [117.057045, 36.346538], [117.059354, 36.347856], [117.06203, 36.346755], [117.064689, 36.343653], [117.065004, 36.340862], [117.069814, 36.341715], [117.078193, 36.331386], [117.080887, 36.330331], [117.083826, 36.333418], [117.084456, 36.335558], [117.087692, 36.336876], [117.089161, 36.341606], [117.088724, 36.346011], [117.093237, 36.346336], [117.100672, 36.341824], [117.10557, 36.340738], [117.107336, 36.338893], [117.111727, 36.340428], [117.125389, 36.338024], [117.12985, 36.335139], [117.132001, 36.334628], [117.137022, 36.335139], [117.135482, 36.33959], [117.14255, 36.345731], [117.14673, 36.345607], [117.149424, 36.346305], [117.161389, 36.351872], [117.169419, 36.351717], [117.179634, 36.353128], [117.182958, 36.360818], [117.181506, 36.363423], [117.17883, 36.365361], [117.178707, 36.367981], [117.180981, 36.372538], [117.183675, 36.373686], [117.191652, 36.378754], [117.200941, 36.389774], [117.201955, 36.391882], [117.203232, 36.39836], [117.205314, 36.398995], [117.208095, 36.401862], [117.208742, 36.405302], [117.218311, 36.40617], [117.22146, 36.407317], [117.225238, 36.410322], [117.231378, 36.412771], [117.234142, 36.412554], [117.237693, 36.411097], [117.242101, 36.415296], [117.241769, 36.41779], [117.245407, 36.423151], [117.247804, 36.429533], [117.248101, 36.433963], [117.249693, 36.436751], [117.255203, 36.44149], [117.259069, 36.442466], [117.260766, 36.445951], [117.263845, 36.449219], [117.275793, 36.451232], [117.277647, 36.45563], [117.280271, 36.460058], [117.282895, 36.461297], [117.286638, 36.465307], [117.288982, 36.468714], [117.289699, 36.47294], [117.288212, 36.476052], [117.292306, 36.475913], [117.296382, 36.473699], [117.300597, 36.473002], [117.302189, 36.473513], [117.306213, 36.472398], [117.307717, 36.47582], [117.311321, 36.479334], [117.313262, 36.485263], [117.309396, 36.486965], [117.309641, 36.491949], [117.305513, 36.493358], [117.310901, 36.493218], [117.31781, 36.500849], [117.315641, 36.503371], [117.316306, 36.505182], [117.324003, 36.502783], [117.325315, 36.503758], [117.326119, 36.507503], [117.33142, 36.509375], [117.332802, 36.511743], [117.332644, 36.516509], [117.328306, 36.519309], [117.319455, 36.519712], [117.318667, 36.521584], [117.319455, 36.525637], [117.31935, 36.529551], [117.316743, 36.528376], [117.314942, 36.528933], [117.317321, 36.532027], [117.313979, 36.531408], [117.313035, 36.533465], [117.314714, 36.538199], [117.319647, 36.541818], [117.32542, 36.547433], [117.333519, 36.553063], [117.329391, 36.558537], [117.329636, 36.559991], [117.324003, 36.560996], [117.32556, 36.563161], [117.327939, 36.564197], [117.333292, 36.561893], [117.336353, 36.562914], [117.344102, 36.56712], [117.343175, 36.572949], [117.349472, 36.575036], [117.357799, 36.579705], [117.356067, 36.588579], [117.354056, 36.590156], [117.351607, 36.593696], [117.351047, 36.597174], [117.357379, 36.596895], [117.362505, 36.598704], [117.362679, 36.612923], [117.36079, 36.617991], [117.360703, 36.626706], [117.363677, 36.631944], [117.374155, 36.642341], [117.375712, 36.648056], [117.375589, 36.655609], [117.372423, 36.666188], [117.366948, 36.676797], [117.363484, 36.686694], [117.36247, 36.692669], [117.36058, 36.710343], [117.35647, 36.718183], [117.349787, 36.725837], [117.344539, 36.733228], [117.34195, 36.740356], [117.343997, 36.739754], [117.341671, 36.742362], [117.341671, 36.744244], [117.346936, 36.744876], [117.347023, 36.746928], [117.342265, 36.747576], [117.341391, 36.753268], [117.340289, 36.754055], [117.340656, 36.76058], [117.336615, 36.761814], [117.336248, 36.765469], [117.332802, 36.767304], [117.332487, 36.76934], [117.332802, 36.78052], [117.328848, 36.780798], [117.328848, 36.783496], [117.320434, 36.784236], [117.314189, 36.786734], [117.314224, 36.789078], [117.328429, 36.793133], [117.328359, 36.796833], [117.330895, 36.797511], [117.331542, 36.801473], [117.336405, 36.805959], [117.335968, 36.807824], [117.338347, 36.807809], [117.341846, 36.80582], [117.346761, 36.807871], [117.348143, 36.816394], [117.34844, 36.824948], [117.347426, 36.831728], [117.345641, 36.839479], [117.341146, 36.843008], [117.336265, 36.843732], [117.335793, 36.846813], [117.338767, 36.847152], [117.339606, 36.851481], [117.333939, 36.849987], [117.331665, 36.855425], [117.328009, 36.856087], [117.328813, 36.863882], [117.331367, 36.866223], [117.332067, 36.872815], [117.3317, 36.876789], [117.328429, 36.877435], [117.328184, 36.872969], [117.321082, 36.872261], [117.320767, 36.881763], [117.320259, 36.882687], [117.307944, 36.878868], [117.300283, 36.874817], [117.28153, 36.86345], [117.273186, 36.858891], [117.269478, 36.857551], [117.266696, 36.855625], [117.262795, 36.862326], [117.254871, 36.865638], [117.240247, 36.862172], [117.231396, 36.86114], [117.219431, 36.861309], [117.209512, 36.864667], [117.209057, 36.869473], [117.210614, 36.876096], [117.211034, 36.88321], [117.207151, 36.888307], [117.185809, 36.888431], [117.183465, 36.892265], [117.176171, 36.878252], [117.17206, 36.867178], [117.169384, 36.863528], [117.16529, 36.861402], [117.158433, 36.860755], [117.151576, 36.860801], [117.14848, 36.858075], [117.147045, 36.855656], [117.146136, 36.850233], [117.146765, 36.843793], [117.148497, 36.836736], [117.147518, 36.834225], [117.138474, 36.827691], [117.132334, 36.821126], [117.12315, 36.806961], [117.119407, 36.797958], [117.115925, 36.793025], [117.111027, 36.790974], [117.105605, 36.790897], [117.095984, 36.789248], [117.09182, 36.787644], [117.084438, 36.782787], [117.082654, 36.775894], [117.081604, 36.773735], [117.067523, 36.766487], [117.057937, 36.760657], [117.054281, 36.757988], [117.05052, 36.756646], [117.035458, 36.756076], [117.029371, 36.754734], [117.023161, 36.749643], [117.020869, 36.746018], [117.020502, 36.74159], [117.021989, 36.738304], [117.02617, 36.731469], [117.028619, 36.728321], [117.027184, 36.722149], [117.031557, 36.716856], [117.032187, 36.710837], [117.034969, 36.710682], [117.035371, 36.713862], [117.040934, 36.713306], [117.043785, 36.714803], [117.046444, 36.714494], [117.050222, 36.711855], [117.054788, 36.711269], [117.057919, 36.70741], [117.060613, 36.708799], [117.059703, 36.711253], [117.061173, 36.712642], [117.064269, 36.710466], [117.064182, 36.709478], [117.059196, 36.706376], [117.055138, 36.703057], [117.053756, 36.700325], [117.053004, 36.701637], [117.049348, 36.698488], [117.047231, 36.697516], [117.048875, 36.694089], [117.051534, 36.692437], [117.054123, 36.692869], [117.052916, 36.689735]]]]
        }
    },
        {
        "type": "Feature",
        "properties": {
            "adcode": 370113,
            "name": "长清区",
            "center": [116.74588, 36.561049],
            "centroid": [116.796232, 36.421327],
            "childrenNum": 0,
            "level": "district",
            "parent": {"adcode": 370100},
            "subFeatureIndex": 5,
            "acroutes": [100000, 370000, 370100]
        },
        "geometry": {
            "type": "MultiPolygon",
            "coordinates": [[[[116.822326, 36.622287], [116.808874, 36.627077], [116.807754, 36.628962], [116.808069, 36.63372], [116.812022, 36.636872], [116.812809, 36.640842], [116.808874, 36.649246], [116.808594, 36.651269], [116.809976, 36.656258], [116.817567, 36.673956], [116.822675, 36.677075], [116.821276, 36.679576], [116.814366, 36.683359], [116.800792, 36.70085], [116.801142, 36.696543], [116.799725, 36.694413], [116.795841, 36.692545], [116.792903, 36.692452], [116.78664, 36.694197], [116.782232, 36.693271], [116.78064, 36.691063], [116.779958, 36.682417], [116.780728, 36.676303], [116.780728, 36.671547], [116.779188, 36.665679], [116.777264, 36.660721], [116.773765, 36.657432], [116.76899, 36.655362], [116.763112, 36.65198], [116.760663, 36.647454], [116.760523, 36.637366], [116.759474, 36.632762], [116.75601, 36.627834], [116.742051, 36.620371], [116.726745, 36.61521], [116.722686, 36.612892], [116.71317, 36.608843], [116.709847, 36.608642], [116.698599, 36.60994], [116.69475, 36.609569], [116.693298, 36.607884], [116.693281, 36.604793], [116.694365, 36.591145], [116.691916, 36.586121], [116.687001, 36.582195], [116.6824, 36.580587], [116.667549, 36.579535], [116.661286, 36.578376], [116.659292, 36.577062], [116.658925, 36.574232], [116.662896, 36.563099], [116.661129, 36.555692], [116.658942, 36.553016], [116.649321, 36.54533], [116.646697, 36.544092], [116.635222, 36.54403], [116.629607, 36.544587], [116.62784, 36.542576], [116.62282, 36.532661], [116.62156, 36.530975], [116.614895, 36.524817], [116.608336, 36.520114], [116.608108, 36.518396], [116.610102, 36.516076], [116.623817, 36.510551], [116.627193, 36.508834], [116.628487, 36.506126], [116.628505, 36.502582], [116.62714, 36.499657], [116.624324, 36.497227], [116.62072, 36.496391], [116.614843, 36.497057], [116.609105, 36.497026], [116.602073, 36.495215], [116.595846, 36.490417], [116.593274, 36.485975], [116.593764, 36.482027], [116.595653, 36.480402], [116.609682, 36.47681], [116.613024, 36.473436], [116.612166, 36.46763], [116.611064, 36.463836], [116.611414, 36.459114], [116.617589, 36.44798], [116.620895, 36.441459], [116.622312, 36.436674], [116.622067, 36.433529], [116.619811, 36.42851], [116.612341, 36.423321], [116.605467, 36.420378], [116.59121, 36.416272], [116.574627, 36.412848], [116.569711, 36.412073], [116.556399, 36.410741], [116.546183, 36.408912], [116.54272, 36.406573], [116.532574, 36.393107], [116.531035, 36.389248], [116.528621, 36.387279], [116.52395, 36.385109], [116.520382, 36.384257], [116.523758, 36.380909], [116.528393, 36.379855], [116.528061, 36.37801], [116.531909, 36.375902], [116.532924, 36.374492], [116.552883, 36.371887], [116.554528, 36.369547], [116.552201, 36.367051], [116.551939, 36.363935], [116.550137, 36.363997], [116.549367, 36.360229], [116.547863, 36.360183], [116.546061, 36.356213], [116.54349, 36.353112], [116.544154, 36.349841], [116.540918, 36.34598], [116.540726, 36.340443], [116.547705, 36.335682], [116.564918, 36.333651], [116.573157, 36.331603], [116.575799, 36.325073], [116.578423, 36.323693], [116.57907, 36.320234], [116.578615, 36.317162], [116.581082, 36.316604], [116.583951, 36.317286], [116.589513, 36.316573], [116.59163, 36.315471], [116.593064, 36.316387], [116.597018, 36.313268], [116.601216, 36.308645], [116.605397, 36.303122], [116.610155, 36.298064], [116.619933, 36.294619], [116.632248, 36.296326], [116.641607, 36.296497], [116.648989, 36.295783], [116.657998, 36.290693], [116.664732, 36.284237], [116.675718, 36.276632], [116.686494, 36.275422], [116.693596, 36.276989], [116.70103, 36.280156], [116.710371, 36.279193], [116.719503, 36.283942], [116.727812, 36.291221], [116.732955, 36.294169], [116.754873, 36.302253], [116.76257, 36.305403], [116.772768, 36.311996], [116.779066, 36.312353], [116.786693, 36.311376], [116.797923, 36.305077], [116.800459, 36.303944], [116.808594, 36.299026], [116.815958, 36.295938], [116.817375, 36.297831], [116.823585, 36.295891], [116.830617, 36.294572], [116.835323, 36.296186], [116.843859, 36.297536], [116.846885, 36.300453], [116.847778, 36.30247], [116.855789, 36.301663], [116.854565, 36.298715], [116.854425, 36.295379], [116.855877, 36.292912], [116.855509, 36.289731], [116.859795, 36.28596], [116.864711, 36.284082], [116.867772, 36.281071], [116.864081, 36.279581], [116.868437, 36.277828], [116.868244, 36.271448], [116.871638, 36.26898], [116.870781, 36.266078], [116.873107, 36.264075], [116.879055, 36.263283], [116.88439, 36.259992], [116.884757, 36.256981], [116.891142, 36.25549], [116.892489, 36.25653], [116.89695, 36.256872], [116.905959, 36.25976], [116.912186, 36.264525], [116.921912, 36.268639], [116.924816, 36.2721], [116.929452, 36.271045], [116.928717, 36.269896], [116.93302, 36.264277], [116.932845, 36.261933], [116.934857, 36.26097], [116.938093, 36.261917], [116.943114, 36.25962], [116.950216, 36.257338], [116.956828, 36.259775], [116.959609, 36.257446], [116.964822, 36.2506], [116.966991, 36.249047], [116.972344, 36.24706], [116.97551, 36.243194], [116.979901, 36.244203], [116.983365, 36.248348], [116.98765, 36.250724], [116.991936, 36.250848], [116.992286, 36.250134], [116.998933, 36.252432], [117.001137, 36.254559], [117.002817, 36.254497], [117.003814, 36.252152], [117.006315, 36.253208], [117.003954, 36.255863], [117.004146, 36.258952], [117.005528, 36.259511], [117.005458, 36.262228], [117.003306, 36.265364], [117.014117, 36.265922], [117.015779, 36.267118], [117.020065, 36.268142], [117.027342, 36.268965], [117.030263, 36.277548], [117.032555, 36.279643], [117.040566, 36.282856], [117.043085, 36.282111], [117.048193, 36.28371], [117.051237, 36.288738], [117.056397, 36.2915], [117.059406, 36.292152], [117.062012, 36.294976], [117.065266, 36.295224], [117.06698, 36.296884], [117.071021, 36.29735], [117.0741, 36.296729], [117.077109, 36.300826], [117.076252, 36.302951], [117.077686, 36.307218], [117.075727, 36.311081], [117.075569, 36.31423], [117.077354, 36.321956], [117.078946, 36.323507], [117.080887, 36.330331], [117.078193, 36.331386], [117.069814, 36.341715], [117.065004, 36.340862], [117.064689, 36.343653], [117.06203, 36.346755], [117.059354, 36.347856], [117.057045, 36.346538], [117.05512, 36.348693], [117.057604, 36.351825], [117.060578, 36.352709], [117.06245, 36.355035], [117.058986, 36.357671], [117.051307, 36.361283], [117.0434, 36.364028], [117.031732, 36.36595], [117.023651, 36.365252], [117.014922, 36.365717], [117.018473, 36.370957], [117.016601, 36.375763], [117.018315, 36.378568], [117.017546, 36.380909], [117.014589, 36.382986], [117.017266, 36.385807], [117.019382, 36.39213], [117.017231, 36.393432], [117.013522, 36.39929], [117.011353, 36.401568], [117.011038, 36.410989], [117.011511, 36.415838], [117.009901, 36.419711], [117.011126, 36.422128], [117.007995, 36.425072], [117.006123, 36.425598], [117.003237, 36.428092], [116.995277, 36.431887], [116.995137, 36.433219], [116.98982, 36.439183], [116.984047, 36.441088], [116.974391, 36.440592], [116.966169, 36.442358], [116.964315, 36.443628], [116.961551, 36.447902], [116.961306, 36.449451], [116.965644, 36.451836], [116.964402, 36.466128], [116.959907, 36.470386], [116.951423, 36.47712], [116.948886, 36.478204], [116.942291, 36.478126], [116.939528, 36.479458], [116.939685, 36.482027], [116.938286, 36.484396], [116.933685, 36.485464], [116.922455, 36.483792], [116.922455, 36.486749], [116.91628, 36.49133], [116.912116, 36.49099], [116.906763, 36.489333], [116.90274, 36.489086], [116.895306, 36.49068], [116.892139, 36.492584], [116.884215, 36.499703], [116.881381, 36.500972], [116.877585, 36.501297], [116.872373, 36.502891], [116.869364, 36.506404], [116.869049, 36.509932], [116.867789, 36.512795], [116.863521, 36.514373], [116.863521, 36.518969], [116.86004, 36.519449], [116.858151, 36.521909], [116.8613, 36.535925], [116.861947, 36.544077], [116.864308, 36.552614], [116.866512, 36.556821], [116.868891, 36.559187], [116.872845, 36.561074], [116.883918, 36.562171], [116.884705, 36.564244], [116.882658, 36.565821], [116.873947, 36.567414], [116.870466, 36.568681], [116.866058, 36.571851], [116.862577, 36.572176], [116.86053, 36.573459], [116.858151, 36.579319], [116.856069, 36.581221], [116.842337, 36.582875], [116.841883, 36.587729], [116.832559, 36.600265], [116.828186, 36.606895], [116.820296, 36.610944], [116.817935, 36.611084], [116.8172, 36.613278], [116.821293, 36.617481], [116.818582, 36.618238], [116.822221, 36.620788], [116.822326, 36.622287]]]]
        }
    },
        {
        "type": "Feature",
        "properties": {
            "adcode": 370114,
            "name": "章丘区",
            "center": [117.54069, 36.71209],
            "centroid": [117.473408, 36.737524],
            "childrenNum": 0,
            "level": "district",
            "parent": {"adcode": 370100},
            "subFeatureIndex": 6,
            "acroutes": [100000, 370000, 370100]
        },
        "geometry": {
            "type": "MultiPolygon",
            "coordinates": [[[[117.33644, 37.073954], [117.316009, 37.076258], [117.309991, 37.074937], [117.30728, 37.073324], [117.299198, 37.065152], [117.296382, 37.061557], [117.289559, 37.056348], [117.282615, 37.052507], [117.262585, 37.047559], [117.248906, 37.042857], [117.243816, 37.040153], [117.242119, 37.036956], [117.242136, 37.029963], [117.240824, 37.027166], [117.240702, 37.017436], [117.241122, 37.011317], [117.242801, 36.998495], [117.24553, 36.984194], [117.245565, 36.97572], [117.244253, 36.968875], [117.240912, 36.963691], [117.236416, 36.958445], [117.230521, 36.952984], [117.219063, 36.94129], [117.203967, 36.92684], [117.189308, 36.913633], [117.184777, 36.90803], [117.182713, 36.90218], [117.183465, 36.892265], [117.185809, 36.888431], [117.207151, 36.888307], [117.211034, 36.88321], [117.210614, 36.876096], [117.209057, 36.869473], [117.209512, 36.864667], [117.219431, 36.861309], [117.231396, 36.86114], [117.240247, 36.862172], [117.254871, 36.865638], [117.262795, 36.862326], [117.266696, 36.855625], [117.269478, 36.857551], [117.273186, 36.858891], [117.28153, 36.86345], [117.300283, 36.874817], [117.307944, 36.878868], [117.320259, 36.882687], [117.320767, 36.881763], [117.321082, 36.872261], [117.328184, 36.872969], [117.328429, 36.877435], [117.3317, 36.876789], [117.332067, 36.872815], [117.331367, 36.866223], [117.328813, 36.863882], [117.328009, 36.856087], [117.331665, 36.855425], [117.333939, 36.849987], [117.339606, 36.851481], [117.338767, 36.847152], [117.335793, 36.846813], [117.336265, 36.843732], [117.341146, 36.843008], [117.345641, 36.839479], [117.347426, 36.831728], [117.34844, 36.824948], [117.348143, 36.816394], [117.346761, 36.807871], [117.341846, 36.80582], [117.338347, 36.807809], [117.335968, 36.807824], [117.336405, 36.805959], [117.331542, 36.801473], [117.330895, 36.797511], [117.328359, 36.796833], [117.328429, 36.793133], [117.314224, 36.789078], [117.314189, 36.786734], [117.320434, 36.784236], [117.328848, 36.783496], [117.328848, 36.780798], [117.332802, 36.78052], [117.332487, 36.76934], [117.332802, 36.767304], [117.336248, 36.765469], [117.336615, 36.761814], [117.340656, 36.76058], [117.340289, 36.754055], [117.341391, 36.753268], [117.342265, 36.747576], [117.347023, 36.746928], [117.346936, 36.744876], [117.341671, 36.744244], [117.341671, 36.742362], [117.343997, 36.739754], [117.34195, 36.740356], [117.344539, 36.733228], [117.349787, 36.725837], [117.35647, 36.718183], [117.36058, 36.710343], [117.36247, 36.692669], [117.363484, 36.686694], [117.366948, 36.676797], [117.372423, 36.666188], [117.375589, 36.655609], [117.375712, 36.648056], [117.374155, 36.642341], [117.363677, 36.631944], [117.360703, 36.626706], [117.36079, 36.617991], [117.362679, 36.612923], [117.362505, 36.598704], [117.357379, 36.596895], [117.351047, 36.597174], [117.351607, 36.593696], [117.354056, 36.590156], [117.356067, 36.588579], [117.357799, 36.579705], [117.349472, 36.575036], [117.343175, 36.572949], [117.344102, 36.56712], [117.336353, 36.562914], [117.333292, 36.561893], [117.327939, 36.564197], [117.32556, 36.563161], [117.324003, 36.560996], [117.329636, 36.559991], [117.329391, 36.558537], [117.333519, 36.553063], [117.32542, 36.547433], [117.319647, 36.541818], [117.314714, 36.538199], [117.313035, 36.533465], [117.313979, 36.531408], [117.317321, 36.532027], [117.314942, 36.528933], [117.316743, 36.528376], [117.31935, 36.529551], [117.319455, 36.525637], [117.318667, 36.521584], [117.319455, 36.519712], [117.328306, 36.519309], [117.332644, 36.516509], [117.332802, 36.511743], [117.33142, 36.509375], [117.326119, 36.507503], [117.325315, 36.503758], [117.324003, 36.502783], [117.316306, 36.505182], [117.315641, 36.503371], [117.31781, 36.500849], [117.310901, 36.493218], [117.305513, 36.493358], [117.309641, 36.491949], [117.309396, 36.486965], [117.313262, 36.485263], [117.311321, 36.479334], [117.307717, 36.47582], [117.306213, 36.472398], [117.306807, 36.467026], [117.308417, 36.466329], [117.313245, 36.467444], [117.315991, 36.466112], [117.322516, 36.465354], [117.335338, 36.46636], [117.341023, 36.465601], [117.346394, 36.463728], [117.354475, 36.455614], [117.36142, 36.447747], [117.369502, 36.439632], [117.37426, 36.436364], [117.386995, 36.433932], [117.391718, 36.434304], [117.396686, 36.436085], [117.401968, 36.444278], [117.409525, 36.452873], [117.4171, 36.462164], [117.423152, 36.466205], [117.431112, 36.467692], [117.44047, 36.468466], [117.450301, 36.468203], [117.457158, 36.466825], [117.464523, 36.467165], [117.470785, 36.468667], [117.478535, 36.474272], [117.483922, 36.477105], [117.480616, 36.479891], [117.48331, 36.483947], [117.48352, 36.487321], [117.489065, 36.487739], [117.498284, 36.495602], [117.499456, 36.497165], [117.497584, 36.500044], [117.497427, 36.504609], [117.500593, 36.509716], [117.502255, 36.510582], [117.50766, 36.507627], [117.516109, 36.504377], [117.518663, 36.502272], [117.521724, 36.501994], [117.523229, 36.505089], [117.535859, 36.505135], [117.540442, 36.509561], [117.548419, 36.511913], [117.548523, 36.513569], [117.551235, 36.514172], [117.559352, 36.514296], [117.562868, 36.512749], [117.564337, 36.514312], [117.565981, 36.519464], [117.572489, 36.520145], [117.574798, 36.521414], [117.578121, 36.526736], [117.579976, 36.527896], [117.583334, 36.528175], [117.585346, 36.530727], [117.588215, 36.532707], [117.590366, 36.535337], [117.590174, 36.537224], [117.593358, 36.54103], [117.597993, 36.541231], [117.599935, 36.543613], [117.603853, 36.542917], [117.605848, 36.54403], [117.613719, 36.543876], [117.61797, 36.547217], [117.617655, 36.548222], [117.622466, 36.549397], [117.627346, 36.553542], [117.629568, 36.553851], [117.631719, 36.552212], [117.63039, 36.550619], [117.630897, 36.548763], [117.63702, 36.545098], [117.646973, 36.536312], [117.651137, 36.534471], [117.654075, 36.534579], [117.663906, 36.532553], [117.664798, 36.530743], [117.674227, 36.525266], [117.677236, 36.524291], [117.68028, 36.525931], [117.685702, 36.525591], [117.689288, 36.524075], [117.689866, 36.520826], [117.693172, 36.519913], [117.702058, 36.519325], [117.710122, 36.518102], [117.718781, 36.519789], [117.731324, 36.526411], [117.736099, 36.52703], [117.737621, 36.526225], [117.742484, 36.525761], [117.742834, 36.52754], [117.739773, 36.53625], [117.739388, 36.539916], [117.735574, 36.5412], [117.730921, 36.545577], [117.723749, 36.547325], [117.723155, 36.550202], [117.724082, 36.554037], [117.721563, 36.557022], [117.720845, 36.560068], [117.718729, 36.560007], [117.71091, 36.562651], [117.706082, 36.565805], [117.703807, 36.565311], [117.697825, 36.568233], [117.694309, 36.568882], [117.693592, 36.571511], [117.696111, 36.575067], [117.701813, 36.576969], [117.706816, 36.581483], [117.710962, 36.579798], [117.711994, 36.577495], [117.715353, 36.578546], [117.712781, 36.583323], [117.709125, 36.588533], [117.706799, 36.593572], [117.7107, 36.59419], [117.715388, 36.596432], [117.71516, 36.600559], [117.70874, 36.601331], [117.697842, 36.59943], [117.695743, 36.600018], [117.690513, 36.604886], [117.69681, 36.605705], [117.705049, 36.605783], [117.703668, 36.60892], [117.705504, 36.609074], [117.706589, 36.611547], [117.711907, 36.612011], [117.714915, 36.610527], [117.717155, 36.612923], [117.713813, 36.61402], [117.713026, 36.618872], [117.714006, 36.621113], [117.715335, 36.627509], [117.712624, 36.630893], [117.70979, 36.631218], [117.712536, 36.633798], [117.708513, 36.635142], [117.712204, 36.642263], [117.70888, 36.644658], [117.708968, 36.651593], [117.703003, 36.653246], [117.698052, 36.652983], [117.695358, 36.657802], [117.695201, 36.666991], [117.69772, 36.669385], [117.698385, 36.672489], [117.697143, 36.675701], [117.69723, 36.678048], [117.699172, 36.677924], [117.701271, 36.685212], [117.699382, 36.686879], [117.703055, 36.686493], [117.70365, 36.687898], [117.706519, 36.688114], [117.707009, 36.69026], [117.712152, 36.689257], [117.715668, 36.691186], [117.718029, 36.69784], [117.718501, 36.70474], [117.726076, 36.709231], [117.734123, 36.717411], [117.739965, 36.720991], [117.739948, 36.722766], [117.736607, 36.729432], [117.743919, 36.744768], [117.746647, 36.746327], [117.747312, 36.748579], [117.737569, 36.753423], [117.724187, 36.755983], [117.715895, 36.755983], [117.714706, 36.754364], [117.695953, 36.754117], [117.69095, 36.759006], [117.687644, 36.763865], [117.68586, 36.772131], [117.677848, 36.78325], [117.670309, 36.789772], [117.648128, 36.805435], [117.637387, 36.809936], [117.616186, 36.818028], [117.608576, 36.821819], [117.599935, 36.830419], [117.588547, 36.843208], [117.5805, 36.851358], [117.577334, 36.862865], [117.578716, 36.872245], [117.579906, 36.878082], [117.582005, 36.879068], [117.585049, 36.886814], [117.583789, 36.894159], [117.580203, 36.899039], [117.576652, 36.905736], [117.5692, 36.915711], [117.563567, 36.91879], [117.55734, 36.920498], [117.542401, 36.926701], [117.542698, 36.929687], [117.534232, 36.931595], [117.536733, 36.93932], [117.539515, 36.941475], [117.541771, 36.940844], [117.542751, 36.938412], [117.547439, 36.937074], [117.549486, 36.934288], [117.551287, 36.933842], [117.553684, 36.940721], [117.560856, 36.944106], [117.564617, 36.945075], [117.565771, 36.946814], [117.567643, 36.952461], [117.567906, 36.957153], [117.565474, 36.959953], [117.563497, 36.959845], [117.560384, 36.961768], [117.549363, 36.96506], [117.549066, 36.969905], [117.552512, 36.97109], [117.555223, 36.970767], [117.555801, 36.972936], [117.554716, 36.974781], [117.549101, 36.979811], [117.546372, 36.979642], [117.545725, 36.978211], [117.540442, 36.977688], [117.536838, 36.978488], [117.536558, 36.976381], [117.532955, 36.975135], [117.531363, 36.972966], [117.532098, 36.970013], [117.529981, 36.967998], [117.528144, 36.968598], [117.526255, 36.964322], [117.520308, 36.962506], [117.520377, 36.958137], [117.517824, 36.957138], [117.517736, 36.959753], [117.514115, 36.960814], [117.51331, 36.964045], [117.511316, 36.964952], [117.509847, 36.969275], [117.517194, 36.972966], [117.515742, 36.975381], [117.510949, 36.97332], [117.506995, 36.96969], [117.500768, 36.970844], [117.500313, 36.972228], [117.494506, 36.972351], [117.494838, 36.970136], [117.48875, 36.969336], [117.483293, 36.967214], [117.482663, 36.970305], [117.478115, 36.968767], [117.47731, 36.971274], [117.473497, 36.970659], [117.475193, 36.965983], [117.476505, 36.968367], [117.477957, 36.964614], [117.477607, 36.961137], [117.46461, 36.958784], [117.462844, 36.960168], [117.460639, 36.959599], [117.458768, 36.957676], [117.449724, 36.958522], [117.444424, 36.958091], [117.437759, 36.956245], [117.436132, 36.95643], [117.416872, 36.95263], [117.414966, 36.957261], [117.406167, 36.950014], [117.404015, 36.955061], [117.391648, 36.951999], [117.382236, 36.952799], [117.378318, 36.956984], [117.369449, 36.984132], [117.365373, 36.994943], [117.361175, 36.999817], [117.353513, 37.003323], [117.346953, 37.005014], [117.333012, 37.009965], [117.328498, 37.01121], [117.321694, 37.016052], [117.317303, 37.02091], [117.315326, 37.027458], [117.315379, 37.030563], [117.320312, 37.033713], [117.326102, 37.036172], [117.332224, 37.041151], [117.33665, 37.046837], [117.339414, 37.056425], [117.339134, 37.063707], [117.340324, 37.064937], [117.338679, 37.067041], [117.334673, 37.067594], [117.332714, 37.069484], [117.333344, 37.071342], [117.33644, 37.073954]]]]
        }
    },
        {
        "type": "Feature",
        "properties": {
            "adcode": 370115,
            "name": "济阳区",
            "center": [117.176035, 36.976771],
            "centroid": [117.145463, 37.026132],
            "childrenNum": 0,
            "level": "district",
            "parent": {"adcode": 370100},
            "subFeatureIndex": 7,
            "acroutes": [100000, 370000, 370100]
        },
        "geometry": {
            "type": "MultiPolygon",
            "coordinates": [[[[116.962128, 36.865283], [116.966012, 36.863019], [116.972029, 36.862572], [116.971994, 36.863481], [116.977819, 36.86342], [116.978782, 36.860031], [116.981196, 36.860478], [116.983347, 36.856935], [116.983557, 36.854932], [116.988403, 36.852883], [116.988875, 36.854424], [116.993003, 36.85504], [116.998601, 36.854547], [117.005528, 36.85316], [117.014292, 36.852359], [117.014344, 36.853684], [117.018508, 36.854069], [117.018438, 36.855625], [117.022199, 36.856935], [117.029038, 36.857628], [117.029353, 36.858429], [117.035721, 36.860277], [117.035651, 36.861294], [117.041686, 36.864791], [117.045954, 36.865622], [117.051114, 36.86533], [117.055103, 36.863712], [117.055435, 36.865237], [117.060403, 36.865145], [117.062362, 36.861926], [117.065336, 36.861525], [117.065424, 36.856796], [117.066631, 36.854778], [117.066071, 36.849093], [117.063779, 36.848477], [117.063779, 36.843377], [117.062152, 36.843362], [117.061488, 36.838462], [117.063534, 36.833439], [117.065773, 36.833454], [117.065756, 36.823253], [117.063027, 36.821958], [117.062975, 36.815855], [117.061575, 36.813666], [117.059161, 36.812942], [117.057307, 36.810398], [117.058164, 36.807978], [117.055068, 36.80636], [117.051307, 36.799747], [117.052391, 36.797681], [117.056432, 36.796756], [117.056415, 36.793919], [117.060631, 36.792578], [117.060753, 36.789494], [117.066333, 36.78877], [117.068152, 36.783743], [117.076234, 36.782957], [117.084438, 36.782787], [117.09182, 36.787644], [117.095984, 36.789248], [117.105605, 36.790897], [117.111027, 36.790974], [117.115925, 36.793025], [117.119407, 36.797958], [117.12315, 36.806961], [117.132334, 36.821126], [117.138474, 36.827691], [117.147518, 36.834225], [117.148497, 36.836736], [117.146765, 36.843793], [117.146136, 36.850233], [117.147045, 36.855656], [117.14848, 36.858075], [117.151576, 36.860801], [117.158433, 36.860755], [117.16529, 36.861402], [117.169384, 36.863528], [117.17206, 36.867178], [117.176171, 36.878252], [117.183465, 36.892265], [117.182713, 36.90218], [117.184777, 36.90803], [117.189308, 36.913633], [117.203967, 36.92684], [117.219063, 36.94129], [117.230521, 36.952984], [117.236416, 36.958445], [117.240912, 36.963691], [117.244253, 36.968875], [117.245565, 36.97572], [117.24553, 36.984194], [117.242801, 36.998495], [117.241122, 37.011317], [117.240702, 37.017436], [117.240824, 37.027166], [117.242136, 37.029963], [117.242119, 37.036956], [117.243816, 37.040153], [117.248906, 37.042857], [117.262585, 37.047559], [117.282615, 37.052507], [117.289559, 37.056348], [117.296382, 37.061557], [117.299198, 37.065152], [117.30728, 37.073324], [117.309991, 37.074937], [117.316009, 37.076258], [117.33644, 37.073954], [117.352744, 37.069729], [117.358481, 37.0689], [117.365268, 37.069253], [117.37286, 37.072126], [117.381327, 37.077011], [117.391193, 37.083462], [117.399257, 37.087086], [117.404557, 37.088714], [117.409245, 37.089421], [117.427858, 37.090956], [117.438319, 37.092093], [117.44208, 37.093598], [117.447817, 37.098481], [117.459747, 37.109951], [117.458085, 37.114142], [117.456669, 37.114434], [117.455619, 37.117658], [117.452908, 37.129478], [117.450948, 37.129094], [117.452243, 37.135111], [117.456249, 37.13508], [117.455409, 37.142048], [117.454604, 37.144089], [117.450669, 37.143721], [117.450703, 37.153972], [117.448167, 37.154171], [117.448167, 37.157025], [117.444021, 37.156857], [117.443322, 37.160999], [117.442692, 37.170864], [117.440278, 37.178688], [117.436114, 37.184256], [117.429082, 37.189854], [117.417922, 37.200022], [117.414476, 37.206248], [117.409001, 37.212151], [117.40496, 37.21718], [117.400884, 37.22411], [117.398365, 37.230732], [117.396983, 37.23668], [117.396826, 37.245002], [117.392802, 37.246642], [117.386155, 37.244895], [117.377723, 37.24042], [117.370761, 37.237308], [117.35647, 37.22854], [117.354843, 37.219633], [117.358936, 37.209959], [117.363904, 37.201418], [117.36233, 37.195467], [117.355945, 37.192569], [117.34998, 37.194946], [117.345834, 37.202552], [117.336055, 37.207398], [117.332364, 37.205619], [117.330825, 37.203227], [117.320872, 37.195851], [117.320872, 37.195023], [117.316393, 37.192155], [117.30721, 37.187508], [117.285589, 37.179163], [117.257268, 37.174025], [117.248364, 37.167996], [117.23799, 37.165157], [117.227652, 37.161107], [117.222107, 37.157731], [117.218031, 37.152115], [117.212608, 37.140038], [117.208463, 37.136799], [117.201151, 37.134988], [117.185424, 37.13043], [117.180596, 37.130015], [117.168019, 37.131136], [117.163279, 37.129908], [117.162999, 37.131658], [117.140293, 37.141787], [117.133138, 37.141665], [117.124794, 37.13924], [117.113791, 37.132747], [117.099377, 37.128327], [117.088164, 37.125932], [117.06238, 37.124013], [117.06189, 37.121711], [117.055803, 37.120068], [117.056275, 37.115294], [117.05547, 37.113866], [117.051779, 37.113636], [117.050817, 37.115094], [117.045954, 37.114465], [117.04473, 37.118149], [117.042211, 37.117044], [117.040514, 37.11666], [117.040286, 37.119715], [117.0381, 37.121266], [117.024298, 37.119669], [117.011108, 37.121373], [117.004496, 37.121204], [116.997271, 37.119193], [116.989452, 37.115816], [116.982612, 37.11359], [116.972047, 37.112361], [116.963475, 37.108231], [116.953102, 37.106496], [116.942431, 37.103149], [116.931498, 37.100493], [116.919043, 37.093045], [116.918939, 37.087086], [116.919708, 37.081357], [116.921895, 37.075382], [116.925253, 37.069852], [116.925691, 37.062279], [116.928665, 37.051032], [116.936012, 37.045193], [116.944268, 37.04235], [116.948729, 37.036556], [116.943166, 37.030901], [116.925393, 37.02566], [116.914775, 37.022001], [116.907831, 37.019035], [116.90414, 37.01659], [116.897125, 37.009134], [116.891632, 37.002723], [116.883813, 36.998956], [116.875031, 36.999279], [116.875084, 36.995881], [116.87958, 36.99605], [116.881451, 36.99522], [116.881224, 36.993298], [116.885755, 36.991452], [116.884688, 36.987485], [116.886997, 36.986055], [116.886174, 36.983579], [116.88969, 36.979073], [116.892052, 36.977427], [116.892367, 36.980395], [116.899172, 36.977519], [116.897597, 36.971797], [116.89779, 36.962706], [116.907761, 36.963291], [116.907866, 36.961276], [116.90972, 36.96066], [116.91628, 36.960737], [116.918501, 36.961537], [116.922979, 36.961383], [116.926495, 36.96043], [116.931638, 36.960553], [116.93337, 36.959584], [116.931848, 36.946198], [116.928997, 36.945921], [116.927125, 36.940982], [116.935977, 36.940582], [116.935452, 36.934581], [116.922595, 36.93455], [116.928315, 36.932996], [116.928105, 36.931041], [116.934192, 36.927932], [116.93442, 36.925978], [116.943166, 36.92333], [116.950671, 36.920575], [116.95744, 36.916496], [116.960414, 36.907414], [116.963143, 36.893897], [116.96316, 36.880654], [116.961813, 36.867532], [116.962128, 36.865283]]]]
        }
    },
        {
        "type": "Feature",
        "properties": {
            "adcode": 370116,
            "name": "莱芜区",
            "center": [117.675808, 36.214395],
            "centroid": [117.617686, 36.314311],
            "childrenNum": 0,
            "level": "district",
            "parent": {"adcode": 370100},
            "subFeatureIndex": 8,
            "acroutes": [100000, 370000, 370100]
        },
        "geometry": {
            "type": "MultiPolygon",
            "coordinates": [[[[117.929325, 36.27432], [117.926824, 36.277533], [117.928398, 36.280699], [117.931162, 36.283741], [117.929763, 36.291034], [117.925844, 36.292462], [117.922538, 36.300531], [117.922765, 36.307916], [117.92455, 36.308397], [117.924847, 36.313191], [117.921628, 36.316976], [117.918305, 36.317736], [117.918305, 36.320466], [117.919617, 36.324748], [117.922346, 36.327291], [117.926859, 36.328517], [117.927978, 36.329851], [117.928206, 36.334721], [117.93062, 36.336147], [117.930147, 36.333899], [117.933471, 36.334395], [117.934521, 36.337342], [117.931844, 36.3379], [117.93034, 36.340009], [117.933873, 36.341203], [117.932019, 36.343188], [117.928888, 36.343188], [117.93104, 36.344336], [117.927506, 36.347856], [117.923255, 36.34981], [117.928993, 36.350321], [117.928276, 36.348306], [117.92999, 36.345933], [117.932124, 36.34477], [117.934556, 36.344894], [117.934468, 36.347298], [117.930795, 36.347437], [117.930707, 36.352539], [117.928608, 36.354834], [117.92441, 36.355516], [117.923832, 36.354694], [117.925424, 36.351252], [117.920509, 36.350973], [117.915331, 36.352911], [117.914071, 36.350911], [117.91101, 36.350647], [117.907966, 36.35167], [117.905552, 36.354492], [117.902631, 36.352043], [117.903716, 36.346941], [117.89845, 36.346135], [117.893447, 36.339466], [117.894147, 36.336535], [117.891138, 36.337125], [117.889686, 36.338598], [117.889949, 36.341886], [117.8921, 36.346073], [117.894322, 36.347763], [117.892223, 36.351469], [117.893552, 36.352911], [117.895249, 36.359237], [117.893028, 36.365748], [117.889704, 36.365655], [117.887955, 36.362648], [117.88596, 36.357066], [117.883232, 36.355857], [117.882112, 36.356725], [117.882794, 36.360291], [117.880992, 36.361407], [117.882602, 36.364803], [117.882532, 36.370926], [117.87975, 36.370616], [117.875167, 36.377406], [117.875027, 36.379312], [117.872491, 36.380831], [117.867523, 36.386396], [117.863482, 36.388364], [117.859301, 36.389449], [117.855645, 36.393308], [117.855121, 36.395385], [117.85757, 36.397554], [117.858304, 36.400421], [117.85736, 36.403644], [117.858164, 36.40634], [117.857692, 36.409811], [117.855103, 36.412941], [117.836946, 36.416442], [117.832887, 36.419262], [117.831015, 36.417511], [117.829511, 36.417759], [117.828287, 36.424003], [117.8268, 36.427101], [117.829231, 36.432569], [117.829738, 36.43593], [117.833272, 36.437804], [117.834357, 36.441072], [117.833097, 36.443008], [117.828374, 36.443969], [117.822759, 36.443039], [117.82045, 36.446415], [117.816811, 36.445316], [117.817179, 36.443395], [117.819278, 36.442482], [117.817284, 36.436116], [117.815272, 36.434954], [117.811214, 36.436797], [117.803114, 36.433127], [117.799301, 36.432259], [117.799248, 36.436643], [117.796467, 36.439647], [117.791517, 36.440995], [117.789347, 36.440639], [117.786566, 36.435729], [117.786444, 36.434288], [117.791079, 36.43387], [117.78863, 36.429641], [117.785359, 36.431361], [117.785272, 36.4337], [117.783557, 36.435434], [117.779796, 36.441227], [117.774653, 36.441398], [117.771785, 36.44355], [117.767516, 36.443891], [117.764438, 36.442002], [117.759575, 36.440824], [117.755761, 36.445285], [117.757231, 36.447283], [117.763511, 36.452889], [117.760589, 36.452935], [117.756986, 36.459145], [117.753487, 36.460771], [117.757598, 36.46331], [117.761097, 36.462319], [117.76414, 36.463171], [117.766117, 36.466546], [117.765557, 36.469844], [117.761569, 36.468806], [117.760152, 36.469565], [117.758543, 36.475417], [117.757318, 36.474813], [117.752647, 36.476764], [117.752193, 36.478188], [117.748589, 36.478668], [117.757371, 36.484489], [117.759032, 36.489303], [117.755674, 36.496206], [117.75263, 36.495385], [117.750706, 36.496252], [117.750951, 36.498682], [117.743096, 36.498434], [117.737464, 36.504315], [117.735837, 36.504996], [117.741819, 36.507797], [117.744391, 36.50758], [117.75165, 36.509994], [117.757406, 36.510551], [117.760117, 36.509994], [117.757878, 36.508586], [117.754484, 36.508106], [117.75835, 36.507101], [117.765575, 36.509499], [117.765872, 36.513012], [117.760852, 36.51753], [117.756811, 36.519139], [117.750793, 36.524663], [117.742484, 36.525761], [117.737621, 36.526225], [117.736099, 36.52703], [117.731324, 36.526411], [117.718781, 36.519789], [117.710122, 36.518102], [117.702058, 36.519325], [117.693172, 36.519913], [117.689866, 36.520826], [117.689288, 36.524075], [117.685702, 36.525591], [117.68028, 36.525931], [117.677236, 36.524291], [117.674227, 36.525266], [117.664798, 36.530743], [117.663906, 36.532553], [117.654075, 36.534579], [117.651137, 36.534471], [117.646973, 36.536312], [117.63702, 36.545098], [117.630897, 36.548763], [117.63039, 36.550619], [117.631719, 36.552212], [117.629568, 36.553851], [117.627346, 36.553542], [117.622466, 36.549397], [117.617655, 36.548222], [117.61797, 36.547217], [117.613719, 36.543876], [117.605848, 36.54403], [117.603853, 36.542917], [117.599935, 36.543613], [117.597993, 36.541231], [117.593358, 36.54103], [117.590174, 36.537224], [117.590366, 36.535337], [117.588215, 36.532707], [117.585346, 36.530727], [117.583334, 36.528175], [117.579976, 36.527896], [117.578121, 36.526736], [117.574798, 36.521414], [117.572489, 36.520145], [117.565981, 36.519464], [117.564337, 36.514312], [117.562868, 36.512749], [117.559352, 36.514296], [117.551235, 36.514172], [117.548523, 36.513569], [117.548419, 36.511913], [117.540442, 36.509561], [117.535859, 36.505135], [117.523229, 36.505089], [117.521724, 36.501994], [117.518663, 36.502272], [117.516109, 36.504377], [117.50766, 36.507627], [117.502255, 36.510582], [117.500593, 36.509716], [117.497427, 36.504609], [117.497584, 36.500044], [117.499456, 36.497165], [117.498284, 36.495602], [117.489065, 36.487739], [117.48352, 36.487321], [117.48331, 36.483947], [117.480616, 36.479891], [117.483922, 36.477105], [117.478535, 36.474272], [117.470785, 36.468667], [117.464523, 36.467165], [117.457158, 36.466825], [117.450301, 36.468203], [117.44047, 36.468466], [117.431112, 36.467692], [117.423152, 36.466205], [117.4171, 36.462164], [117.409525, 36.452873], [117.401968, 36.444278], [117.396686, 36.436085], [117.391718, 36.434304], [117.386995, 36.433932], [117.37426, 36.436364], [117.369502, 36.439632], [117.36142, 36.447747], [117.354475, 36.455614], [117.346394, 36.463728], [117.346918, 36.455723], [117.34223, 36.449141], [117.339152, 36.438176], [117.339432, 36.4258], [117.341776, 36.415699], [117.344924, 36.403985], [117.350382, 36.39337], [117.352446, 36.384412], [117.351746, 36.37801], [117.362697, 36.360229], [117.371076, 36.353252], [117.376901, 36.347453], [117.382184, 36.343266], [117.387747, 36.337915], [117.390441, 36.331231], [117.390021, 36.325973], [117.388674, 36.326128], [117.382534, 36.320621], [117.379665, 36.315161], [117.381117, 36.30728], [117.385962, 36.302362], [117.387887, 36.296341], [117.385892, 36.294433], [117.384913, 36.290119], [117.389479, 36.290569], [117.387589, 36.285572], [117.391928, 36.285324], [117.397805, 36.283772], [117.3977, 36.277502], [117.393065, 36.273063], [117.394604, 36.269943], [117.394534, 36.266528], [117.398995, 36.266279], [117.413881, 36.267925], [117.414476, 36.252075], [117.415578, 36.247013], [117.417222, 36.243675], [117.413216, 36.242355], [117.408896, 36.242635], [117.401409, 36.238768], [117.392925, 36.237448], [117.394324, 36.233333], [117.394359, 36.228379], [117.393117, 36.226764], [117.38521, 36.226997], [117.388394, 36.224139], [117.393239, 36.22299], [117.393467, 36.220551], [117.397403, 36.219448], [117.399537, 36.215006], [117.403788, 36.212909], [117.412727, 36.210936], [117.418272, 36.213686], [117.420931, 36.216963], [117.426074, 36.21948], [117.42791, 36.221654], [117.433071, 36.221871], [117.436832, 36.218781], [117.439123, 36.217849], [117.447362, 36.218299], [117.448394, 36.211076], [117.447817, 36.208668], [117.445421, 36.208218], [117.447782, 36.203557], [117.450056, 36.204117], [117.452453, 36.203154], [117.450564, 36.200512], [117.443356, 36.19478], [117.440435, 36.191175], [117.447135, 36.190445], [117.447012, 36.186902], [117.449287, 36.18252], [117.451456, 36.180624], [117.454237, 36.180888], [117.45401, 36.176692], [117.46022, 36.172621], [117.461217, 36.170196], [117.467934, 36.172667], [117.470243, 36.170445], [117.470663, 36.172791], [117.475631, 36.173102], [117.477957, 36.170196], [117.480494, 36.168953], [117.485024, 36.170709], [117.487788, 36.169528], [117.486739, 36.167989], [117.483503, 36.167958], [117.485042, 36.163482], [117.487946, 36.159223], [117.487351, 36.156021], [117.485532, 36.154544], [117.476558, 36.150113], [117.469596, 36.150564], [117.470855, 36.152772], [117.469158, 36.154699], [117.466185, 36.154155], [117.463438, 36.151217], [117.45966, 36.149818], [117.456948, 36.145527], [117.455304, 36.144361], [117.454709, 36.139666], [117.453502, 36.13623], [117.451263, 36.134193], [117.451456, 36.131238], [117.446785, 36.120835], [117.448289, 36.118518], [117.451088, 36.116962], [117.458943, 36.117258], [117.463596, 36.116854], [117.465135, 36.115329], [117.464173, 36.113619], [117.458453, 36.111519], [117.454884, 36.111192], [117.454709, 36.106604], [117.456091, 36.104286], [117.456161, 36.10046], [117.450966, 36.096975], [117.44815, 36.09671], [117.450424, 36.094206], [117.447047, 36.092043], [117.447712, 36.090425], [117.45198, 36.087407], [117.454482, 36.087516], [117.458593, 36.08971], [117.466272, 36.088714], [117.470593, 36.091126], [117.473742, 36.089803], [117.477642, 36.090768], [117.480809, 36.093459], [117.480161, 36.096368], [117.484867, 36.100755], [117.489678, 36.100817], [117.491304, 36.099059], [117.491077, 36.096586], [117.493963, 36.097457], [117.49657, 36.099526], [117.501818, 36.100226], [117.505911, 36.098251], [117.521217, 36.106417], [117.528617, 36.109699], [117.534844, 36.111426], [117.542174, 36.111519], [117.547666, 36.106153], [117.54973, 36.098328], [117.552862, 36.087967], [117.556675, 36.083082], [117.561661, 36.079332], [117.5759, 36.074508], [117.589474, 36.075878], [117.601877, 36.07566], [117.614454, 36.070198], [117.621119, 36.065731], [117.630565, 36.059864], [117.642023, 36.054417], [117.656542, 36.049747], [117.673912, 36.049809], [117.687189, 36.050914], [117.690006, 36.052346], [117.694326, 36.049], [117.697877, 36.047723], [117.69793, 36.048502], [117.70274, 36.049093], [117.705557, 36.050712], [117.711679, 36.057172], [117.713603, 36.06044], [117.712187, 36.067521], [117.70895, 36.069855], [117.703685, 36.078803], [117.703318, 36.082257], [117.706431, 36.08526], [117.706764, 36.097722], [117.705924, 36.100257], [117.701481, 36.10256], [117.696058, 36.106355], [117.689516, 36.116325], [117.689306, 36.120508], [117.69144, 36.125329], [117.692944, 36.124396], [117.699679, 36.126013], [117.702216, 36.128579], [117.701201, 36.135017], [117.699032, 36.141283], [117.695743, 36.142247], [117.695323, 36.144672], [117.689463, 36.14349], [117.690583, 36.144641], [117.695236, 36.146351], [117.697318, 36.146227], [117.704822, 36.147533], [117.708198, 36.146771], [117.712431, 36.147377], [117.713376, 36.149616], [117.713254, 36.15543], [117.717434, 36.156875], [117.721668, 36.154792], [117.724467, 36.158772], [117.730432, 36.157217], [117.73972, 36.158648], [117.746175, 36.164803], [117.745196, 36.169543], [117.742292, 36.175869], [117.742974, 36.180919], [117.742414, 36.184183], [117.744968, 36.185084], [117.751178, 36.189217], [117.75179, 36.197063], [117.754677, 36.199891], [117.761639, 36.201755], [117.765312, 36.200792], [117.769091, 36.205142], [117.77656, 36.205561], [117.774286, 36.2128], [117.778607, 36.21496], [117.78319, 36.218672], [117.791674, 36.223766], [117.791132, 36.22695], [117.797132, 36.226282], [117.803832, 36.231858], [117.80838, 36.232898], [117.812316, 36.232339], [117.814135, 36.230895], [117.814467, 36.232976], [117.811633, 36.235321], [117.811458, 36.236982], [117.813435, 36.237541], [117.813435, 36.239622], [117.809587, 36.242044], [117.811301, 36.243908], [117.809849, 36.246097], [117.80817, 36.251904], [117.808677, 36.253022], [117.807645, 36.25681], [117.807837, 36.260691], [117.8067, 36.262833], [117.815639, 36.262523], [117.817878, 36.264448], [117.823738, 36.266978], [117.823511, 36.269927], [117.824963, 36.273963], [117.826082, 36.274739], [117.83119, 36.275375], [117.83887, 36.278681], [117.840881, 36.280916], [117.843365, 36.281894], [117.84452, 36.283865], [117.84466, 36.287869], [117.846899, 36.288908], [117.847879, 36.285525], [117.851902, 36.281506], [117.853966, 36.281149], [117.856048, 36.278619], [117.855873, 36.273559], [117.862363, 36.263097], [117.86378, 36.257043], [117.865861, 36.256018], [117.86957, 36.256065], [117.870024, 36.258735], [117.871476, 36.260241], [117.878561, 36.26066], [117.881692, 36.263982], [117.88792, 36.266652], [117.891016, 36.264743], [117.896351, 36.268747], [117.90027, 36.269912], [117.910345, 36.270983], [117.913774, 36.268235], [117.915856, 36.268515], [117.919074, 36.270424], [117.927891, 36.272783], [117.929325, 36.27432]]]]
        }
    },
        {
        "type": "Feature",
        "properties": {
            "adcode": 370117,
            "name": "钢城区",
            "center": [117.82033, 36.058038],
            "centroid": [117.835828, 36.130853],
            "childrenNum": 0,
            "level": "district",
            "parent": {"adcode": 370100},
            "subFeatureIndex": 9,
            "acroutes": [100000, 370000, 370100]
        },
        "geometry": {
            "type": "MultiPolygon",
            "coordinates": [[[[117.697877, 36.047723], [117.701219, 36.045279], [117.704262, 36.044532], [117.710227, 36.041824], [117.713848, 36.041683], [117.715615, 36.039566], [117.719726, 36.03762], [117.720478, 36.038259], [117.724187, 36.035067], [117.722507, 36.033168], [117.725831, 36.02968], [117.734158, 36.030536], [117.736904, 36.032405], [117.739703, 36.035846], [117.741662, 36.036048], [117.74607, 36.030536], [117.751371, 36.026784], [117.753505, 36.024698], [117.757021, 36.019403], [117.754869, 36.015837], [117.750286, 36.01196], [117.751528, 36.00911], [117.753942, 36.008238], [117.756548, 36.002241], [117.756653, 35.991899], [117.761866, 35.990622], [117.764892, 35.991556], [117.768863, 35.993815], [117.774286, 35.995591], [117.781038, 35.99545], [117.782088, 35.99827], [117.785639, 36.001587], [117.784729, 36.005839], [117.782263, 36.007303], [117.785027, 36.010449], [117.788245, 36.011243], [117.794718, 36.015137], [117.799196, 36.014389], [117.801173, 36.012956], [117.811703, 36.013564], [117.810741, 36.010807], [117.8127, 36.010636], [117.814152, 36.012614], [117.818473, 36.014514], [117.819942, 36.011866], [117.82526, 36.013361], [117.826502, 36.012505], [117.828741, 36.00802], [117.830578, 36.008175], [117.834881, 36.010963], [117.83817, 36.009889], [117.840374, 36.007848], [117.84354, 36.007194], [117.843908, 36.008284], [117.841826, 36.01196], [117.843505, 36.01238], [117.848701, 36.010465], [117.849925, 36.008269], [117.854438, 36.006883], [117.85624, 36.008923], [117.86203, 36.009157], [117.866368, 36.007397], [117.869605, 36.009063], [117.870077, 36.010667], [117.873488, 36.011477], [117.877022, 36.016367], [117.885226, 36.019263], [117.890736, 36.017784], [117.895039, 36.020338], [117.901494, 36.020727], [117.901949, 36.020073], [117.907582, 36.019326], [117.912357, 36.020462], [117.914526, 36.020042], [117.919862, 36.01604], [117.922888, 36.015464], [117.926911, 36.008347], [117.926124, 36.005076], [117.935063, 36.004422], [117.936952, 36.000076], [117.937547, 35.996525], [117.941833, 35.996478], [117.944596, 35.995715], [117.950806, 35.996478], [117.951454, 36.000108], [117.950317, 36.001618], [117.946206, 36.01129], [117.943879, 36.014638], [117.943354, 36.017301], [117.949862, 36.018267], [117.951069, 36.020758], [117.948497, 36.023763], [117.946748, 36.030318], [117.941973, 36.029711], [117.940433, 36.031969], [117.943564, 36.035238], [117.946975, 36.035908], [117.946853, 36.042524], [117.944649, 36.042322], [117.940626, 36.04352], [117.936987, 36.046431], [117.932789, 36.052206], [117.932649, 36.055771], [117.935763, 36.061218], [117.943459, 36.061732], [117.948812, 36.062572], [117.946591, 36.067132], [117.94192, 36.071801], [117.945174, 36.076251], [117.946188, 36.081526], [117.953133, 36.081853], [117.954008, 36.090208], [117.947395, 36.093848], [117.947098, 36.095575], [117.949162, 36.098484], [117.946626, 36.100397], [117.944684, 36.098017], [117.940013, 36.094315], [117.931494, 36.094206], [117.92922, 36.097286], [117.925774, 36.099355], [117.92441, 36.102295], [117.924725, 36.106899], [117.921121, 36.11001], [117.921996, 36.110772], [117.923867, 36.117413], [117.921646, 36.120353], [117.917885, 36.122546], [117.91729, 36.128082], [117.914719, 36.12833], [117.912042, 36.132747], [117.912287, 36.139728], [117.914141, 36.140645], [117.911885, 36.143444], [117.91059, 36.147859], [117.908859, 36.14775], [117.906654, 36.152709], [117.910485, 36.156673], [117.914264, 36.156394], [117.915733, 36.160124], [117.913774, 36.160497], [117.914754, 36.162098], [117.91736, 36.161181], [117.917885, 36.163373], [117.912112, 36.171641], [117.907914, 36.172807], [117.902998, 36.172077], [117.902596, 36.173693], [117.906147, 36.176257], [117.907844, 36.181696], [117.911185, 36.185643], [117.915891, 36.192558], [117.914684, 36.193692], [117.914614, 36.200823], [117.917972, 36.203822], [117.921646, 36.203666], [117.926824, 36.199378], [117.928556, 36.196566], [117.932684, 36.196597], [117.934048, 36.20261], [117.93704, 36.204614], [117.943932, 36.208], [117.948025, 36.208622], [117.955337, 36.207224], [117.959308, 36.204303], [117.961372, 36.205919], [117.963279, 36.211014], [117.967774, 36.214633], [117.965605, 36.217165], [117.963314, 36.224993], [117.965798, 36.228317], [117.963856, 36.23588], [117.96711, 36.24824], [117.970766, 36.252494], [117.973127, 36.259775], [117.975331, 36.262336], [117.973267, 36.266155], [117.97297, 36.268375], [117.961617, 36.271278], [117.954655, 36.270781], [117.951629, 36.272535], [117.943704, 36.274056], [117.939698, 36.271216], [117.932736, 36.271836], [117.929325, 36.27432], [117.927891, 36.272783], [117.919074, 36.270424], [117.915856, 36.268515], [117.913774, 36.268235], [117.910345, 36.270983], [117.90027, 36.269912], [117.896351, 36.268747], [117.891016, 36.264743], [117.88792, 36.266652], [117.881692, 36.263982], [117.878561, 36.26066], [117.871476, 36.260241], [117.870024, 36.258735], [117.86957, 36.256065], [117.865861, 36.256018], [117.86378, 36.257043], [117.862363, 36.263097], [117.855873, 36.273559], [117.856048, 36.278619], [117.853966, 36.281149], [117.851902, 36.281506], [117.847879, 36.285525], [117.846899, 36.288908], [117.84466, 36.287869], [117.84452, 36.283865], [117.843365, 36.281894], [117.840881, 36.280916], [117.83887, 36.278681], [117.83119, 36.275375], [117.826082, 36.274739], [117.824963, 36.273963], [117.823511, 36.269927], [117.823738, 36.266978], [117.817878, 36.264448], [117.815639, 36.262523], [117.8067, 36.262833], [117.807837, 36.260691], [117.807645, 36.25681], [117.808677, 36.253022], [117.80817, 36.251904], [117.809849, 36.246097], [117.811301, 36.243908], [117.809587, 36.242044], [117.813435, 36.239622], [117.813435, 36.237541], [117.811458, 36.236982], [117.811633, 36.235321], [117.814467, 36.232976], [117.814135, 36.230895], [117.812316, 36.232339], [117.80838, 36.232898], [117.803832, 36.231858], [117.797132, 36.226282], [117.791132, 36.22695], [117.791674, 36.223766], [117.78319, 36.218672], [117.778607, 36.21496], [117.774286, 36.2128], [117.77656, 36.205561], [117.769091, 36.205142], [117.765312, 36.200792], [117.761639, 36.201755], [117.754677, 36.199891], [117.75179, 36.197063], [117.751178, 36.189217], [117.744968, 36.185084], [117.742414, 36.184183], [117.742974, 36.180919], [117.742292, 36.175869], [117.745196, 36.169543], [117.746175, 36.164803], [117.73972, 36.158648], [117.730432, 36.157217], [117.724467, 36.158772], [117.721668, 36.154792], [117.717434, 36.156875], [117.713254, 36.15543], [117.713376, 36.149616], [117.712431, 36.147377], [117.708198, 36.146771], [117.704822, 36.147533], [117.697318, 36.146227], [117.695236, 36.146351], [117.690583, 36.144641], [117.689463, 36.14349], [117.695323, 36.144672], [117.695743, 36.142247], [117.699032, 36.141283], [117.701201, 36.135017], [117.702216, 36.128579], [117.699679, 36.126013], [117.692944, 36.124396], [117.69144, 36.125329], [117.689306, 36.120508], [117.689516, 36.116325], [117.696058, 36.106355], [117.701481, 36.10256], [117.705924, 36.100257], [117.706764, 36.097722], [117.706431, 36.08526], [117.703318, 36.082257], [117.703685, 36.078803], [117.70895, 36.069855], [117.712187, 36.067521], [117.713603, 36.06044], [117.711679, 36.057172], [117.705557, 36.050712], [117.70274, 36.049093], [117.69793, 36.048502], [117.697877, 36.047723]]]]
        }
    },
        {
        "type": "Feature",
        "properties": {
            "adcode": 370124,
            "name": "平阴县",
            "center": [116.455054, 36.286923],
            "centroid": [116.415506, 36.195741],
            "childrenNum": 0,
            "level": "district",
            "parent": {"adcode": 370100},
            "subFeatureIndex": 10,
            "acroutes": [100000, 370000, 370100]
        },
        "geometry": {
            "type": "MultiPolygon",
            "coordinates": [[[[116.619933, 36.294619], [116.610155, 36.298064], [116.605397, 36.303122], [116.601216, 36.308645], [116.597018, 36.313268], [116.593064, 36.316387], [116.59163, 36.315471], [116.589513, 36.316573], [116.583951, 36.317286], [116.581082, 36.316604], [116.578615, 36.317162], [116.57907, 36.320234], [116.578423, 36.323693], [116.575799, 36.325073], [116.573157, 36.331603], [116.564918, 36.333651], [116.547705, 36.335682], [116.540726, 36.340443], [116.540918, 36.34598], [116.544154, 36.349841], [116.54349, 36.353112], [116.546061, 36.356213], [116.547863, 36.360183], [116.549367, 36.360229], [116.550137, 36.363997], [116.551939, 36.363935], [116.552201, 36.367051], [116.554528, 36.369547], [116.552883, 36.371887], [116.532924, 36.374492], [116.531909, 36.375902], [116.528061, 36.37801], [116.528393, 36.379855], [116.523758, 36.380909], [116.520382, 36.384257], [116.509064, 36.374042], [116.503711, 36.369981], [116.49995, 36.364462], [116.497291, 36.358663], [116.495979, 36.354384], [116.491081, 36.35029], [116.489087, 36.347546], [116.485763, 36.338691], [116.484591, 36.336954], [116.479606, 36.335434], [116.468445, 36.338009], [116.459017, 36.338582], [116.452877, 36.338443], [116.449063, 36.337171], [116.44553, 36.333108], [116.442661, 36.327493], [116.441366, 36.321738], [116.437291, 36.318651], [116.430608, 36.318015], [116.416946, 36.319148], [116.406731, 36.319039], [116.399558, 36.316588], [116.389832, 36.312182], [116.374526, 36.303898], [116.363471, 36.30126], [116.351366, 36.2978], [116.331231, 36.290662], [116.322642, 36.284656], [116.315033, 36.276182], [116.3108, 36.270517], [116.307161, 36.259465], [116.300409, 36.252013], [116.29245, 36.245771], [116.286275, 36.239172], [116.283703, 36.233908], [116.283686, 36.227478], [116.280152, 36.221934], [116.270899, 36.214354], [116.261995, 36.209305], [116.255085, 36.203713], [116.247581, 36.195603], [116.243995, 36.192589], [116.241143, 36.188254], [116.234881, 36.18095], [116.227499, 36.174346], [116.226064, 36.173755], [116.233534, 36.163357], [116.241983, 36.155601], [116.246636, 36.149429], [116.251272, 36.139588], [116.256887, 36.129652], [116.261435, 36.122686], [116.265301, 36.121239], [116.271686, 36.109855], [116.273453, 36.101113], [116.2734, 36.093755], [116.267313, 36.074244], [116.26719, 36.061218], [116.268012, 36.052953], [116.271581, 36.043816], [116.275044, 36.043147], [116.289109, 36.035083], [116.294724, 36.031393], [116.301231, 36.031144], [116.305517, 36.037994], [116.30473, 36.046245], [116.310432, 36.052175], [116.324881, 36.054183], [116.332526, 36.056907], [116.338788, 36.060098], [116.34617, 36.065109], [116.35273, 36.070805], [116.356753, 36.077885], [116.360217, 36.084747], [116.368439, 36.088372], [116.37666, 36.090176], [116.386841, 36.090814], [116.392754, 36.089648], [116.398089, 36.084575], [116.401098, 36.074026], [116.409494, 36.068019], [116.416561, 36.068206], [116.427827, 36.067443], [116.430923, 36.066338], [116.43339, 36.059833], [116.430608, 36.058884], [116.429524, 36.05244], [116.433844, 36.050152], [116.433669, 36.046836], [116.436118, 36.046525], [116.436468, 36.04296], [116.434824, 36.041715], [116.434544, 36.038601], [116.438288, 36.038601], [116.437518, 36.041216], [116.441874, 36.043489], [116.442993, 36.045279], [116.446282, 36.045373], [116.446859, 36.047614], [116.449378, 36.047303], [116.450323, 36.052518], [116.452072, 36.058028], [116.45767, 36.058028], [116.458212, 36.060922], [116.462988, 36.062821], [116.471174, 36.06458], [116.486078, 36.064206], [116.504078, 36.06472], [116.515361, 36.068735], [116.520994, 36.069824], [116.532312, 36.07429], [116.53602, 36.079285], [116.543402, 36.086598], [116.543192, 36.090674], [116.546551, 36.101191], [116.549962, 36.105904], [116.554685, 36.10819], [116.561297, 36.108004], [116.563729, 36.106962], [116.563764, 36.10917], [116.566895, 36.108735], [116.567, 36.112934], [116.569012, 36.118751], [116.566125, 36.119124], [116.562137, 36.121628], [116.561367, 36.128051], [116.558621, 36.133804], [116.54907, 36.137784], [116.54314, 36.139572], [116.540323, 36.137707], [116.537979, 36.137644], [116.53679, 36.135328], [116.5303, 36.134628], [116.52528, 36.135281], [116.525262, 36.138033], [116.527536, 36.137924], [116.527379, 36.140412], [116.528796, 36.140785], [116.528516, 36.145263], [116.526137, 36.145387], [116.520364, 36.143786], [116.519769, 36.141189], [116.515833, 36.141329], [116.514154, 36.140334], [116.507192, 36.141252], [116.508521, 36.144641], [116.509781, 36.144377], [116.510183, 36.148325], [116.51307, 36.14817], [116.512755, 36.14946], [116.515798, 36.149849], [116.518685, 36.155088], [116.51907, 36.157342], [116.521868, 36.157171], [116.525997, 36.167461], [116.525962, 36.1683], [116.515379, 36.171781], [116.510358, 36.176863], [116.507367, 36.185597], [116.502084, 36.192744], [116.489996, 36.194236], [116.485221, 36.196566], [116.484329, 36.197825], [116.481932, 36.197017], [116.477524, 36.202765], [116.47637, 36.205111], [116.478189, 36.207115], [116.475757, 36.207798], [116.472504, 36.212925], [116.472626, 36.214633], [116.476387, 36.216979], [116.47595, 36.219278], [116.483647, 36.222042], [116.48753, 36.228457], [116.485781, 36.228922], [116.484766, 36.232339], [116.485221, 36.236051], [116.490311, 36.236082], [116.500002, 36.238551], [116.502032, 36.240243], [116.507279, 36.238411], [116.50644, 36.240336], [116.51167, 36.24456], [116.510813, 36.24647], [116.512317, 36.253425], [116.514714, 36.255614], [116.516341, 36.254528], [116.522446, 36.254435], [116.525594, 36.255226], [116.526067, 36.252292], [116.523128, 36.250305], [116.524387, 36.248876], [116.530125, 36.251236], [116.531857, 36.251081], [116.535355, 36.248876], [116.536405, 36.245569], [116.540026, 36.245569], [116.542283, 36.246687], [116.552376, 36.247758], [116.553321, 36.249358], [116.552481, 36.252991], [116.554283, 36.257369], [116.555595, 36.255319], [116.558411, 36.257462], [116.558883, 36.261048], [116.562609, 36.262088], [116.574417, 36.26347], [116.575834, 36.261933], [116.574417, 36.259402], [116.574557, 36.256468], [116.575589, 36.257508], [116.579402, 36.25695], [116.581257, 36.255475], [116.583023, 36.256298], [116.584038, 36.258518], [116.582709, 36.261234], [116.584405, 36.264634], [116.587484, 36.268856], [116.600604, 36.273963], [116.603123, 36.277533], [116.602196, 36.280233], [116.605187, 36.285975], [116.608161, 36.287093], [116.60963, 36.291329], [116.618254, 36.292214], [116.619933, 36.294619]]]]
        }
    },
        {
        "type": "Feature",
        "properties": {
            "adcode": 370126,
            "name": "商河县",
            "center": [117.156369, 37.310544],
            "centroid": [117.203044, 37.319399],
            "childrenNum": 0,
            "level": "district",
            "parent": {"adcode": 370100},
            "subFeatureIndex": 11,
            "acroutes": [100000, 370000, 370100]
        },
        "geometry": {
            "type": "MultiPolygon",
            "coordinates": [[[[117.400884, 37.22411], [117.402353, 37.224784], [117.404627, 37.233522], [117.40454, 37.236389], [117.408738, 37.239699], [117.415648, 37.237814], [117.419741, 37.240512], [117.42219, 37.239837], [117.429152, 37.239761], [117.429537, 37.24206], [117.426179, 37.242335], [117.424412, 37.243378], [117.423607, 37.245968], [117.425444, 37.249431], [117.429205, 37.250412], [117.428278, 37.254504], [117.431042, 37.254397], [117.432423, 37.251577], [117.430377, 37.248849], [117.432353, 37.249385], [117.43391, 37.252558], [117.438878, 37.251424], [117.438563, 37.250397], [117.443899, 37.250044], [117.445263, 37.252956], [117.442972, 37.253814], [117.443461, 37.256052], [117.438301, 37.257844], [117.437199, 37.259239], [117.436884, 37.263636], [117.438144, 37.268325], [117.439945, 37.26975], [117.436832, 37.269903], [117.436902, 37.27237], [117.432371, 37.272017], [117.431934, 37.27764], [117.430184, 37.285176], [117.427211, 37.288209], [117.417642, 37.296587], [117.411589, 37.308579], [117.409001, 37.321685], [117.409175, 37.329478], [117.411904, 37.336305], [117.413181, 37.342245], [117.413899, 37.349346], [117.408913, 37.351014], [117.407724, 37.353677], [117.409945, 37.360273], [117.412604, 37.361559], [117.415385, 37.364221], [117.401041, 37.379062], [117.389986, 37.385855], [117.36861, 37.396424], [117.360178, 37.405677], [117.368242, 37.419562], [117.369502, 37.424593], [117.370201, 37.43077], [117.369747, 37.436044], [117.362977, 37.443458], [117.361315, 37.445965], [117.353338, 37.450886], [117.341811, 37.45055], [117.333991, 37.449725], [117.326767, 37.448196], [117.309169, 37.447478], [117.299425, 37.449862], [117.295454, 37.453805], [117.2996, 37.458803], [117.307734, 37.46192], [117.304638, 37.466077], [117.297484, 37.468675], [117.283997, 37.471578], [117.285886, 37.47934], [117.291711, 37.482716], [117.29925, 37.484916], [117.312562, 37.48707], [117.318143, 37.492279], [117.317723, 37.499382], [117.31237, 37.505858], [117.307227, 37.507737], [117.30002, 37.508286], [117.286498, 37.510027], [117.285938, 37.515937], [117.284382, 37.522259], [117.275583, 37.526183], [117.273396, 37.532627], [117.260906, 37.530062], [117.24539, 37.53142], [117.238218, 37.532886], [117.230084, 37.528871], [117.224678, 37.518182], [117.221127, 37.513204], [117.209075, 37.500314], [117.204072, 37.493975], [117.199331, 37.487162], [117.176048, 37.486123], [117.163838, 37.478958], [117.152888, 37.47636], [117.135622, 37.47523], [117.131442, 37.481922], [117.124864, 37.483847], [117.11736, 37.482105], [117.109838, 37.478988], [117.100777, 37.472006], [117.0988, 37.469729], [117.104975, 37.455318], [117.102333, 37.445781], [117.096841, 37.440095], [117.089266, 37.435065], [117.085453, 37.434683], [117.038362, 37.435463], [117.031208, 37.43716], [117.030683, 37.442938], [117.027517, 37.441073], [117.02421, 37.438062], [117.022829, 37.439269], [117.018455, 37.43586], [117.013785, 37.424272], [117.015691, 37.42366], [117.015604, 37.419165], [117.01214, 37.419639], [117.010881, 37.416673], [117.013732, 37.41678], [117.013837, 37.412681], [117.015219, 37.410311], [117.017896, 37.409348], [117.018508, 37.406243], [117.019715, 37.405372], [117.016094, 37.39881], [117.008187, 37.392463], [116.999266, 37.376951], [117.002939, 37.373034], [117.006893, 37.367725], [117.009621, 37.359692], [117.006665, 37.355131], [117.000245, 37.350831], [116.992094, 37.347448], [116.987126, 37.342673], [116.986706, 37.335356], [116.989452, 37.327993], [116.993388, 37.322007], [116.995575, 37.315347], [116.999091, 37.302484], [117.001242, 37.29354], [117.002257, 37.285973], [117.008834, 37.2834], [117.017721, 37.28127], [117.024298, 37.278911], [117.030001, 37.275204], [117.038992, 37.266517], [117.03775, 37.264418], [117.0321, 37.264832], [117.030263, 37.264219], [117.03091, 37.260848], [117.032712, 37.260327], [117.032345, 37.253263], [117.036945, 37.253309], [117.038257, 37.251408], [117.038222, 37.247577], [117.041266, 37.247654], [117.041318, 37.244972], [117.043715, 37.245033], [117.044432, 37.243347], [117.042368, 37.243102], [117.042683, 37.238856], [117.0381, 37.238611], [117.03663, 37.2374], [117.035039, 37.231223], [117.037278, 37.230686], [117.035948, 37.224095], [117.031417, 37.222945], [117.0261, 37.217855], [117.023336, 37.218315], [117.022286, 37.21508], [117.025942, 37.214083], [117.02491, 37.212397], [117.027796, 37.210756], [117.032485, 37.21048], [117.032712, 37.206953], [117.037785, 37.207337], [117.0374, 37.195176], [117.041476, 37.195406], [117.042875, 37.197246], [117.045359, 37.197185], [117.051044, 37.194348], [117.057412, 37.192124], [117.059336, 37.184501], [117.063552, 37.182645], [117.062135, 37.177645], [117.062012, 37.167014], [117.060596, 37.163961], [117.052356, 37.163562], [117.050625, 37.160892], [117.052234, 37.158422], [117.053948, 37.152729], [117.054263, 37.148739], [117.053563, 37.148018], [117.0547, 37.141711], [117.058426, 37.141603], [117.060018, 37.139777], [117.059826, 37.13726], [117.055663, 37.13574], [117.054788, 37.136845], [117.051184, 37.136324], [117.047371, 37.134727], [117.047721, 37.132717], [117.044187, 37.131443], [117.044852, 37.122601], [117.042333, 37.120145], [117.042211, 37.117044], [117.04473, 37.118149], [117.045954, 37.114465], [117.050817, 37.115094], [117.051779, 37.113636], [117.05547, 37.113866], [117.056275, 37.115294], [117.055803, 37.120068], [117.06189, 37.121711], [117.06238, 37.124013], [117.088164, 37.125932], [117.099377, 37.128327], [117.113791, 37.132747], [117.124794, 37.13924], [117.133138, 37.141665], [117.140293, 37.141787], [117.162999, 37.131658], [117.163279, 37.129908], [117.168019, 37.131136], [117.180596, 37.130015], [117.185424, 37.13043], [117.201151, 37.134988], [117.208463, 37.136799], [117.212608, 37.140038], [117.218031, 37.152115], [117.222107, 37.157731], [117.227652, 37.161107], [117.23799, 37.165157], [117.248364, 37.167996], [117.257268, 37.174025], [117.285589, 37.179163], [117.30721, 37.187508], [117.316393, 37.192155], [117.320872, 37.195023], [117.320872, 37.195851], [117.330825, 37.203227], [117.332364, 37.205619], [117.336055, 37.207398], [117.345834, 37.202552], [117.34998, 37.194946], [117.355945, 37.192569], [117.36233, 37.195467], [117.363904, 37.201418], [117.358936, 37.209959], [117.354843, 37.219633], [117.35647, 37.22854], [117.370761, 37.237308], [117.377723, 37.24042], [117.386155, 37.244895], [117.392802, 37.246642], [117.396826, 37.245002], [117.396983, 37.23668], [117.398365, 37.230732], [117.400884, 37.22411]]]]
        }
    }
    ]
}

export default jiNan

  • 6
    点赞
  • 8
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值