15-Echarts simplified series: geo geographical coordinate system, basic drawing of map resources and use of configuration items

Echarts version: 5.4.3

geo: The geographical coordinate system component is used for map drawing, and supports drawing scatter plots and line sets on the geographical coordinate system . The data source for drawing maps supports geojson and svg formats.

       This article provides  example code  and map  static resources. The project is mainly based on react + ts, but the focus is on the option usage and configuration of Echarts. A simple understanding can be reused. 

1. Obtain geographical json and svg static resources

Alibaba Cloud data visualization platform: DataV.GeoAtlas geographical gadget series

The SVG obtained from here may be just an image, please note! ! !

2. Things to note:

Things to note when using geo and server.type.map at the same time:

①If you report the following error, please pay attention! ! ! ! It is necessary to bind the geographical coordinate system in the series, because when the type in the server is map, it will not be automatically bound to the corresponding geographical coordinate system by default.

The map data format is incorrect or the map data is not loaded successfully.

Uncaught TypeError: Cannot read properties of undefined (reading 'regions')

 Please configure it in the map in the server:

② Please pay attention if labels are duplicated or multiple maps are redrawn  when you use it ! ! To remove the duplicate map attributes of geo or server, you only need to specify a map.

③What is the projection in geo and what is its effect?

First, projection sets the projection method of the map. Common projection methods include latitude and longitude projection (default value) and Mercator projection. It is a process configuration that maps the longitude and latitude coordinates of a three-dimensional figure onto a two-dimensional plane. Use projection techniques to convert latitude and longitude coordinates into coordinates on a plane for plotting on a map.

The display effect of map graphics can be achieved simply. For example, the following renderings:

 projection simple configuration

geo: {
            show: true,
            map: '南京',
            // 实现截图的投影代码块
            projection: {
                project: (point) => [point[0] / 90 * Math.PI, -Math.log(Math.tan((Math.PI / 2 + point[1] / 180 * Math.PI) / 2))],
                unproject: (point) => [point[0] * 180 / Math.PI, 2 * 180 / Math.PI * Math.atan(Math.exp(point[1])) - 90]
            },
            // zoom: 1.2,
            roam:true,
            
            label: {
               //····
            },
            emphasis:{
                //···
            },
            tooltip:{
                //···
            },
        },

The result in point[0] / 90 * Math.PI is to convert the longitude value into coordinates in a coordinate system in units of the longitude grid , with values ​​ranging from -2 to 2. This value is multiplied by Math.PI to convert the angle into radians and then project it .

Import resource analysis:

④ The geojson imported resources of map use the geo geographical coordinate system

//导入方法一: require 获取资源
const nanjing=require('@assets/json/nanjing.json')  // 文件路径请替换真实的

 echarts.registerMap('南京', nanjing);              // 进行地图注册
 
 // 导入方法二: import 导入资源
 import nanjing from '@assets/json/nanjing.json';
 const MapData: any = nanjing;                     // 使用变量去接受这个文件的内容,请检查 nanjing 内容,如果是json 内容,则这一步可以hu'l
 echarts?.registerMap('南京', MapData);            //  进行地图注册

Imported JSON content output:

 ⑤The svg imported resource of map uses the geo geographical coordinate system

// 在 svg 中常见的导入资源方法都是通过 get 方法来获取 svg 的内容,只要你可以取到 svg 的内容,那你通过方法来实现都可以,即使把这个内容直接赋给一个变量都可以。
// 这里我通过 XMLHttpRequest 来实现
 const xhr=new XMLHttpRequest();
 xhr.open('GET','/src/assets/image/cow.svg',true);
    xhr.onreadystatechange=function(){
        if (xhr.readyState === 4 && xhr.status === 200) {
            // 获取 SVG 文件内容
            const svgText = xhr.responseText;
            // 注册地图
            echarts?.registerMap('nanjing', { svg: svgText });
          }
};
xhr.send();

通过 axios 来获取 
        axios.get('/src/assets/image/cow.svg').then((data)=>{
            console.log('庖丁解牛SVG:',data?.data)
            echarts?.registerMap('庖丁解牛', { svg: data?.data });
        })

Imported SVG content output:

 ⑥Error report when drawing map

As long as you draw the map, the following error will be reported:

parseXML.js:11 Uncaught TypeError: Cannot read properties of null (reading 'nodeName')
at parseXML (parseXML.js:11:20)
at new GeoSVGResource2 (GeoSVGResource.js:96:23)
at Object.registerMap (geoSourceManager.js:81:22)
at registerMap2 (install.js:52:20)
at Module.registerMap (echarts.js:2536:18)
at GeoSvgEcharts (index.tsx:9:14)
at renderWithHooks (react-dom.development.js:16305:18)
at mountIndeterminateComponent (react-dom.development.js:20074:13)
at beginWork (react-dom.development.js:21587:16)
at HTMLUnknownElement.callCallback2 (react-dom.development.js:4164:14)

 Please note that your resource import is wrong ! ! ! When echarts?.registerMap is drawing a map, please try to give it the content of json or svg instead of the path address of the file.

3. geo configuration code

option={
    geo:{
        
        id:'1',                   // 组件ID
        z:2,                      // 该组件中所有图形的 z 值,及图层优先级,大的覆盖小的图形图层
        zlevel:1,                 // 该组件中所有图形的 绘制优 先级
        show:true,                // 是否显示地理坐标系组件
        map:'name',               // 地图名称
        left:'10%',               // 组件距离容器左侧距离
        right:'10%',              // 组件距离容器右侧距离
        top:'10%',                // 组件距离容器顶部距离
        bottom:'10%',             // 组件距离容器底部距离
        layoutCenter:[0,0],       // 定义组件中心的位置,如果不想通过上面四个属性定义,也可以直接定义中心点的位置
        layoutSize:'10%',         // 组件地图的大小
        silent:true,              // 地图是否不响应和触发鼠标事件
        roam:'scale',             // 是否开启鼠标是否和平移
        zoom:1,                   // 视角缩放比例
        center:[100,90],          // 当前视角的中心点,默认原始坐标
        aspectScale:0.75,         //  scale 地图的长宽比,设置了 projection 则无效
        boundingCoords:[[-180,90],[180,-90]],        // 定义定位的左上角以及右下角分别所对应的经纬度
        nameProperty:"name",                         //  针对 GeoJSON 要素的自定义属性名称,这个属性一般不用管
        selectedMode:'multiple',                     //  地图区域的选择模式,可多选还是单选。
    
        // 名称映射,这个优先级大于 geo 中 label 的名称优先级
        nameMap:{
            '江宁区':'江宁',
            '建邺区':'建邺',     
       },
       // 自定义地图投影
      projection: {   
          project: (point) => [point[0] / 900 * Math.PI, -Math.log(Math.tan((Math.PI / 2 + point[1] / 180 * Math.PI) / 2))], //将经纬度坐标投影为其它坐标。
          unproject: (point) => [point[0] * 180 / Math.PI, 2 * 180 / Math.PI * Math.atan(Math.exp(point[1])) - 90],          //根据投影后坐标计算投影前的经纬度坐标
          stream:d3.geoProjection((x, y) => ([x, y / 0.75])).rotate([-115, 0]),                                              // 该属性主要用于适配 d3-geo 中使用的 stream 接口
        },
    
        // 缩放的限制
        scaleLimit:{
            min:1,                     // 最小缩放值
            max:5,                     // 最大缩放值             
        },
    
        // 文本标签样式
        label:{   
            show:true,                     // 是否显示标签
            position:'top',                // 标签位置
            distance: 5,                   // 距离图形元素的距离
            offset:[20,30],                // 文字偏移
            formatter:'name',              // 标签内容格式器             
            color:'red',                   // 标签文字颜色
            fontStyle:'normal',            //字体风格
            fontWeight:'normal',           //字体粗细
            fontFamily:'sans-serif',       //文字字体
            fontSize:15,                   //字体大小
            lineHeigh:10,                  //行高
            width:10,                      //文字显示宽度
            height:10,                     //文字显示高度
            textBorderColor:'red',         //文本描边颜色
            textBorderWidth:10,            //文本描边宽度
            textBorderType:'solid',        //描边类型
            textBorderDashOffset:10,       //描边为虚线时的偏移量
            textShadowColor:'transparent', //文字阴影颜色
            textShadowBlur:10,             //文字阴影长度
            textShadowOffsetX:10,          //文字阴影水平偏移量
            textShadowOffsetY:10,          //文字阴影竖直偏移量
            overflow:'none',               //文字超出是否截断
            ellipsis:'···',                //文字截断时末尾显示内容
            padding:[5,5,5,5],             //文本标签内边距 
                        
            backgroundColor:'auto',        //文本标签的背景颜色
            borderColor:'red',             //文本标签的边框颜色
            borderWidth:20,                //文本标签的边框宽度
            shadowBlur:20,                 //文本标签阴影大小
            shadowColor:'red',             //阴影颜色
            shadowOffsetX:20,              //文本标签的阴影水平偏移
            shadowOffsetY:20,              //文本标签的阴影竖直偏移
            rich:{
                // a文本样式对象, 样式名称自定义
                a:{
                    color:'red',                //文字颜色
                    fontStyle:'normal',         //字体风格
                    fontWeight:'bold',          //字体粗细
                    fontFamily:'serif',         //字体系列
                    fontSize:15,                //字体大小
                    align:'center',             //文字水平对齐方式
                    verticalAlign:'top',        //文字垂直对齐方式
                    lineHeight:20,              //行高
                    backgroundColor:'red',      //文字块背景颜色,可用图片
                    borderColor:'red',          //文字块的边框颜色
                    borderWidth:2,              //边框宽度
                    borderType:'solid',         //边框类型
                    borderDashOffset:'',        //边框类型为虚线时,虚线的偏移量
                    borderRadius:20,            //文字块圆角
                    padding:[5,5,5,5],          //文字块内边距
                    shadowColor:'red',          //文字块阴影颜色
                    shadowBlur:10,              //阴影长度
                    shadowOffsetX:10,           //阴影水平偏移量
                    shadowOffsetY:10,           //阴影竖直偏移量
                    widht:10,                   //文字块的显示宽度,当大于所有文字显示宽度时,不会扩大文字块大小
                    height:100,                 //文字块的高度
                    textBorderColor:'red',      //文字描边颜色
                    textBorderWidth:10,         //文字描边宽度
                    textBorderType:'solid',     //文字描边类型
                    textBorderDashOffset:10,    //文字描边类型为 虚线时的虚线偏移量
                    textShadowColor:'red',      //文字阴影颜色
                    textShadowBlur:10,          //文字阴影长度
                    textShadowOffsetX:10,       //文字阴影水平偏移量
                    textShadowOffsetY:10,       //文字阴影竖直偏移量           
                },
            },                            
        },
        
        // 地图区域样式
        itemStyle:{
            areaColor:'red',                  // 地图区域颜色
            color:'red',                      // 图形颜色 优先级低于 areaColor
            borderWidth:2,                    // 地图区域轮廓宽度
            borderColor:'red',                // 地图区域轮廓颜色
            borderType:'solid',               // 地图区域轮廓描边线类型
            borderDashOffset:10,              // 描边线为虚线时的虚线偏移量
            borderCap:'round',                // 指定线段末端绘制方法
            borderJoin:'bevel',               // 两个线段相连端形状
            borderMiterLimit:10,              // borderJoin 为 miter 时,斜接面比例
            shadowBlur:10,                    // 线段的阴影大小
            shadowColor:'red',                // 线段阴影的颜色
            shadowOffsetX:5,                  // 阴影水平偏移量  
            shadowOffsetY:5,                  // 阴影竖直偏移量    
            opacity:0.5,                      // 线段透明度  

        },
        
        // 高亮状态,鼠标悬浮图形区域的图形和标签样式
        emphasis:{
            disabled:true,                     // 是否开启高亮状态
            focus:'self',                      // 高亮时,是否淡化其它区域的颜色
            //  选中时文本标签样式
            label:{
                  // 免去冗余配置,请直接参考上面的 label 配置内容一样的          
            },
            // 选中时地图区域样式
            itemStyle:{
                  // 免去冗余配置,请直接参考上面的 itemStyle 配置内容一样的           
            },                                
        },
        // 选中状态下的区域和标签样式
        select:{
            disabled:false,                    // 是否可选中
            //  选中时文本标签样式
            label:{
                  // 免去冗余配置,请直接参考上面的 label 配置内容一样的          
            },
            // 选中时地图区域样式
            itemStyle:{
                  // 免去冗余配置,请直接参考上面的 itemStyle 配置内容一样的           
            },         
        },
        // 淡出状态的区域和标签样式
        blur:{
            //  选中时文本标签样式
            label:{
                  // 免去冗余配置,请直接参考上面的 label 配置内容一样的          
            },
            // 选中时地图区域样式
            itemStyle:{
                  // 免去冗余配置,请直接参考上面的 itemStyle 配置内容一样的           
            },        
        },
        tooltip:{
            show:true,                                         //是否显示提示组件
            position:['10%','10'],                             // 提示组件的位置
            formatter:'{a}',                                   // 提示框悬浮层内容 {a}(系列名称),{b}(区域名称),{c}(合并数值), {d}(无)                              
            valueFormatter:(value: number | string) => string, // tooltip 中数值显示部分的格式化回调函数。
            backgroundColor:'red',                             // 提示框背景颜色
            borderColor:'red',                                 // 提示框边框颜色
            borderWidth:'2',                                   // 提示框边框宽
            pading:[5,5,5,5],                                  // 提示框内边距
            extraCssText:'box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);' // 额外附加到浮层的 css 样式 
            // 提示文字样式
            textStyle:{
                color:'#333',                         //字体颜色
                fontStyle:'normal',                   //字体风格
                fontWeight:'normal',                  //字体粗细
                fontFamily:'sans-serif',              //字体
                fontSize:50,                          //字体大小
                lineHeight:20,                        //行高
                backgroundColor:'transparent',        //文本盒子的背景颜色
                borderColor: "rgba(239, 232, 232, 1)",//文本盒子边框颜色
                borderWidth:200,                      //文本盒子边框宽度
                borderType:'solid',                   //文本描边类型
                borderDashOffset:20,                  //文本描边为虚线时的偏移量
                borderRadius:[20,20,20,20],           //文本框圆角
                padding:[3,4,5,6],                    //文本框内边距
                shadowColor:'transparent',            //文本框背景阴影颜色
                shadowBlur:20,                        //文本框背景阴影长度
                shadowOffsetX:20,                     //阴影水平偏移量  
                shadowOffsetY:20,                     //阴影竖直偏移量 
                width:20,                             //文本框宽度
                height:20,                            //文本框高度
                textBorderColor:"rgba(62, 2, 20, 1)", //文字描边颜色
                textBorderWidth:"rgba(62, 2, 20, 1)", //文字描边宽度
                textBorderType:'solid',               //文字描边类型
                textBorderDashOffset:20,              //文字描边虚线的偏移量
                textShadowColor:'transparent',        //文字阴影颜色
                textShadowBlur:20,                    //文字阴影长度
                textShadowOffsetX:20,                 //文字阴水平偏移量
                textShadowOffsetY:20,                 //文字阴竖直偏移量
                overflow:'none',                      //文字内容操作文本框时如何处理
                ellipsis:'···',                       //文字超出设置为截断时,末尾展示内容             
            },
         }
        regions:[
            {
                name:'name',                        // 这个名称对应你json 或者svg 中对应的区域名称
                selected:false,                     // 该区域是否可被选中
                // 地图区域样式
                itemStyle:{
                     // 免去冗余配置,请直接参考上面的 itemStyle 配置内容一样的               
                },
                文本标签样式
                label:{
                  // 免去冗余配置,请直接参考上面的 label 配置内容一样的          
                },
                
                // 该区域的高亮状态样式
                emphasis:{
                     // 该配置与上面的 emphasis 配置内容一样,但没有 disabled 属性
                },
                // 选中区域的样式
                select:{
                     // 该配置与上面的 select 配置内容一样,但没有 disabled 属性               
                },
                // 淡出状态的区域和标签样式
                blur:{
                    // 该配置与上面的 blur 配置内容一样            
                },
                // 提示框配置
                tooltip:{
                     // 该配置与上面的 blur 配置内容一样                  
                },           
            }       
        ],          
    },
   
    
}

4. Screenshots of example effects

Effect screenshot:

SVG:

 geoJSON:

 5. Instance configuration code

①svg code and svg static resources

// svg 地图 配置代码

import ReactECharts from 'echarts-for-react';
import * as echarts from 'echarts';
import snow from '@assets/img/snow.gif'
import mapsvg from '@assets/image/nanjing.svg'
import 'echarts-gl';
import { useEffect, useState } from 'react';
import axios from 'axios';
const GeoSvgEcharts :any= () => {
    const [mapRegistered, setMapRegistered] = useState(false);
    useEffect(()=>{
        axios.get('/src/assets/image/cow.svg').then((data)=>{
            console.log('庖丁解牛SVG:',data?.data)
            echarts?.registerMap('nrou', { svg: data?.data });
            setMapRegistered(true);
        })
    },[])
    const option = {
        tooltip:{
        },
        geo: {
            show: true,
            map: 'nrou',
            zoom: 1.2,
            roam:true,
            emphasis:{
                disabled:false,
                focus:'self',
            },
            
        },
        series: [
            {
                geoIndex: 0,
                type: 'map',
                label:{
                    show:false,
                }
            }
        ]
    };
    return (
        mapRegistered&&( <ReactECharts
            option={option}
            style={
   
   { width: '800px', height: '800px' }}
            echarts={echarts}
        ></ReactECharts>)
       
    );
};
export default GeoSvgEcharts;
// svg 静态资源
<svg
   xmlns:dc="http://purl.org/dc/elements/1.1/"
   xmlns:cc="http://creativecommons.org/ns#"
   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
   xmlns:svg="http://www.w3.org/2000/svg"
   xmlns="http://www.w3.org/2000/svg"
   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
   version="1.0"
   width="591.21002"
   height="372.84"
   viewBox="0 0 376.17478 237.23108"
   id="bull"
   xml:space="preserve"
   inkscape:version="0.48.0 r9654"
   sodipodi:docname="Beef_cuts_France.svg"
   style="display:inline"><metadata
   id="metadata85"><rdf:RDF><cc:Work
       rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
         rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title /></cc:Work></rdf:RDF></metadata><sodipodi:namedview
   pagecolor="#ffffff"
   bordercolor="#666666"
   borderopacity="1"
   objecttolerance="10"
   gridtolerance="10"
   guidetolerance="10"
   inkscape:pageopacity="0"
   inkscape:pageshadow="2"
   inkscape:window-width="1022"
   inkscape:window-height="690"
   id="namedview83"
   showgrid="false"
   inkscape:zoom="1"
   inkscape:cx="305.17417"
   inkscape:cy="163.51163"
   inkscape:window-x="0"
   inkscape:window-y="24"
   inkscape:window-maximized="0"
   inkscape:current-layer="layer1" /><defs
   id="defs78"><marker
     inkscape:stockid="Arrow1Send"
     orient="auto"
     refY="0"
     refX="0"
     id="Arrow1Send"
     style="overflow:visible"><path
       id="path3885"
       d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
       style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
       transform="matrix(-0.2,0,0,-0.2,-1.2,0)"
       inkscape:connector-curvature="0" /></marker><marker
     inkscape:stockid="Arrow1Mend"
     orient="auto"
     refY="0"
     refX="0"
     id="Arrow1Mend"
     style="overflow:visible"><path
       id="path3879"
       d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
       style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
       transform="matrix(-0.4,0,0,-0.4,-4,0)"
       inkscape:connector-curvature="0" /></marker><inkscape:perspective
     sodipodi:type="inkscape:persp3d"
     inkscape:vp_x="0 : 186.74054 : 1"
     inkscape:vp_y="0 : 1000 : 0"
     inkscape:vp_z="599.99268 : 186.74054 : 1"
     inkscape:persp3d-origin="299.99634 : 124.49369 : 1"
     id="perspective87" /><inkscape:perspective
     id="perspective2980"
     inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
     inkscape:vp_z="1 : 0.5 : 1"
     inkscape:vp_y="0 : 1000 : 0"
     inkscape:vp_x="0 : 0.5 : 1"
     sodipodi:type="inkscape:persp3d" /><inkscape:perspective
     sodipodi:type="inkscape:persp3d"
     inkscape:vp_x="0 : 0.5 : 1"
     inkscape:vp_y="0 : 1000 : 0"
     inkscape:vp_z="1 : 0.5 : 1"
     inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
     id="perspective2980-2" /><inkscape:perspective
     id="perspective87-0"
     inkscape:persp3d-origin="299.99634 : 124.49369 : 1"
     inkscape:vp_z="599.99268 : 186.74054 : 1"
     inkscape:vp_y="0 : 1000 : 0"
     inkscape:vp_x="0 : 186.74054 : 1"
     sodipodi:type="inkscape:persp3d" /></defs>
<g
   transform="translate(-7.6941642,10.065285)"
   style="display:inline"
   inkscape:groupmode="layer"
   id="g3804"
   inkscape:label="Fond"
   sodipodi:insensitive="true"><g
     style="fill:#555555;fill-opacity:1;stroke:#000000;stroke-width:3.81768727;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
     id="g3806"
     transform="translate(-2.6971997,-1.3169604)"><path
       sodipodi:nodetypes="ccccccssssssscccsssscssssscsssccsssccccccccsscccccssscsssssccccscsccscssccccccccscscccccccccccsssccccccccccccccccccccccccccssscccccccccccccc"
       id="path3808"
       d="m 357.29475,-3.9785785 c -1.94073,4.46367059 -3.50339,9.4136535 -6.89967,13.0039976 -4.07552,3.2021979 -9.11695,-0.8765321 -13.58063,0.6760488 -2.71703,0.5822181 -5.82824,2.7289311 -8.35119,0.4970951 -3.39724,-1.6496174 -3.28476,-5.7232406 -4.25513,-8.8284024 -2.52391,4.3666345 -3.88673,9.4120084 -3.49955,14.5549334 -1.40412,-0.01941 -2.80592,-0.133789 -4.19548,-0.278373 -0.16205,-0.0165 -0.31516,-0.04218 -0.47721,-0.05965 -0.16204,-0.01747 -0.33505,-0.02133 -0.49709,-0.03977 -0.1601,-0.01844 -0.31711,-0.0383 -0.47721,-0.05965 -4.51025,-0.586099 -8.96371,-1.680904 -13.42156,-2.803614 -0.1009,-0.02523 -0.19734,-0.05334 -0.29826,-0.07953 -0.11548,-0.02911 -0.24147,-0.07031 -0.35791,-0.09942 -0.20959,-0.05337 -0.4068,-0.1057 -0.61639,-0.15907 -6.89928,-1.734039 -13.82727,-3.3658452 -20.99728,-3.0223361 -12.71176,0.9703631 -25.22495,4.3671141 -37.06339,8.9278211 -3.5787,1.41673 -7.27145,2.418241 -11.0355,3.121755 -0.22414,0.04172 -0.45191,0.07952 -0.67605,0.119302 -0.22513,0.03979 -0.44996,0.08243 -0.67605,0.119303 -0.22222,0.03687 -0.45286,0.08437 -0.67605,0.119303 -0.46675,0.07278 -0.92317,0.133823 -1.39186,0.198838 -10.772,0.873327 -21.16233,4.175595 -31.93336,4.175595 -3.18959,0 -6.37841,0.02431 -9.56411,0 -0.20571,-9.53e-4 -0.41067,-0.01798 -0.61639,-0.01988 -0.20668,-0.0019 -0.40971,0.0029 -0.6164,0 -0.20376,-0.0019 -0.41165,0.0029 -0.6164,0 -5.59608,-0.07666 -11.17469,-0.343978 -16.72227,-1.15326 -1.22265,-0.01067 -2.43983,-0.01648 -3.65861,-0.03977 -0.19698,-0.0039 -0.39954,-0.01502 -0.59652,-0.01988 -0.19794,-0.0039 -0.39953,-0.015 -0.59651,-0.01988 -0.17952,-0.0049 -0.35735,0.0039 -0.53686,0 -9.24077,-0.226095 -18.41519,-0.865071 -27.5987,-2.246868 -4.4889,-0.555048 -8.98311,-0.931472 -13.46133,-1.292447 -0.16108,-0.01262 -0.33601,-0.02716 -0.49709,-0.03977 -0.16204,-0.01261 -0.31517,-0.02716 -0.47721,-0.03977 -4.58496,-0.366798 -9.17075,-0.71171 -13.71981,-1.232795 -3.98723,-0.193101 -7.984272,-0.270609 -11.989929,-0.278373 l -0.596514,0 -0.278373,0 -0.318141,0 c -5.635867,0.0049 -11.272638,0.124613 -16.881336,0.178954 -4.172561,-0.09704 -8.453644,1.350539 -12.626206,0.477211 -5.142925,-0.582217 -10.386314,-0.6689 -15.529239,-0.377792 -1.174139,0.0689 -2.382129,-0.02421 -3.598965,-0.07953 -0.218333,-0.0097 -0.437832,-0.01212 -0.656165,-0.01988 -1.987304,-0.06792 -3.967704,-0.0034 -5.82595,0.954422 -8.636231,3.202181 -13.58128,11.646055 -17.656804,19.505997 -3.687381,7.762905 -3.079651,10.011913 -3.952978,18.357034 -0.09704,13.973232 -1.488856,34.238271 -0.421456,48.114469 0.873327,6.6955 -0.101064,13.683 1.451517,20.28147 0.130029,0.74038 0.27158,2.56638 0.278373,2.74396 0.207658,5.50875 -4.041105,18.24658 -4.394318,20.361 -0.493914,2.95573 -0.475885,4.79619 -0.178954,7.39677 0.296932,2.60057 1.869813,8.51569 3.519431,12.78528 4.686854,-6.46747 8.655895,-13.92971 9.444799,-21.95171 0.02814,-0.28334 0.199944,-2.25755 0,-4.47385 -0.149435,-1.66515 -0.563981,-3.30104 -0.656165,-3.6785 -0.0039,-0.0155 -0.01604,-0.0453 -0.01988,-0.0597 -0.528847,-2.15712 -1.19088,-4.29153 -1.670239,-6.46223 -0.01164,-0.0543 -0.647941,-4.39574 -0.596513,-5.58735 -0.09704,-4.07552 -0.767497,-8.15539 -1.252679,-12.32795 -1.880238,-19.191474 -0.534207,-37.93084 1.203158,-57.147144 1.261473,-10.479923 4.172146,-18.969042 11.061725,-26.828984 2.172298,-1.810289 6.419571,-5.959673 6.122064,-5.001969 -0.08137,0.261944 -7.049633,5.34144 -9.569267,8.632909 -7.02092,12.51923 -7.137582,17.110823 -8.300704,28.190045 -1.163122,11.079222 -0.473946,29.706291 0.357908,37.699663 2.425909,10.1888 5.822573,20.28195 11.353643,29.20929 0.06987,0.10867 0.789018,1.48104 0.855003,1.63047 0.899527,2.04359 1.183141,4.28961 0.497095,6.42246 -1.383738,5.1012 -3.910151,9.81889 -5.408391,14.97249 -0.137792,0.47452 -0.259408,0.94937 -0.377792,1.43164 -0.03881,0.15914 -0.102309,0.3171 -0.139186,0.47721 -1.0674,5.04588 -3.00804,10.09282 -2.425823,15.42982 0.776292,11.93547 -1.738513,23.67959 -5.328855,34.93581 0.485181,5.91921 2.029706,11.9388 2.903033,17.95506 l 23.104962,0 c -2.231835,-3.78446 -4.464236,-7.67102 -6.501998,-11.55248 -1.0674,-2.1348 0.389704,-4.2654 0.874886,-6.30316 1.649617,-4.2696 -2.330431,-8.45364 -0.874886,-12.6262 0.634616,-1.74471 1.181036,-3.56333 1.988378,-5.22944 0.673432,-1.3915 1.527604,-2.68242 2.763847,-3.69839 0.786964,2.40844 1.647539,4.82927 2.545125,7.2377 0.875267,2.34634 1.774111,4.69253 2.684311,7.03886 0.582218,3.10517 0.205163,6.2975 1.272563,9.30562 0.873325,4.56071 6.702397,5.7367 7.575723,10.20038 0.679255,2.42591 1.16279,4.95098 1.550936,7.37689 l 24.735433,-0.0994 c -2.814056,-5.337 -5.921259,-10.59314 -9.802708,-15.25087 -4.075528,-4.75477 -4.163596,-11.2556 -6.104323,-16.98075 -0.970364,-3.29924 -2.725639,-6.38655 -3.598966,-9.78283 -0.485183,-3.49331 -0.191697,-7.18428 0.09942,-10.67759 1.746653,-9.02438 3.63453,-10.29609 3.537493,-19.4175 0,-1.84369 0.391266,-3.7715 1.749774,-5.13002 0.927667,-1.0247 1.817282,-2.07714 2.704195,-3.14164 0.110624,-0.13197 0.228375,-0.26473 0.338024,-0.39767 0.106744,-0.12905 0.211398,-0.26959 0.318141,-0.39768 0.0032,-0.004 0.01708,0.004 0.01988,0 14.060633,-17.30814 11.568781,-9.86916 43.626853,-6.07344 3.59034,0.67927 7.17953,1.75052 10.47876,3.40013 5.82218,2.61997 10.67579,7.37047 17.08017,8.72898 3.10516,0.58223 6.22034,2.05362 9.3255,1.47141 4.2696,-2.61998 8.13945,-6.31508 13.28237,-6.80026 9.12141,-0.67925 17.86885,2.23167 26.50509,4.85164 6.30736,0.97036 12.70154,-6.3e-4 19.0089,0.77547 10.71088,0.38329 21.13941,3.22196 31.09825,7.01898 0.14653,0.0563 0.29189,0.1028 0.43744,0.15907 3.90986,10.60865 7.41097,21.38135 10.16062,32.35092 1.55257,5.91921 0.86044,12.13527 -0.4971,18.05448 3.49332,3.2022 7.32859,4.62056 8.29895,9.66645 l 3.07048,6.50628 22.95623,0.091 c -1.8902,-2.87895 -4.32071,-6.26638 -6.48835,-8.96642 l 15.78772,-0.0994 c -2.11233,-3.05556 -4.60229,-5.91412 -6.99909,-8.76875 -3.09867,-3.71142 -5.0516,-8.04638 -6.99909,-12.36771 -1.64817,-3.94023 -0.56461,-9.97832 -2.30652,-13.81924 -1.66987,-3.98746 -1.51669,-10.83723 -1.13338,-15.27075 0.61545,-4.87343 1.53089,-9.75832 2.98257,-14.43563 3.63648,-8.20005 19.7573,-12.76005 24.15928,-20.7442 3.39628,-6.50143 3.10096,-14.25723 6.30316,-20.75867 4.85181,-6.98663 3.40408,-11.448937 11.06995,-13.098566 5.53107,-1.843682 7.65911,-3.731137 13.28722,-5.089642 5.02262,-1.076137 9.71746,-4.310405 15.07192,-4.334666 0.15914,-0.0013 0.3171,0.016 0.47721,0.01988 0.16205,0.0038 0.31419,0.0093 0.47721,0.01988 0.12033,0.0078 0.25649,0.0082 0.37779,0.01988 5.3302,0.682164 10.84364,0.483625 15.98657,-0.874887 l 0.0199,0 c 5.43403,-2.619977 7.17715,-8.823464 10.37934,-13.481208 1.16443,-1.455544 -0.49486,-3.115341 -1.17315,-4.473853 -4.56061,-6.501241 -11.34246,-12.035762 -12.5069,-20.380883 -0.97036,-8.054014 -1.84723,-16.7801 -7.4763,-23.184497 1.26244,-1.649617 3.48302,-2.900564 3.57908,-5.229436 -2.52293,-0.388145 -5.03291,-0.886801 -7.55584,-1.371982 1.0674,-2.328872 2.32081,-4.65272 2.90303,-7.078629 0.87351,-5.2396107 -0.96388,-10.48417274 -3.77792,-14.7537705 l -3e-5,-1.39e-4 0,-2e-5 0,4e-5 z"
       style="fill:#555555;fill-opacity:1;stroke:#000000;stroke-width:3.81768727;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
       inkscape:connector-curvature="0" /><g
       style="fill:#555555;fill-opacity:1;stroke:#000000;stroke-width:3.81768727;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
       inkscape:label="Parties"
       id="g3810" /></g></g><g
   inkscape:groupmode="layer"
   id="layer2"
   inkscape:label="Parties"
   style="display:inline"
   transform="translate(-7.6941642,10.065285)"
   sodipodi:insensitive="true">

   <path name="Queue"
     stroke="#000000"
   d="m 79.1875,42.625 -28.28125,0.71875 -16.25,7.0625 -19.09375,26.875 -5.65625,26.84375 -0.84375,105.25 10.03125,-0.28125 2.125,-108.5 3.34375,-7.9375 -0.15625,-0.0625 c 0.127935,-0.148353 0.252038,-0.334229 0.375,-0.5 l 4.625,-10.90625 c 1.160782,-3.331585 2.453475,-6.881357 4.25,-10.15625 l 1.6875,-4 1.21875,-0.3125 c 3.89521,-4.622798 9.81761,-8.067743 12.75,-9.5625 L 73.5,44.84375 l 3.5625,0 2.125,-2.21875 z"
   id="path3704"
   inkscape:connector-curvature="0" /><path name="Langue"
   style="fill:#921319;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
   d="m 536.375,106.46875 c 5.2885,14.34201 10.52945,33.1769 13.78125,43.21875 -0.0655,0.0771 -0.13181,0.1476 -0.21875,0.21875 l 16.5625,0.9375 10.5,-8.5 11,-17 -13.5,-18 -38.125,-0.875 z"
   id="path3702"
   transform="matrix(0.6362812,0,0,0.6362812,7.6936433,-10.065285)"
   inkscape:connector-curvature="0" /><path name="Plat de joue"
   style="fill:#921319;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
   d="m 479.875,78.9375 c 0.34134,7.189091 0.93966,14.327462 3.25,20.84375 7.5898,21.40693 18.02765,40.11508 34.125,55.21875 -5.6799,1.95428 -9.21826,3.15884 -11.875,4.09375 0.41224,0.77565 1.5132,2.80766 1.625,3.03125 0.81585,1.6317 7.32508,-4.6998 16.75,-8.25 6.91248,-2.6038 24.01189,-1.36903 26.40625,-4.1875 C 545.49285,135.28652 536.7499,102.74928 529.625,91.40625 520.34937,82.635259 489.68249,79.683068 479.875,78.9375 z"
   transform="matrix(0.6362812,0,0,0.6362812,7.6936433,-10.065285)"
   id="path3698"
   inkscape:connector-curvature="0" /><path name="Gros bout de poitrine"
   style="fill:#921319;fill-opacity:1;stroke:none"
   d="m 440.65625,154.65625 -2.75,28.9375 -6.21875,29.1875 -14.5,44.46875 0.1875,0.40625 52.625,-40.125 6.84375,-19.21875 6.875,-19.21875 -43.0625,-24.4375 z"
   id="path4029"
   transform="matrix(0.6362812,0,0,0.6362812,7.6936433,-10.065285)"
   sodipodi:nodetypes="ccccccccc"
   inkscape:connector-curvature="0" /><path name="Jumeau à pot-au-feu"
   style="fill:#ca1a23;fill-opacity:1;stroke:#000000;stroke-width:1.00000012;stroke-opacity:1"
   d="m 403.4375,178.4375 c 0.59794,9.14065 1.66243,26.69593 1.40625,35.40625 -0.35075,11.92572 -5.91156,48.05129 -6,48.625 l 16.25,1.21875 16.59375,-50.90625 6.21875,-29.1875 -34.46875,-5.15625 z"
   transform="matrix(0.6362812,0,0,0.6362812,7.6936433,-10.065285)"
   id="path3669"
   inkscape:connector-curvature="0" /><path name="Onglet"
   style="fill:#f51633;fill-opacity:1;stroke:#000000;stroke-width:1.00000012;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
   d="m 156.1875,131.0625 -14.625,35.6875 c 5.95264,-0.95128 15.8535,-3.03977 25.15625,-7.375 11.81307,-5.50507 21.05604,-14.70831 24.1875,-18.0625 l -34.71875,-10.25 z"
   transform="matrix(0.6362812,0,0,0.6362812,7.6936433,-10.065285)"
   id="path4059"
   inkscape:connector-curvature="0" /><path name="Plat de tranche"
   style="fill:#f51633;fill-opacity:1;stroke:#000000;stroke-width:1.57163215;stroke-opacity:1"
   d="M 107.59375,176.90625 73.125,234.8125 l 0,-0.25 c -0.447624,-0.0734 -0.893563,-0.14307 -1.34375,-0.21875 l 1.21875,0.5 29.625,6.3125 14.5625,-13.59375 13.78125,-41.75 -2.125,-0.9375 -0.25,3.03125 -21,-11 z"
   transform="matrix(0.6362812,0,0,0.6362812,7.6936433,-10.065285)"
   id="path3626"
   inkscape:connector-curvature="0" /><path name="Araignée"
   style="fill:#f51633;fill-opacity:1;stroke:#000000;stroke-width:1.00000012;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
   d="m 77.125,161 -4,73.8125 34.46875,-57.90625 L 77.125,161 z"
   id="path3624"
   transform="matrix(0.6362812,0,0,0.6362812,7.6936433,-10.065285)"
   inkscape:connector-curvature="0" /><path name="Gîte à la noix"
   style="fill:#f51633;fill-opacity:1;stroke:#000000;stroke-width:1.00000012;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
   d="m 53.25,148.5 -3.59375,85.53125 c 6.375944,-0.54133 14.376253,-0.84866 21.03125,0.125 0.800411,0.1171 1.646727,0.27182 2.46875,0.40625 L 77.125,161 53.25,148.5 z"
   transform="matrix(0.6362812,0,0,0.6362812,7.6936433,-10.065285)"
   id="path3622"
   inkscape:connector-curvature="0" /><path name="Bavette d'aloyau"
   style="fill:#f51633;fill-opacity:1;stroke:#000000;stroke-width:1.00000012;stroke-opacity:1"
   d="m 166.875,179.09375 c -12.90655,4.07201 -25.86151,4.69065 -32.28125,4.71875 l 0.3125,-0.71875 c -1.19261,0.41897 -2.31436,0.77389 -3.34375,1.0625 l -15.8125,40.6875 9.59375,-1.125 29.875,5.15625 0.375,-1.59375 -6.3125,-1.625 c 4.80586,-9.61768 8.90823,-21.39006 12.46875,-31.5625 0.24202,-0.0174 0.84371,0.0181 1.59375,0.0625 l 3.53125,-15.0625 z"
   transform="matrix(0.6362812,0,0,0.6362812,7.6936433,-10.065285)"
   id="path4065"
   inkscape:connector-curvature="0" /><path name="Tende de tranche"
   style="fill:#f51633;fill-opacity:1;stroke:#000000;stroke-width:1.00000012;stroke-opacity:1"
   d="M 55.21875,101.71875 53.25,148.5 l 75.34375,39.40625 2.09375,-24.9375 -18.75,-44.65625 -8.5625,-2.375 -48.15625,-14.21875 z"
   transform="matrix(0.6362812,0,0,0.6362812,7.6936433,-10.065285)"
   id="path3620"
   inkscape:connector-curvature="0" /><path name="Rond de gîte"
   style="fill:#f51633;fill-opacity:1;stroke:#000000;stroke-width:1.00000012;stroke-opacity:1"
   d="m 24.40625,87.78125 c 0.686546,-0.686546 -6.845657,32.94323 -8.21875,37.0625 -1.373093,4.11928 4.125,54.9375 4.125,54.9375 l 23.348034,52.86888 c 1.699532,-0.25714 1.272678,1.78212 5.995716,1.38112 l 5.5625,-132.3125 -30.8125,-9.125 c 0.921559,-1.068635 1.719003,-2.609605 2.46875,-4.4375 l -2.46875,-0.375 z"
   transform="matrix(0.6362812,0,0,0.6362812,7.6936433,-10.065285)"
   id="path4067"
   sodipodi:nodetypes="0"
   inkscape:connector-curvature="0" /><path name="Bavettede de flanchet"
   style="fill:#ca1a23;fill-opacity:1;stroke:#000000;stroke-width:1.00000012;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
   d="m 197.46875,143.21875 -0.0312,0.0312 12.4375,3.65625 c -6.27553,7.51855 -19.88541,22.3419 -34.78125,29.0625 -2.93602,1.32466 -5.9563,2.39218 -8.96875,3.3125 -1.6212,4.92001 -3.16599,9.85551 -4.21875,14.6875 l 0.0937,0.125 c 4.33147,-0.0728 51.72357,5.08183 74.8125,7.625 l -1.25,-48.5625 c -1.31681,0.99046 -2.72856,0.2336 -3.8125,0.1875 l -34.28125,-10.125 z"
   transform="matrix(0.6362812,0,0,0.6362812,7.6936433,-10.065285)"
   id="path4063"
   inkscape:connector-curvature="0" /><path name="Flanchet"
   style="fill:#921319;fill-opacity:1;stroke:#000000;stroke-width:1.00000012;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
   d="m 161.75,194.09375 c -3.56052,10.17244 -7.66289,21.94482 -12.46875,31.5625 l 42,10.90625 16.65625,11 13.03125,3.75 16.28125,-49.53125 c -23.2719,-2.5639 -72.34505,-7.91499 -75.5,-7.6875 z"
   transform="matrix(0.6362812,0,0,0.6362812,7.6936433,-10.065285)"
   id="path4061"
   inkscape:connector-curvature="0" /><path name="Hampe"
   style="fill:#f51633;fill-opacity:1;stroke:#000000;stroke-width:1.00000012;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
   d="m 190.90625,141.3125 c -3.13146,3.35419 -12.37443,12.55743 -24.1875,18.0625 -9.30275,4.33523 -19.20361,6.42372 -25.15625,7.375 l -6.96875,17.0625 c 7.79394,-0.0341 25.22337,-0.95133 40.5,-7.84375 14.89584,-6.7206 28.50572,-21.54395 34.78125,-29.0625 l -18.96875,-5.59375 z m -59.25,38.9375 -1.21875,3.5 c 0,0 0.78497,0.008 1.875,0.0312 l -0.65625,-3.5312 z"
   id="path4057"
   transform="matrix(0.6362812,0,0,0.6362812,7.6936433,-10.065285)"
   inkscape:connector-curvature="0" /><path name="Plat de côtes"
   style="fill:#ca1a23;fill-opacity:1;stroke:#000000;stroke-width:1.00000012;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
   d="m 332.28125,147.625 -61.375,3.875 0,0.125 -35.34375,1.96875 1.28125,49.40625 0.40625,-1.25 95.9375,-9.40625 -0.28125,-0.53125 -2,-41.5 1.375,-2.6875 z m 0.90625,44.71875 7.15625,13.3125 0.0312,0 -7.1875,-13.3125 z"
   transform="matrix(0.6362812,0,0,0.6362812,7.6936433,-10.065285)"
   id="path4051"
   inkscape:connector-curvature="0" /><path name="Tendron Milieu de poitrine"
   style="fill:#921319;fill-opacity:1;stroke:#000000;stroke-width:1.00000012;stroke-opacity:1"
   d="M 333.1875,192.34375 237.25,201.75 l -17.15625,52.1875 8.21875,-2.0625 19.9375,-10.3125 43.9375,6.1875 43.9375,3.4375 34.65625,10.59375 -15.5625,-38.40625 c -0.76359,4.54074 -1.3125,7.4375 -1.3125,7.4375 L 333.1875,192.34375 z"
   id="path4049"
   transform="matrix(0.6362812,0,0,0.6362812,7.6936433,-10.065285)"
   inkscape:connector-curvature="0" /><path name="Macreuse à pot-au-feu"
   style="fill:#ca1a23;fill-opacity:1;stroke:#000000;stroke-width:1.00000012;stroke-opacity:1"
   d="m 402.65625,172.46875 0.25,5.84375 -41.78125,-2.5 c -1.29655,22.38348 -6.65767,51.91795 -7.0625,54.125 6.10976,11.04667 16.1653,28.89803 17.875,29.875 2.47486,1.41422 26.875,2.84375 26.875,2.84375 0,0 5.6777,-36.79168 6.03125,-48.8125 C 405.1973,201.82293 403.0625,172.5 403.0625,172.5 l -0.40625,-0.0312 z"
   transform="matrix(0.6362812,0,0,0.6362812,7.6936433,-10.065285)"
   id="path3667"
   inkscape:connector-curvature="0" /><path name="Rumsteck"
   style="fill:#f51633;fill-opacity:1;stroke:#000000;stroke-width:1.00000012;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
   d="m 73.5,44.84375 -24.1875,12.3125 c -3.305722,1.68506 -10.415962,5.834465 -14.125,11.375 -5.588491,8.34805 -7.13581,19.835267 -10.78125,24.0625 l 78.96875,23.34375 8.125,2.25 -0.21875,-0.5 9.9375,2.8125 c -1.19731,-1.17814 -4.8182,-5.38442 -2.84375,-11.78125 2.34225,-7.58844 9.21875,-7.15625 9.21875,-7.15625 l 93.75,26.625 -7.4375,-77.40625 -68.59375,-5.6875 -71.8125,-0.25 z"
   transform="matrix(0.6362812,0,0,0.6362812,7.6936433,-10.065285)"
   id="path4045"
   inkscape:connector-curvature="0" /><path name="Faux-filet"
   style="fill:#f51633;fill-opacity:1;stroke:#000000;stroke-width:1.00000012;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
   d="m 213.96875,51.3125 7.375,76.875 13.53125,3.84375 c 0.7433,0.79846 5.22353,0.84372 3.6875,12.5 -0.95757,7.26656 -2.57691,8.92417 -4.15625,9.125 l 36.5,-2.03125 0,-0.125 -1.71875,0.125 c 0,0 3.3549,-34.84028 3.625,-54.21875 0.2636,-18.912526 -2.91959,-40.815326 -3.1875,-42.625 L 213.96875,51.3125 z m 19.78125,102.34375 0.0625,0.0312 0.5625,-0.0312 c -0.21023,0.0242 -0.41797,0.0167 -0.625,0 z"
   transform="matrix(0.6362812,0,0,0.6362812,7.6936433,-10.065285)"
   id="path4043"
   inkscape:connector-curvature="0" /><path name="Côtes Entrecôtes"
   style="fill:#f51633;fill-opacity:1;stroke:#000000;stroke-width:1.00000012;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
   d="M 327.875,50.71875 269.53125,54.125 c 0,0 3.55613,23.559578 3.28125,43.28125 -0.2701,19.37847 -3.625,54.21875 -3.625,54.21875 l 63.09375,-4 9.53125,-18.84375 -13.9375,-78.0625 z"
   transform="matrix(0.6362812,0,0,0.6362812,7.6936433,-10.065285)"
   id="path4035"
   inkscape:connector-curvature="0" /><path name="Basses côtes"
   style="fill:#f51633;fill-opacity:1;stroke:#000000;stroke-width:1.00000012;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
   d="m 415.0625,28.75 -47.375,13.71875 -39.75,8.625 13.875,77.6875 7.59375,-14.96875 4.5,-3 c 0,0 0.0602,0.27071 0.0625,0.28125 l 11.9375,-10.28125 17.5,-6 16,-1 0,-0.5 23,15.5 3.53125,5.21875 2.875,-1.53125 -13.75,-83.75 z"
   transform="matrix(0.6362812,0,0,0.6362812,7.6936433,-10.065285)"
   id="path4031"
   inkscape:connector-curvature="0" /><path name="Collier"
   style="fill:#921319;fill-opacity:1;stroke:#000000;stroke-width:1.00000012;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
   d="m 407.875,29.53125 c -1.42018,0 -2.18247,0.766989 -2.5,2.03125 l 7,-2.03125 -4.5,0 z m 7.3125,0 13.625,82.96875 -2.875,1.53125 15.46875,22.78125 -0.78125,17.84375 42.75,24.25 c 2.01507,-3.36624 4.02891,-7.53698 5.71875,-8.75 C 504.9844,158.74942 490.32213,164.26507 517.25,155 501.15265,139.89633 490.7148,121.18818 483.125,99.78125 476.39431,80.797444 484.28286,56.529564 470.21875,41.1875 461.0857,31.224569 452.45314,29.53125 438.9375,29.53125 l -23.75,0 z"
   id="path4027"
   transform="matrix(0.6362812,0,0,0.6362812,7.6936433,-10.065285)"
   inkscape:connector-curvature="0" /><path name="Jumeau à biftek"
   style="fill:#ca1a23;fill-opacity:1;stroke:#000000;stroke-width:1.00000012;stroke-opacity:1"
   d="m 399.40625,93.3125 0,0.5 0,0.375 3.5,84.125 -0.53125,-0.0312 37.03125,5.53125 2,-47 -19,-28 -23,-15.5 z"
   transform="matrix(0.6362812,0,0,0.6362812,7.6936433,-10.065285)"
   id="path3665"
   inkscape:connector-curvature="0" /><path name="Paleron"
   style="fill:#ca1a23;fill-opacity:1;stroke:#000000;stroke-width:1.00000012;stroke-opacity:1"
   d="m 399.40625,93.8125 -16,1 -17.5,6 -11.9375,10.28125 c 0.1842,0.82636 7.4375,33.50844 7.4375,56.21875 0,2.63238 -0.10725,5.4961 -0.28125,8.5 l 41.78125,2.5 -3.5,-84.5 z"
   transform="matrix(0.6362812,0,0,0.6362812,7.6936433,-10.065285)"
   id="path3663"
   inkscape:connector-curvature="0" /><path name="Macreuse à bifteck"
   style="fill:#ca1a23;fill-opacity:1;stroke:#000000;stroke-width:1.00000012;stroke-opacity:1"
   d="m 353.90625,110.8125 -4.5,3 -7.59375,14.96875 -9.53125,18.84375 -1.375,2.6875 2,41.5 21,39 c 0,0 7.5,-40.50001 7.5,-63.5 0,-23 -7.5,-56.5 -7.5,-56.5 z"
   transform="matrix(0.6362812,0,0,0.6362812,7.6936433,-10.065285)"
   id="path3661"
   inkscape:connector-curvature="0" /><path name="Gîte"
   style="fill:#921319;fill-opacity:1;stroke:#000000;stroke-width:0.63628125;stroke-opacity:1"
   d="m 32.151771,139.69312 c 0,0 12.009707,-2.01241 20.518057,-0.7676 8.508351,1.24481 19.328748,4.16539 19.328748,4.16539 l -5.251127,12.3556 -0.503585,7.68855 -17.632543,1.31475 -24.1818,-4.06106 7.72225,-20.69563 z"
   id="path3628"
   sodipodi:nodetypes="czcccccc"
   inkscape:connector-curvature="0" /><path name="Aiguillette baronne"
   style="fill:#f51633;fill-opacity:1;stroke:#000000;stroke-width:0.63628125;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
   d="M 78.492793,64.81814 88.268592,87.383739 92.3384,109.31647 107.23839,72.916162 78.492793,64.81814 z"
   id="path4055"
   sodipodi:nodetypes="ccccc"
   inkscape:connector-curvature="0" /><path name="Filet"
   style="fill:#f51633;fill-opacity:1;stroke:#000000;stroke-width:0.63628125;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
   d="m 88.876733,54.5548 68.265287,19.389246 c 0.47295,0.508044 3.31951,0.529702 2.34216,7.946374 -0.97485,7.39772 -3.02579,5.660785 -4.3298,5.60533 L 85.080248,66.843606 c 0,0 -3.552471,-2.909272 -2.06214,-7.737655 1.490332,-4.828382 5.858625,-4.551151 5.858625,-4.551151 z"
   id="path4037"
   sodipodi:nodetypes="cczcczc"
   inkscape:connector-curvature="0" />


</g><g
   transform="translate(-7.6941642,10.065285)"
   style="display:inline"
   inkscape:label="Formes"
   id="g3661"
   inkscape:groupmode="layer"
   sodipodi:insensitive="true"><path
     sodipodi:nodetypes="ccz"
     id="path3714"
     d="m 78.261626,64.934923 c 0,0 12.140901,19.62521 12.662251,34.872021 1.494096,16.143796 -3.722634,21.821046 -9.777505,34.625006"
     style="fill:none;stroke:#000000;stroke-width:3.81768727;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
     inkscape:connector-curvature="0" /><path
     sodipodi:nodetypes="cccssssssssccscc"
     d="m 273.15474,155.24928 11.58541,-8.99838 m -41.6253,8.15541 c -2.82628,-6.77707 -3.6979,-7.29982 -9.25792,-16.56653 -5.56002,-9.2667 -13.59116,-20.07785 -14.82672,-34.59568 -1.26166,-14.824514 -0.27801,-18.944104 3.70668,-27.800095 3.98468,-8.855991 10.32953,-18.989282 19.76896,-22.857854 9.43943,-3.868574 20.38554,-4.756921 28.41787,1.235559 8.03234,5.992482 14.57979,15.880086 16.93596,25.840763 2.35616,9.960677 1.3067,19.343261 -0.87368,28.656997 -2.18038,9.31374 -5.9659,17.90633 -7.57987,23.53114 -1.61397,5.62481 -5.85665,17.17638 -7.15104,21.05023 l -6.74897,22.81975 c 0,0 3.7889,6.96723 4.83331,11.30255 1.04442,4.33532 0.99302,14.42937 0.99302,14.42937 l 13.29522,17.68524"
     style="fill:none;stroke:#000000;stroke-width:3.81768727;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
     id="path3718"
     inkscape:connector-curvature="0" /><path
     sodipodi:nodetypes="csscc"
     id="path3720"
     d="m 33.086085,131.69817 c 0,0 4.024667,8.46945 4.453968,13.04377 0.560538,5.97267 -3.619791,9.16065 -4.453968,14.79354 -1.21174,8.18241 9.703288,20.67914 9.703288,20.67914 l 1.670239,5.32885"
     style="fill:none;stroke:#000000;stroke-width:3.81768727;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
     inkscape:connector-curvature="0" /></g><g
   inkscape:label="Cadre"
   id="g4007"
   inkscape:groupmode="layer"
   style="display:inline"
   transform="translate(-7.6941642,10.065285)"
   sodipodi:insensitive="true"><g
     transform="translate(-2.6971997,-1.3169604)"
     id="g4009"
     style="fill:none;stroke:#000000;stroke-width:3.81768727;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"><path
       style="fill:none;stroke:#000000;stroke-width:3.81768727;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
       d="m 357.29475,-3.9785785 c -1.94073,4.46367059 -3.50339,9.4136535 -6.89967,13.0039976 -4.07552,3.2021979 -9.11695,-0.8765321 -13.58063,0.6760488 -2.71703,0.5822181 -5.82824,2.7289311 -8.35119,0.4970951 -3.39724,-1.6496174 -3.28476,-5.7232406 -4.25513,-8.8284024 -2.52391,4.3666345 -3.88673,9.4120084 -3.49955,14.5549334 -1.40412,-0.01941 -2.80592,-0.133789 -4.19548,-0.278373 -0.16205,-0.0165 -0.31516,-0.04218 -0.47721,-0.05965 -0.16204,-0.01747 -0.33505,-0.02133 -0.49709,-0.03977 -0.1601,-0.01844 -0.31711,-0.0383 -0.47721,-0.05965 -4.51025,-0.586099 -8.96371,-1.680904 -13.42156,-2.803614 -0.1009,-0.02523 -0.19734,-0.05334 -0.29826,-0.07953 -0.11548,-0.02911 -0.24147,-0.07031 -0.35791,-0.09942 -0.20959,-0.05337 -0.4068,-0.1057 -0.61639,-0.15907 -6.89928,-1.734039 -13.82727,-3.3658452 -20.99728,-3.0223361 -12.71176,0.9703631 -25.22495,4.3671141 -37.06339,8.9278211 -3.5787,1.41673 -7.27145,2.418241 -11.0355,3.121755 -0.22414,0.04172 -0.45191,0.07952 -0.67605,0.119302 -0.22513,0.03979 -0.44996,0.08243 -0.67605,0.119303 -0.22222,0.03687 -0.45286,0.08437 -0.67605,0.119303 -0.46675,0.07278 -0.92317,0.133823 -1.39186,0.198838 -10.772,0.873327 -21.16233,4.175595 -31.93336,4.175595 -3.18959,0 -6.37841,0.02431 -9.56411,0 -0.20571,-9.53e-4 -0.41067,-0.01798 -0.61639,-0.01988 -0.20668,-0.0019 -0.40971,0.0029 -0.6164,0 -0.20376,-0.0019 -0.41165,0.0029 -0.6164,0 -5.59608,-0.07666 -11.17469,-0.343978 -16.72227,-1.15326 -1.22265,-0.01067 -2.43983,-0.01648 -3.65861,-0.03977 -0.19698,-0.0039 -0.39954,-0.01502 -0.59652,-0.01988 -0.19794,-0.0039 -0.39953,-0.015 -0.59651,-0.01988 -0.17952,-0.0049 -0.35735,0.0039 -0.53686,0 -9.24077,-0.226095 -18.41519,-0.865071 -27.5987,-2.246868 -4.4889,-0.555048 -8.98311,-0.931472 -13.46133,-1.292447 -0.16108,-0.01262 -0.33601,-0.02716 -0.49709,-0.03977 -0.16204,-0.01261 -0.31517,-0.02716 -0.47721,-0.03977 -4.58496,-0.366798 -9.17075,-0.71171 -13.71981,-1.232795 -3.98723,-0.193101 -7.984272,-0.270609 -11.989929,-0.278373 l -0.596514,0 -0.278373,0 -0.318141,0 c -5.635867,0.0049 -11.272638,0.124613 -16.881336,0.178954 -4.172561,-0.09704 -8.453644,1.350539 -12.626206,0.477211 -5.142925,-0.582217 -10.386314,-0.6689 -15.529239,-0.377792 -1.174139,0.0689 -2.382129,-0.02421 -3.598965,-0.07953 -0.218333,-0.0097 -0.437832,-0.01212 -0.656165,-0.01988 -1.987304,-0.06792 -3.967704,-0.0034 -5.82595,0.954422 -8.636231,3.202181 -13.58128,11.646055 -17.656804,19.505997 -3.687381,7.762905 -3.079651,10.011913 -3.952978,18.357034 -0.09704,13.973232 -1.488856,34.238271 -0.421456,48.114469 0.873327,6.6955 -0.101064,13.683 1.451517,20.28147 0.130029,0.74038 0.27158,2.56638 0.278373,2.74396 0.207658,5.50875 -4.041105,18.24658 -4.394318,20.361 -0.493914,2.95573 -0.475885,4.79619 -0.178954,7.39677 0.296932,2.60057 1.869813,8.51569 3.519431,12.78528 4.686854,-6.46747 8.655895,-13.92971 9.444799,-21.95171 0.02814,-0.28334 0.199944,-2.25755 0,-4.47385 -0.149435,-1.66515 -0.563981,-3.30104 -0.656165,-3.6785 -0.0039,-0.0155 -0.01604,-0.0453 -0.01988,-0.0597 -0.528847,-2.15712 -1.19088,-4.29153 -1.670239,-6.46223 -0.01164,-0.0543 -0.647941,-4.39574 -0.596513,-5.58735 -0.09704,-4.07552 -0.767497,-8.15539 -1.252679,-12.32795 -1.880238,-19.191474 -0.534207,-37.93084 1.203158,-57.147144 1.261473,-10.479923 4.172146,-18.969042 11.061725,-26.828984 2.172298,-1.810289 6.419571,-5.959673 6.122064,-5.001969 -0.08137,0.261944 -7.049633,5.34144 -9.569267,8.632909 -7.02092,12.51923 -7.137582,17.110823 -8.300704,28.190045 -1.163122,11.079222 -0.473946,29.706291 0.357908,37.699663 2.425909,10.1888 5.822573,20.28195 11.353643,29.20929 0.06987,0.10867 0.789018,1.48104 0.855003,1.63047 0.899527,2.04359 1.183141,4.28961 0.497095,6.42246 -1.383738,5.1012 -3.910151,9.81889 -5.408391,14.97249 -0.137792,0.47452 -0.259408,0.94937 -0.377792,1.43164 -0.03881,0.15914 -0.102309,0.3171 -0.139186,0.47721 -1.0674,5.04588 -3.00804,10.09282 -2.425823,15.42982 0.776292,11.93547 -1.738513,23.67959 -5.328855,34.93581 0.485181,5.91921 2.029706,11.9388 2.903033,17.95506 l 23.104962,0 c -2.231835,-3.78446 -4.464236,-7.67102 -6.501998,-11.55248 -1.0674,-2.1348 0.389704,-4.2654 0.874886,-6.30316 1.649617,-4.2696 -2.330431,-8.45364 -0.874886,-12.6262 0.634616,-1.74471 1.181036,-3.56333 1.988378,-5.22944 0.673432,-1.3915 1.527604,-2.68242 2.763847,-3.69839 0.786964,2.40844 1.647539,4.82927 2.545125,7.2377 0.875267,2.34634 1.774111,4.69253 2.684311,7.03886 0.582218,3.10517 0.205163,6.2975 1.272563,9.30562 0.873325,4.56071 6.702397,5.7367 7.575723,10.20038 0.679255,2.42591 1.16279,4.95098 1.550936,7.37689 l 24.735433,-0.0994 c -2.814056,-5.337 -5.921259,-10.59314 -9.802708,-15.25087 -4.075528,-4.75477 -4.163596,-11.2556 -6.104323,-16.98075 -0.970364,-3.29924 -2.725639,-6.38655 -3.598966,-9.78283 -0.485183,-3.49331 -0.191697,-7.18428 0.09942,-10.67759 1.746653,-9.02438 3.63453,-10.29609 3.537493,-19.4175 0,-1.84369 0.391266,-3.7715 1.749774,-5.13002 0.927667,-1.0247 1.817282,-2.07714 2.704195,-3.14164 0.110624,-0.13197 0.228375,-0.26473 0.338024,-0.39767 0.106744,-0.12905 0.211398,-0.26959 0.318141,-0.39768 0.0032,-0.004 0.01708,0.004 0.01988,0 14.060633,-17.30814 11.568781,-9.86916 43.626853,-6.07344 3.59034,0.67927 7.17953,1.75052 10.47876,3.40013 5.82218,2.61997 10.67579,7.37047 17.08017,8.72898 3.10516,0.58223 6.22034,2.05362 9.3255,1.47141 4.2696,-2.61998 8.13945,-6.31508 13.28237,-6.80026 9.12141,-0.67925 17.86885,2.23167 26.50509,4.85164 6.30736,0.97036 12.70154,-6.3e-4 19.0089,0.77547 10.71088,0.38329 21.13941,3.22196 31.09825,7.01898 0.14653,0.0563 0.29189,0.1028 0.43744,0.15907 3.90986,10.60865 7.41097,21.38135 10.16062,32.35092 1.55257,5.91921 0.86044,12.13527 -0.4971,18.05448 3.49332,3.2022 7.32859,4.62056 8.29895,9.66645 l 3.07048,6.50628 22.95623,0.091 c -1.8902,-2.87895 -4.32071,-6.26638 -6.48835,-8.96642 l 15.78772,-0.0994 c -2.11233,-3.05556 -4.60229,-5.91412 -6.99909,-8.76875 -3.09867,-3.71142 -5.0516,-8.04638 -6.99909,-12.36771 -1.64817,-3.94023 -0.56461,-9.97832 -2.30652,-13.81924 -1.66987,-3.98746 -1.51669,-10.83723 -1.13338,-15.27075 0.61545,-4.87343 1.53089,-9.75832 2.98257,-14.43563 3.63648,-8.20005 19.7573,-12.76005 24.15928,-20.7442 3.39628,-6.50143 3.10096,-14.25723 6.30316,-20.75867 4.85181,-6.98663 3.40408,-11.448937 11.06995,-13.098566 5.53107,-1.843682 7.65911,-3.731137 13.28722,-5.089642 5.02262,-1.076137 9.71746,-4.310405 15.07192,-4.334666 0.15914,-0.0013 0.3171,0.016 0.47721,0.01988 0.16205,0.0038 0.31419,0.0093 0.47721,0.01988 0.12033,0.0078 0.25649,0.0082 0.37779,0.01988 5.3302,0.682164 10.84364,0.483625 15.98657,-0.874887 l 0.0199,0 c 5.43403,-2.619977 7.17715,-8.823464 10.37934,-13.481208 1.16443,-1.455544 -0.49486,-3.115341 -1.17315,-4.473853 -4.56061,-6.501241 -11.34246,-12.035762 -12.5069,-20.380883 -0.97036,-8.054014 -1.84723,-16.7801 -7.4763,-23.184497 1.26244,-1.649617 3.48302,-2.900564 3.57908,-5.229436 -2.52293,-0.388145 -5.03291,-0.886801 -7.55584,-1.371982 1.0674,-2.328872 2.32081,-4.65272 2.90303,-7.078629 0.87351,-5.2396107 -0.96388,-10.48417274 -3.77792,-14.7537705 l -3e-5,-1.39e-4 0,-2e-5 0,4e-5 z"
       id="path4011"
       sodipodi:nodetypes="ccccccssssssscccsssscssssscsssccsssccccccccsscccccssscsssssccccscsccscssccccccccscscccccccccccsssccccccccccccccccccccccccccssscccccccccccccc"
       inkscape:connector-curvature="0" /><g
       id="g4017"
       inkscape:label="Parties"
       style="fill:none;stroke:#000000;stroke-width:3.81768727;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /></g></g><g
   inkscape:groupmode="layer"
   id="layer1"
   inkscape:label="Legende"
   style="display:inline"
   sodipodi:insensitive="true"><text
   xml:space="preserve"
   style="font-size:10.18049908px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;fill:#ffffff;fill-opacity:1;stroke:none;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans Bold"
   x="142.82132"
   y="-247.46974"
   id="text3769"
   transform="matrix(0.34710079,0.93782783,-0.93782783,0.34710079,0,0)"><tspan
     sodipodi:role="line"
     id="tspan3771"
     x="142.82132"
     y="-247.46974">牛肉</tspan></text>









<text
   xml:space="preserve"
   style="font-size:10.18049908px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans Bold"
   x="238.26814"
   y="49.165058"
   id="text3773"
   transform="matrix(0.99953949,-0.03034489,0.03034489,0.99953949,0,0)"><tspan
     sodipodi:role="line"
     id="tspan3775"
     x="238.26814"
     y="49.165058">牛肉</tspan><tspan
     sodipodi:role="line"
     x="238.26814"
     y="61.890682"
     id="tspan3777">牛肉</tspan></text>









<text
   xml:space="preserve"
   style="font-size:9.22607708px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans Bold"
   x="80.038841"
   y="-191.39606"
   id="text3779"
   transform="matrix(0.0772775,0.99700962,-0.99700962,0.0772775,0,0)"><tspan
     sodipodi:role="line"
     id="tspan3781"
     x="80.038841"
     y="-191.39606">牛肉</tspan><tspan
     sodipodi:role="line"
     x="80.038841"
     y="-179.86346"
     id="tspan3783">牛肉</tspan></text>









<text
   xml:space="preserve"
   style="font-size:10.18049908px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;fill:#ffffff;fill-opacity:1;stroke:none;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans Bold"
   x="50.918533"
   y="-149.09882"
   id="text3789"
   transform="matrix(0.08232795,0.99660529,-0.99660529,0.08232795,0,0)"><tspan
     sodipodi:role="line"
     id="tspan3791"
     x="50.918533"
     y="-149.09882">牛肉</tspan></text>









<text
   xml:space="preserve"
   style="font-size:10.18049908px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;fill:#ffffff;fill-opacity:1;stroke:none;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans Bold"
   x="52.810818"
   y="52.07325"
   id="text3793"><tspan
     sodipodi:role="line"
     id="tspan3795"
     x="52.810818"
     y="52.07325">牛肉</tspan></text>









<text
   xml:space="preserve"
   style="font-size:10.18049908px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;fill:#ffffff;fill-opacity:1;stroke:none;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans Bold"
   x="115.272"
   y="53.715378"
   id="text3797"
   transform="matrix(0.96958253,0.2447646,-0.2447646,0.96958253,0,0)"><tspan
     sodipodi:role="line"
     id="tspan3799"
     x="115.272"
     y="53.715378">牛肉</tspan></text>









<text
   xml:space="preserve"
   style="font-size:10.18049908px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;fill:#ffffff;fill-opacity:1;stroke:none;font-family:DejaVu Sans;-inkscape-font-specification:Bitstream Vera Sans Bold"
   x="-127.22678"
   y="32.966442"
   id="text3801"
   transform="matrix(0.03987913,-0.99920451,0.99920451,0.03987913,0,0)"><tspan
     sodipodi:role="line"
     id="tspan3803"
     x="-127.22678"
     y="32.966442"
     style="font-size:8.90793705px;fill:#ffffff;fill-opacity:1">牛肉</tspan></text>









<text
   xml:space="preserve"
   style="font-size:10.18049908px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;fill:#ffffff;fill-opacity:1;stroke:none;font-family:DejaVu Sans;-inkscape-font-specification:Bitstream Vera Sans Bold"
   x="33.086102"
   y="166.60387"
   id="text3805"><tspan
     sodipodi:role="line"
     id="tspan3807"
     x="33.086102"
     y="166.60387">牛肉</tspan></text>









<text
   xml:space="preserve"
   style="font-size:8.90793705px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;fill:#ffffff;fill-opacity:1;stroke:none;font-family:DejaVu Sans;-inkscape-font-specification:Bitstream Vera Sans Bold"
   x="100.85004"
   y="141.28439"
   id="text3809"><tspan
     sodipodi:role="line"
     id="tspan3811"
     x="100.85004"
     y="141.28439"
     style="font-size:8.90793705px;fill:#ffffff;fill-opacity:1">牛肉</tspan></text>









<text
   xml:space="preserve"
   style="font-size:7.63537455px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;font-family:DejaVu Sans;-inkscape-font-specification:Bitstream Vera Sans Bold"
   x="183.47134"
   y="150.72763"
   id="text3813"
   transform="matrix(0.99999505,-0.00314501,0.00314501,0.99999505,0,0)"><tspan
     sodipodi:role="line"
     x="183.47134"
     y="150.72763"
     id="tspan3817"
     style="font-size:7.63537455px;fill:#ffffff;fill-opacity:1">牛肉</tspan></text>









<text
   xml:space="preserve"
   style="font-size:10.18049908px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;fill:#ffffff;fill-opacity:1;stroke:none;font-family:DejaVu Sans;-inkscape-font-specification:Bitstream Vera Sans Bold"
   x="159.80177"
   y="139.01721"
   id="text3819"
   transform="matrix(0.99999978,6.6770519e-4,-6.6770519e-4,0.99999978,0,0)"><tspan
     sodipodi:role="line"
     id="tspan3821"
     x="159.80177"
     y="139.01721">牛肉</tspan></text>









<text
   xml:space="preserve"
   style="font-size:10.18049908px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;font-family:DejaVu Sans;-inkscape-font-specification:Bitstream Vera Sans Bold"
   x="179.59958"
   y="108.40403"
   id="text3825"
   transform="matrix(0.99999893,-0.00146436,0.00146436,0.99999893,0,0)"><tspan
     sodipodi:role="line"
     id="tspan3827"
     x="179.59958"
     y="108.40403">牛肉</tspan><tspan
     sodipodi:role="line"
     x="179.59958"
     y="121.12965"
     id="tspan3829">牛肉</tspan></text>









<text
   xml:space="preserve"
   style="font-size:6.36281204px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;font-family:DejaVu Sans;-inkscape-font-specification:Bitstream Vera Sans Bold"
   x="128.21919"
   y="112.48651"
   id="text3831"
   transform="matrix(0.99999776,-0.00211681,0.00211681,0.99999776,0,0)"><tspan
     sodipodi:role="line"
     id="tspan3833"
     x="128.21919"
     y="112.48651">     牛肉</tspan><tspan
     sodipodi:role="line"
     x="128.21919"
     y="120.44003"
     id="tspan3835">牛肉</tspan></text>









<text
   xml:space="preserve"
   style="font-size:10.18049908px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;fill:#ffffff;fill-opacity:1;stroke:none;font-family:DejaVu Sans;-inkscape-font-specification:Bitstream Vera Sans Bold"
   x="-99.325806"
   y="120.74496"
   id="text3837"
   transform="matrix(0.50224585,-0.86472487,0.86472487,0.50224585,0,0)"><tspan
     sodipodi:role="line"
     id="tspan3839"
     x="-99.325806"
     y="120.74496"
     style="font-size:3.81768727px;fill:#ffffff;fill-opacity:1">牛肉</tspan><tspan
     sodipodi:role="line"
     x="-99.325806"
     y="125.51707"
     id="tspan3841"
     style="font-size:3.81768727px;fill:#ffffff;fill-opacity:1">牛肉</tspan><tspan
     sodipodi:role="line"
     x="-99.325806"
     y="130.28917"
     id="tspan3843"
     style="font-size:3.81768727px;fill:#ffffff;fill-opacity:1">牛肉</tspan></text>









<text
   xml:space="preserve"
   style="font-size:10.18049908px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;fill:#ffffff;fill-opacity:1;stroke:none;font-family:DejaVu Sans;-inkscape-font-specification:Bitstream Vera Sans Bold"
   x="-88.375328"
   y="114.22061"
   id="text3845"
   transform="matrix(0.52058828,-0.85380785,0.85380785,0.52058828,0,0)"><tspan
     sodipodi:role="line"
     id="tspan3847"
     x="-88.375328"
     y="114.22061"
     style="font-size:5.09024954px;fill:#ffffff;fill-opacity:1">牛肉</tspan></text>









<text
   xml:space="preserve"
   style="font-size:10.18049908px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;fill:#ffffff;fill-opacity:1;stroke:none;font-family:DejaVu Sans;-inkscape-font-specification:Bitstream Vera Sans Bold"
   x="-144.57037"
   y="48.84034"
   id="text3849"
   transform="matrix(0.06051178,-0.99816748,0.99816748,0.06051178,0,0)"><tspan
     sodipodi:role="line"
     id="tspan3851"
     x="-144.57037"
     y="48.84034"
     style="font-size:6.36281204px;fill:#ffffff;fill-opacity:1">牛肉</tspan></text>









<text
   xml:space="preserve"
   style="font-size:6.36281204px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;fill:#ffffff;fill-opacity:1;stroke:none;font-family:DejaVu Sans;-inkscape-font-specification:Bitstream Vera Sans Bold"
   x="73.62899"
   y="56.984756"
   id="text3853"
   transform="matrix(0.89158806,0.45284737,-0.45284737,0.89158806,0,0)"><tspan
     sodipodi:role="line"
     id="tspan3855"
     x="73.62899"
     y="56.984756" /><tspan
     
     sodipodi:role="line"
     x="73.62899"
     y="72.891785"
     id="tspan3857"
     style="font-size:6.36281204px;fill:#ffffff;fill-opacity:1" /></text>
<text
   xml:space="preserve"
   style="font-size:7.63537455px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;fill:#ffffff;fill-opacity:1;stroke:none;font-family:DejaVu Sans;-inkscape-font-specification:Bitstream Vera Sans Bold"
   x="69.06871"
   y="46.433201"
   id="text3869"
   transform="matrix(0.8868491,0.46205916,-0.46205916,0.8868491,0,0)"><tspan
     sodipodi:role="line"
     id="tspan3871"
     x="69.06871"
     y="46.433201">牛肉 </tspan><tspan
     sodipodi:role="line"
     x="69.06871"
     y="55.977421"
     id="tspan3706">牛肉</tspan></text>
<text
   xml:space="preserve"
   style="font-size:3.81768727px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;fill:#ffffff;fill-opacity:1;stroke:none;font-family:DejaVu Sans;-inkscape-font-specification:Bitstream Vera Sans Bold"
   x="95.621521"
   y="55.577187"
   id="text3875"
   transform="matrix(0.95858918,0.28479253,-0.28479253,0.95858918,0,0)"><tspan
     sodipodi:role="line"
     id="tspan3877"
     x="95.621521"
     y="55.577187"
     style="font-size:3.81768727px">牛肉</tspan><tspan
     sodipodi:role="line"
     x="95.621521"
     y="60.349297"
     id="tspan3879"
     style="font-size:3.81768727px">   牛肉</tspan></text>

<text
   xml:space="preserve"
   style="font-size:10.18049908px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;fill:#ffffff;fill-opacity:1;stroke:none;font-family:DejaVu Sans;-inkscape-font-specification:Bitstream Vera Sans Bold"
   x="36.526646"
   y="135.96074"
   id="text3881"
   transform="matrix(0.88643373,-0.46285553,0.46285553,0.88643373,0,0)"><tspan
     sodipodi:role="line"
     id="tspan3883"
     x="36.526646"
     y="135.96074"
     style="font-size:6.36281204px;fill:#ffffff;fill-opacity:1">牛肉</tspan></text>

<text
   xml:space="preserve"
   style="font-size:10.18049908px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;fill:#ffffff;fill-opacity:1;stroke:none;font-family:DejaVu Sans;-inkscape-font-specification:Bitstream Vera Sans Bold"
   x="34.836552"
   y="147.11993"
   id="text3885"
   transform="matrix(0.87862569,-0.47751115,0.47751115,0.87862569,0,0)"><tspan
     sodipodi:role="line"
     id="tspan3887"
     x="34.836552"
     y="147.11993"
     style="font-size:6.36281204px;fill:#ffffff;fill-opacity:1">牛肉</tspan></text>


<text
   xml:space="preserve"
   style="font-size:5.09024954px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;font-family:DejaVu Sans;-inkscape-font-specification:Bitstream Vera Sans Bold"
   x="17.863991"
   y="313.07062"
   id="text3911"
   transform="matrix(0.4561333,-0.88991146,0.88991146,0.4561333,0,0)"><tspan
     sodipodi:role="line"
     id="tspan3913"
     x="17.863991"
     y="313.07062"
     style="font-size:5.72653103px">牛肉</tspan><tspan
     sodipodi:role="line"
     x="17.863991"
     y="320.22879"
     id="tspan3915"
     style="font-size:5.72653103px">牛肉</tspan></text>

<text
   xml:space="preserve"
   style="font-size:5.09024954px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;font-family:DejaVu Sans;-inkscape-font-specification:Bitstream Vera Sans Bold"
   x="86.531128"
   y="-240.0639"
   id="text3917"
   transform="matrix(-0.00183049,0.99999832,-0.99999832,-0.00183049,0,0)"><tspan
     sodipodi:role="line"
     id="tspan3919"
     x="86.531128"
     y="-240.0639"
     style="font-size:8.90793705px;fill:#ffffff;fill-opacity:1">牛肉</tspan></text>



<text
   xml:space="preserve"
   style="font-size:5.09024954px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;font-family:DejaVu Sans;-inkscape-font-specification:Bitstream Vera Sans Bold"
   x="107.70617"
   y="-221.94438"
   id="text3921"
   transform="matrix(0.00663243,0.99997801,-0.99997801,0.00663243,0,0)"><tspan
     sodipodi:role="line"
     id="tspan3923"
     x="107.70617"
     y="-221.94438"
     style="font-size:5.72653055px">牛肉</tspan><tspan
     sodipodi:role="line"
     x="107.70617"
     y="-214.78622"
     id="tspan3925"
     style="font-size:5.72653055px">牛肉</tspan></text>



<text
   xml:space="preserve"
   style="font-size:5.09024954px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:end;text-anchor:end;fill:#ffffff;fill-opacity:1;stroke:none;font-family:DejaVu Sans;-inkscape-font-specification:Bitstream Vera Sans Bold"
   x="108.05833"
   y="-268.91757"
   id="text3927"
   transform="matrix(-0.00495658,0.99998772,-0.99998772,-0.00495658,0,0)"><tspan
     sodipodi:role="line"
     id="tspan3929"
     x="108.05833"
     y="-268.91757"
     style="font-size:6.36281204px;text-align:end;text-anchor:end;fill:#ffffff;fill-opacity:1">牛肉</tspan><tspan
     sodipodi:role="line"
     x="108.05833"
     y="-260.96405"
     id="tspan3931"
     style="font-size:6.36281204px;text-align:end;text-anchor:end;fill:#ffffff;fill-opacity:1">牛肉</tspan></text>



<text
   xml:space="preserve"
   style="font-size:5.09024954px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;font-family:DejaVu Sans;-inkscape-font-specification:Bitstream Vera Sans Bold"
   x="116.15334"
   y="-267.08328"
   id="text3933"
   transform="matrix(-0.00560287,0.9999843,-0.9999843,-0.00560287,0,0)"><tspan
     sodipodi:role="line"
     id="tspan3935"
     x="116.15334"
     y="-267.08328">牛肉</tspan><tspan
     sodipodi:role="line"
     x="116.15334"
     y="-260.72046"
     id="tspan3937">牛肉</tspan></text>



<text
   xml:space="preserve"
   style="font-size:6.36281204px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;font-family:DejaVu Sans;-inkscape-font-specification:Bitstream Vera Sans Bold"
   x="136.86079"
   y="-247.58633"
   id="text3939"
   transform="matrix(-0.00597149,0.99998217,-0.99998217,-0.00597149,0,0)"><tspan
     sodipodi:role="line"
     id="tspan3941"
     x="136.86079"
     y="-247.58633">牛肉</tspan><tspan
     sodipodi:role="line"
     x="136.86079"
     y="-239.63281"
     id="tspan3943">牛肉</tspan></text>


<text
   xml:space="preserve"
   style="font-size:5.09024954px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans;-inkscape-font-specification:Bitstream Vera Sans Bold"
   x="-79.754234"
   y="135.43167"
   id="text2926"
   transform="matrix(0.4141472,-0.91020992,0.91020992,0.4141472,0,0)"><tspan
     sodipodi:role="line"
     id="tspan2928"
     x="-79.754234"
     y="135.43167"
     style="fill:#ffffff;fill-opacity:1">牛肉</tspan><tspan
     sodipodi:role="line"
     x="-79.754234"
     y="141.79448"
     id="tspan2930"
     style="fill:#ffffff;fill-opacity:1">牛肉</tspan></text>


<text
   xml:space="preserve"
   style="font-size:5.09024954px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans;-inkscape-font-specification:Bitstream Vera Sans Bold"
   x="226.15675"
   y="-251.38904"
   id="text3710"
   transform="matrix(0.49053277,0.87142275,-0.87142275,0.49053277,0,0)"><tspan
     sodipodi:role="line"
     id="tspan3712"
     x="226.15675"
     y="-251.38904"
     style="font-size:8.27165604px;fill:#ffffff;fill-opacity:1">牛肉</tspan><tspan
     sodipodi:role="line"
     x="226.15675"
     y="-241.04947"
     id="tspan3714"
     style="font-size:8.27165604px;fill:#ffffff;fill-opacity:1">牛肉</tspan></text>


<text
   xml:space="preserve"
   style="font-size:5.72653055px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans;-inkscape-font-specification:Bitstream Vera Sans Bold"
   x="222.73119"
   y="-286.90594"
   id="text3716"
   transform="matrix(0.41915996,0.9079124,-0.9079124,0.41915996,0,0)"><tspan
     sodipodi:role="line"
     id="tspan3718"
     x="222.73119"
     y="-286.90594"
     style="font-size:5.72653055px;fill:#ffffff;fill-opacity:1">牛肉</tspan></text>


<text
   transform="matrix(0.58420869,-0.81160348,0.81160348,0.58420869,0,0)"
   id="text2934"
   y="40.501945"
   x="-30.98118"
   style="font-size:3.49954653px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;fill:#ffffff;fill-opacity:1;stroke:none;font-family:DejaVu Sans;-inkscape-font-specification:Bitstream Vera Sans Bold"
   xml:space="preserve"><tspan
     id="tspan2938"
     y="40.501945"
     x="-30.98118"
     sodipodi:role="line">牛肉</tspan></text>


</g><g
   inkscape:groupmode="layer"
   id="layer3"
   inkscape:label="Numeros"
   style="display:none"
   sodipodi:insensitive="true"><text
   xml:space="preserve"
   style="font-size:24px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans Bold"
   x="558"
   y="125.84"
   id="text2941"
   transform="matrix(0.6362812,0,0,0.6362812,-5.2089609e-4,0)"><tspan
     sodipodi:role="line"
     id="tspan2943"
     x="558"
     y="125.84" /></text>


<text
   xml:space="preserve"
   style="font-size:15.27074909px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans Bold"
   x="232.8784"
   y="49.528126"
   id="text2977"><tspan
     sodipodi:role="line"
     id="tspan2979"
     x="232.8784"
     y="49.528126">1</tspan></text>


<text
   xml:space="preserve"
   style="font-size:15.27074909px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans Bold"
   x="185.1573"
   y="67.344002"
   id="text2981"><tspan
     sodipodi:role="line"
     id="tspan2983"
     x="185.1573"
     y="67.344002">2</tspan></text>


<text
   xml:space="preserve"
   style="font-size:15.27074909px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans Bold"
   x="153.34325"
   y="65.435158"
   id="text2985"><tspan
     sodipodi:role="line"
     id="tspan2987"
     x="153.34325"
     y="65.435158">3</tspan></text>


<text
   xml:space="preserve"
   style="font-size:15.27074909px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans Bold"
   x="82.079758"
   y="51.43697"
   id="text2989"><tspan
     sodipodi:role="line"
     id="tspan2991"
     x="82.079758"
     y="51.43697">5</tspan></text>


<text
   xml:space="preserve"
   style="font-size:11.45306206px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans Bold"
   x="111.47111"
   y="83.18708"
   id="text2993"><tspan
     sodipodi:role="line"
     id="tspan2995"
     x="111.47111"
     y="83.18708">4</tspan></text>


<text
   xml:space="preserve"
   style="font-size:15.27074909px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans Bold"
   x="22.269321"
   y="99.794342"
   id="text2997"><tspan
     sodipodi:role="line"
     id="tspan2999"
     x="22.269321"
     y="99.794342">6</tspan></text>


<text
   xml:space="preserve"
   style="font-size:15.27074909px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans Bold"
   x="55.355942"
   y="91.522682"
   id="text3001"><tspan
     sodipodi:role="line"
     id="tspan3003"
     x="55.355942"
     y="91.522682">7</tspan></text>


<text
   xml:space="preserve"
   style="font-size:15.27074909px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans Bold"
   x="40.085194"
   y="118.2465"
   id="text3005"><tspan
     sodipodi:role="line"
     id="tspan3007"
     x="40.085194"
     y="118.2465">8</tspan></text>


<text
   xml:space="preserve"
   style="font-size:15.27074909px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans Bold"
   x="54.719662"
   y="123.97303"
   id="text3009"><tspan
     sodipodi:role="line"
     id="tspan3011"
     x="54.719662"
     y="123.97303">9</tspan></text>


<text
   xml:space="preserve"
   style="font-size:11.45306206px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans Bold"
   x="65.536446"
   y="137.97121"
   id="text3013"><tspan
     sodipodi:role="line"
     id="tspan3015"
     x="65.536446"
     y="137.97121">10</tspan></text>


<text
   xml:space="preserve"
   style="font-size:11.45306206px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans Bold"
   x="91.733139"
   y="132.88097"
   id="text3017"><tspan
     sodipodi:role="line"
     id="tspan3019"
     x="91.733139"
     y="132.88097">11</tspan></text>


<text
   xml:space="preserve"
   style="font-size:11.45306206px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans Bold"
   x="63.79483"
   y="142.19594"
   id="text3021"
   transform="matrix(0.93630303,-0.35119316,0.35119316,0.93630303,0,0)"><tspan
     sodipodi:role="line"
     id="tspan3023"
     x="63.79483"
     y="142.19594">12</tspan></text>


<text
   xml:space="preserve"
   style="font-size:11.45306206px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans Bold"
   x="104.72232"
   y="97.076096"
   id="text3025"><tspan
     sodipodi:role="line"
     id="tspan3027"
     x="104.72232"
     y="97.076096">13</tspan></text>


<text
   xml:space="preserve"
   style="font-size:18px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans Bold"
   x="131"
   y="139.84"
   id="text3029"
   transform="matrix(0.6362812,0,0,0.6362812,-5.2089609e-4,0)"><tspan
     sodipodi:role="line"
     id="tspan3031"
     x="131"
     y="139.84">14</tspan></text>


<text
   xml:space="preserve"
   style="font-size:15.27074909px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans Bold"
   x="131.70969"
   y="118.2465"
   id="text3033"><tspan
     sodipodi:role="line"
     id="tspan3035"
     x="131.70969"
     y="118.2465">15</tspan></text>


<text
   xml:space="preserve"
   style="font-size:15.27074909px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans Bold"
   x="180.06706"
   y="114.42881"
   id="text3037"><tspan
     sodipodi:role="line"
     id="tspan3039"
     x="180.06706"
     y="114.42881">16</tspan></text>


<text
   xml:space="preserve"
   style="font-size:12.72562408px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans Bold"
   x="220.78906"
   y="111.24741"
   id="text3041"><tspan
     sodipodi:role="line"
     id="tspan3043"
     x="220.78906"
     y="111.24741">17</tspan></text>


<text
   xml:space="preserve"
   style="font-size:12.72562408px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans Bold"
   x="240.51378"
   y="90.250122"
   id="text3045"><tspan
     sodipodi:role="line"
     id="tspan3047"
     x="240.51378"
     y="90.250122">18</tspan></text>


<text
   xml:space="preserve"
   style="font-size:12.72562408px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans Bold"
   x="267.87387"
   y="96.612938"
   id="text3049"><tspan
     sodipodi:role="line"
     id="tspan3051"
     x="267.87387"
     y="96.612938">19</tspan></text>


<text
   xml:space="preserve"
   style="font-size:12.72562408px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans Bold"
   x="265.96503"
   y="130.97212"
   id="text3053"><tspan
     sodipodi:role="line"
     id="tspan3055"
     x="265.96503"
     y="130.97212">20</tspan></text>


<text
   xml:space="preserve"
   style="font-size:12.72562408px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans Bold"
   x="242.42262"
   y="130.97212"
   id="text3057"><tspan
     sodipodi:role="line"
     id="tspan3059"
     x="242.42262"
     y="130.97212">21</tspan></text>


<text
   xml:space="preserve"
   style="font-size:12.72562408px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans Bold"
   x="22.250591"
   y="44.509586"
   id="text3061"><tspan
     sodipodi:role="line"
     id="tspan3063"
     x="22.250591"
     y="44.509586"
     style="font-size:11.45306206px;fill:#ffffff;fill-opacity:1">22</tspan></text>


<text
   xml:space="preserve"
   style="font-size:15.27074909px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans Bold"
   x="43.266602"
   y="167.87643"
   id="text3065"><tspan
     sodipodi:role="line"
     id="tspan3067"
     x="43.266602"
     y="167.87643">23</tspan></text>


<text
   xml:space="preserve"
   style="font-size:15.27074909px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans Bold"
   x="122.80175"
   y="143.06146"
   id="text3069"><tspan
     sodipodi:role="line"
     id="tspan3071"
     x="122.80175"
     y="143.06146">24</tspan></text>


<text
   xml:space="preserve"
   style="font-size:15.27074909px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans Bold"
   x="183.88475"
   y="145.60658"
   id="text3073"><tspan
     sodipodi:role="line"
     id="tspan3075"
     x="183.88475"
     y="145.60658">25</tspan></text>


<text
   xml:space="preserve"
   style="font-size:15.27074909px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans Bold"
   x="288.87115"
   y="135.42609"
   id="text3077"><tspan
     sodipodi:role="line"
     id="tspan3079"
     x="288.87115"
     y="135.42609">26</tspan></text>


<text
   xml:space="preserve"
   style="font-size:15.27074909px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans Bold"
   x="288.23486"
   y="73.070534"
   id="text3081"><tspan
     sodipodi:role="line"
     id="tspan3083"
     x="288.23486"
     y="73.070534">27</tspan></text>


<text
   xml:space="preserve"
   style="font-size:15.27074909px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans Bold"
   x="328.32059"
   y="79.433342"
   id="text3085"><tspan
     sodipodi:role="line"
     id="tspan3087"
     x="328.32059"
     y="79.433342">28</tspan></text>

<text
   xml:space="preserve"
   style="font-size:15.27074909px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans Bold"
   x="358.2258"
   y="85.796158"
   id="text3089"><tspan
     sodipodi:role="line"
     id="tspan3091"
     x="358.2258"
     y="85.796158">29</tspan></text>


</g></svg>

② geojson code and geojson static resources

//geojson 地图 配置代码

import ReactECharts from 'echarts-for-react';
import nanjing from '@assets/json/nanjing.json';
import * as echarts from 'echarts';
import snow from '@assets/img/snow.gif'
import huge from '@assets/image/6.png'

import 'echarts-gl';
const GeoEcharts = () => {
    const MapData: any = nanjing;
    const costomProjecttion:any=(coord:any)=>{
        return [coord[0]*3,coord[1]*2];
    };
    // 注册地图
    echarts?.registerMap('南京', MapData);
    const option = {
        tooltip:{
        },
        visualMap: {
            show: true,
            min: 0,
            max: 50,
            inRange: {
                color: [
                    'RGB(22, 119, 255,0.8)',
                    'RGB(100, 160, 245,0.6)',
                    'RGB(135, 179, 240,0.4)'
                ]
            },
            calculable: true
        },
        geo: {
            show: true,
            map: '南京',
            projection: {
                project: (point) => [point[0] / 900 * Math.PI, -Math.log(Math.tan((Math.PI / 2 + point[1] / 180 * Math.PI) / 2))],
                unproject: (point) => [point[0] * 180 / Math.PI, 2 * 180 / Math.PI * Math.atan(Math.exp(point[1])) - 90]
            },
            // zoom: 1.2,
            roam:true,
            
            label: {
                show: true,
                formatter:'{bk|}{ab|{a}}',
                rich:{
                    ab:{
                        color:'#fff',
                    },
                    bk:{
                        backgroundColor:
                        {
                            image:`${snow}`
                        }
                    }
                }
            },
            emphasis:{
                disabled:false,
                focus:'self',
            },
            tooltip:{
                show:true,
                confine:true,
                formatter:'{b}-温度:{c}'
            },
        },
        series: [
            {

                name:'温度',
                geoIndex: 0,
                type: 'map',
             
                data: [
                    {
                        name: '鼓楼区',
                        value: 15
                    },
                    {
                        name: '建邺区',
                        value: 9
                    },
                    {
                        name: '玄武区',
                        value: 12
                    },
                    {
                        name: '秦淮区',
                        value: 22
                    },
                    {
                        name: '雨花台区',
                        value: 16
                    },
                    {
                        name: '江宁区',
                        value: 11
                    },
                    {
                        name: '溧水区',
                        value: 18
                    },
                    {
                        name: '高淳区',
                        value: 3
                    },
                    {
                        name: '浦口区',
                        value: 2
                    },
                    {
                        name: '栖霞区',
                        value: 7
                    },
                    {
                        name: '六合区',
                        value: 5
                    }
                ]
            }
        ]
    };
    return (
        <ReactECharts
            option={option}
            style={
   
   { width: '800px', height: '800px' }}
            echarts={echarts}
        ></ReactECharts>
    );
};
export default GeoEcharts;

//geojson 资源
{
    "type": "FeatureCollection",
    "features": [
        {
            "type": "Feature",
            "properties": {
                "adcode": 320102,
                "name": "玄武区",
                "center": [118.792199, 32.050678],
                "centroid": [118.842824, 32.065088],
                "childrenNum": 0,
                "level": "district",
                "parent": { "adcode": 320100 },
                "subFeatureIndex": 0,
                "acroutes": [100000, 320000, 320100]
            },
            "geometry": {
                "type": "MultiPolygon",
                "coordinates": [
                    [
                        [
                            [118.897299, 32.02599],
                            [118.893303, 32.026212],
                            [118.895235, 32.028178],
                            [118.894384, 32.032069],
                            [118.892003, 32.034575],
                            [118.885522, 32.034631],
                            [118.883062, 32.035544],
                            [118.885012, 32.036735],
                            [118.885706, 32.039075],
                            [118.882035, 32.041],
                            [118.882474, 32.042578],
                            [118.878943, 32.041401],
                            [118.877634, 32.045555],
                            [118.879646, 32.046496],
                            [118.877766, 32.048919],
                            [118.87954, 32.049736],
                            [118.881587, 32.047881],
                            [118.887313, 32.05076],
                            [118.888262, 32.054747],
                            [118.888244, 32.058637],
                            [118.885969, 32.06099],
                            [118.88806, 32.060962],
                            [118.884915, 32.067108],
                            [118.882658, 32.067648],
                            [118.881499, 32.06935],
                            [118.875904, 32.072395],
                            [118.877002, 32.075343],
                            [118.880225, 32.072617],
                            [118.883879, 32.070762],
                            [118.881604, 32.074167],
                            [118.8851, 32.075523],
                            [118.884959, 32.078319],
                            [118.888051, 32.076644],
                            [118.888657, 32.074707],
                            [118.892961, 32.07461],
                            [118.894173, 32.077862],
                            [118.893066, 32.078554],
                            [118.897177, 32.081045],
                            [118.89766, 32.082457],
                            [118.900918, 32.082429],
                            [118.90834, 32.086512],
                            [118.907883, 32.088103],
                            [118.904054, 32.090663],
                            [118.900637, 32.095326],
                            [118.897124, 32.094565],
                            [118.891538, 32.098066],
                            [118.889834, 32.098315],
                            [118.887006, 32.101802],
                            [118.883589, 32.103642],
                            [118.878197, 32.103255],
                            [118.877547, 32.100847],
                            [118.874323, 32.09974],
                            [118.871741, 32.101013],
                            [118.868685, 32.099671],
                            [118.867437, 32.100709],
                            [118.863854, 32.100169],
                            [118.859963, 32.098343],
                            [118.858619, 32.096627],
                            [118.854316, 32.09772],
                            [118.849037, 32.096973],
                            [118.847851, 32.097554],
                            [118.84281, 32.09707],
                            [118.841765, 32.099035],
                            [118.844698, 32.098869],
                            [118.843029, 32.101885],
                            [118.834466, 32.093998],
                            [118.833491, 32.095063],
                            [118.840307, 32.101041],
                            [118.839569, 32.103296],
                            [118.842318, 32.105275],
                            [118.841677, 32.106036],
                            [118.834431, 32.104279],
                            [118.831392, 32.105275],
                            [118.826438, 32.104901],
                            [118.82628, 32.103601],
                            [118.819149, 32.10367],
                            [118.818033, 32.095672],
                            [118.811674, 32.095575],
                            [118.809127, 32.09617],
                            [118.806606, 32.098066],
                            [118.802461, 32.097042],
                            [118.799773, 32.095133],
                            [118.799115, 32.093237],
                            [118.796831, 32.091839],
                            [118.797788, 32.089113],
                            [118.793476, 32.088408],
                            [118.784096, 32.092268],
                            [118.784104, 32.041761],
                            [118.827167, 32.038729],
                            [118.826676, 32.034174],
                            [118.828292, 32.0338],
                            [118.830066, 32.039034],
                            [118.831655, 32.039809],
                            [118.838067, 32.040058],
                            [118.836934, 32.035752],
                            [118.839745, 32.034921],
                            [118.838076, 32.029757],
                            [118.843126, 32.028801],
                            [118.844171, 32.027804],
                            [118.844285, 32.022445],
                            [118.845981, 32.022043],
                            [118.846472, 32.020008],
                            [118.850275, 32.018845],
                            [118.853367, 32.020132],
                            [118.85327, 32.023636],
                            [118.857416, 32.021573],
                            [118.862536, 32.023567],
                            [118.864838, 32.021143],
                            [118.875105, 32.024204],
                            [118.876572, 32.021116],
                            [118.876273, 32.017446],
                            [118.880638, 32.014842],
                            [118.884959, 32.018914],
                            [118.895051, 32.022847],
                            [118.897299, 32.02599]
                        ]
                    ]
                ]
            }
        },
        {
            "type": "Feature",
            "properties": {
                "adcode": 320104,
                "name": "秦淮区",
                "center": [118.786088, 32.033818],
                "centroid": [118.816938, 32.01241],
                "childrenNum": 0,
                "level": "district",
                "parent": { "adcode": 320100 },
                "subFeatureIndex": 1,
                "acroutes": [100000, 320000, 320100]
            },
            "geometry": {
                "type": "MultiPolygon",
                "coordinates": [
                    [
                        [
                            [118.784104, 32.041761],
                            [118.767232, 32.042896],
                            [118.764738, 32.041747],
                            [118.766591, 32.038909],
                            [118.768471, 32.032387],
                            [118.767926, 32.028053],
                            [118.768357, 32.023927],
                            [118.767224, 32.019454],
                            [118.764079, 32.012488],
                            [118.769402, 32.008624],
                            [118.778975, 32.005881],
                            [118.781997, 32.005701],
                            [118.785861, 31.999177],
                            [118.787872, 31.997543],
                            [118.795874, 31.996033],
                            [118.795944, 31.991739],
                            [118.803286, 31.980573],
                            [118.809373, 31.974726],
                            [118.813115, 31.975557],
                            [118.819491, 31.978107],
                            [118.829504, 31.981016],
                            [118.83545, 31.981376],
                            [118.840895, 31.982679],
                            [118.846569, 31.987846],
                            [118.850021, 31.988539],
                            [118.849731, 31.991046],
                            [118.853543, 31.995562],
                            [118.863002, 32.001809],
                            [118.865944, 32.00059],
                            [118.867516, 32.002889],
                            [118.873489, 32.00656],
                            [118.875518, 32.008942],
                            [118.875851, 32.011726],
                            [118.880638, 32.014842],
                            [118.876273, 32.017446],
                            [118.876572, 32.021116],
                            [118.875105, 32.024204],
                            [118.864838, 32.021143],
                            [118.862536, 32.023567],
                            [118.857416, 32.021573],
                            [118.85327, 32.023636],
                            [118.853367, 32.020132],
                            [118.850275, 32.018845],
                            [118.846472, 32.020008],
                            [118.845981, 32.022043],
                            [118.844285, 32.022445],
                            [118.844171, 32.027804],
                            [118.843126, 32.028801],
                            [118.838076, 32.029757],
                            [118.839745, 32.034921],
                            [118.836934, 32.035752],
                            [118.838067, 32.040058],
                            [118.831655, 32.039809],
                            [118.830066, 32.039034],
                            [118.828292, 32.0338],
                            [118.826676, 32.034174],
                            [118.827167, 32.038729],
                            [118.784104, 32.041761]
                        ]
                    ]
                ]
            }
        },
        {
            "type": "Feature",
            "properties": {
                "adcode": 320105,
                "name": "建邺区",
                "center": [118.732688, 32.004538],
                "centroid": [118.710435, 32.009393],
                "childrenNum": 0,
                "level": "district",
                "parent": { "adcode": 320100 },
                "subFeatureIndex": 2,
                "acroutes": [100000, 320000, 320100]
            },
            "geometry": {
                "type": "MultiPolygon",
                "coordinates": [
                    [
                        [
                            [118.726655, 32.092946],
                            [118.724099, 32.089791],
                            [118.711232, 32.075593],
                            [118.696099, 32.054553],
                            [118.687983, 32.03722],
                            [118.678454, 32.023124],
                            [118.670523, 32.010452],
                            [118.664594, 31.997958],
                            [118.663822, 31.9939],
                            [118.657788, 31.984383],
                            [118.653247, 31.979575],
                            [118.658763, 31.967618],
                            [118.661784, 31.964334],
                            [118.666202, 31.963128],
                            [118.700991, 31.957419],
                            [118.711636, 31.955867],
                            [118.711715, 31.957779],
                            [118.714315, 31.958223],
                            [118.71789, 31.960398],
                            [118.724573, 31.968588],
                            [118.73203, 31.974227],
                            [118.741691, 31.982679],
                            [118.754242, 32.000175],
                            [118.754734, 32.00354],
                            [118.75866, 32.00951],
                            [118.759776, 32.013208],
                            [118.764079, 32.012488],
                            [118.767224, 32.019454],
                            [118.768357, 32.023927],
                            [118.767926, 32.028053],
                            [118.768471, 32.032387],
                            [118.766591, 32.038909],
                            [118.764738, 32.041747],
                            [118.757782, 32.037497],
                            [118.741525, 32.039587],
                            [118.734331, 32.039643],
                            [118.73362, 32.029106],
                            [118.725188, 32.030532],
                            [118.720217, 32.032318],
                            [118.72366, 32.037788],
                            [118.727419, 32.039712],
                            [118.718698, 32.04262],
                            [118.723335, 32.051231],
                            [118.72705, 32.060782],
                            [118.727797, 32.064644],
                            [118.728139, 32.075371],
                            [118.730133, 32.087024],
                            [118.728886, 32.090857],
                            [118.726655, 32.092946]
                        ]
                    ]
                ]
            }
        },
        {
            "type": "Feature",
            "properties": {
                "adcode": 320106,
                "name": "鼓楼区",
                "center": [118.769739, 32.066966],
                "centroid": [118.760828, 32.082331],
                "childrenNum": 0,
                "level": "district",
                "parent": { "adcode": 320100 },
                "subFeatureIndex": 3,
                "acroutes": [100000, 320000, 320100]
            },
            "geometry": {
                "type": "MultiPolygon",
                "coordinates": [
                    [
                        [
                            [118.765695, 32.132458],
                            [118.7609, 32.125984],
                            [118.744906, 32.11554],
                            [118.726655, 32.092946],
                            [118.728886, 32.090857],
                            [118.730133, 32.087024],
                            [118.728139, 32.075371],
                            [118.727797, 32.064644],
                            [118.72705, 32.060782],
                            [118.723335, 32.051231],
                            [118.718698, 32.04262],
                            [118.727419, 32.039712],
                            [118.72366, 32.037788],
                            [118.720217, 32.032318],
                            [118.725188, 32.030532],
                            [118.73362, 32.029106],
                            [118.734331, 32.039643],
                            [118.741525, 32.039587],
                            [118.757782, 32.037497],
                            [118.764738, 32.041747],
                            [118.767232, 32.042896],
                            [118.784104, 32.041761],
                            [118.784096, 32.092268],
                            [118.793476, 32.088408],
                            [118.797788, 32.089113],
                            [118.796831, 32.091839],
                            [118.799115, 32.093237],
                            [118.799773, 32.095133],
                            [118.79936, 32.095991],
                            [118.804086, 32.099284],
                            [118.800915, 32.101055],
                            [118.800766, 32.104929],
                            [118.798702, 32.104721],
                            [118.800248, 32.109301],
                            [118.801424, 32.108927],
                            [118.802312, 32.112953],
                            [118.804455, 32.114641],
                            [118.806132, 32.119123],
                            [118.805948, 32.12218],
                            [118.803313, 32.124352],
                            [118.803576, 32.1268],
                            [118.801029, 32.126565],
                            [118.798851, 32.123315],
                            [118.795751, 32.121751],
                            [118.792984, 32.122429],
                            [118.792097, 32.125057],
                            [118.789374, 32.125472],
                            [118.787082, 32.121724],
                            [118.784394, 32.120686],
                            [118.781751, 32.122886],
                            [118.788197, 32.126455],
                            [118.786871, 32.128128],
                            [118.783235, 32.127644],
                            [118.765695, 32.132458]
                        ]
                    ]
                ]
            }
        },
        {
            "type": "Feature",
            "properties": {
                "adcode": 320111,
                "name": "浦口区",
                "center": [118.625307, 32.05839],
                "centroid": [118.563239, 32.053249],
                "childrenNum": 0,
                "level": "district",
                "parent": { "adcode": 320100 },
                "subFeatureIndex": 4,
                "acroutes": [100000, 320000, 320100]
            },
            "geometry": {
                "type": "MultiPolygon",
                "coordinates": [
                    [
                        [
                            [118.674897, 32.251054],
                            [118.66751, 32.235927],
                            [118.663514, 32.231078],
                            [118.650542, 32.218131],
                            [118.644121, 32.209978],
                            [118.637218, 32.207739],
                            [118.631632, 32.203689],
                            [118.628856, 32.202321],
                            [118.626599, 32.202515],
                            [118.619652, 32.205458],
                            [118.616209, 32.205293],
                            [118.608454, 32.201768],
                            [118.598336, 32.199502],
                            [118.594866, 32.196696],
                            [118.594067, 32.194982],
                            [118.59195, 32.196309],
                            [118.591977, 32.19964],
                            [118.590106, 32.200414],
                            [118.587752, 32.199267],
                            [118.580875, 32.198672],
                            [118.577994, 32.199778],
                            [118.574938, 32.202584],
                            [118.569633, 32.201257],
                            [118.561728, 32.196889],
                            [118.558619, 32.197055],
                            [118.551698, 32.199626],
                            [118.549125, 32.198037],
                            [118.548158, 32.194899],
                            [118.539613, 32.192425],
                            [118.532375, 32.195797],
                            [118.530988, 32.195466],
                            [118.527879, 32.191347],
                            [118.524646, 32.189038],
                            [118.521045, 32.188278],
                            [118.518323, 32.18908],
                            [118.509829, 32.194305],
                            [118.508415, 32.193185],
                            [118.507335, 32.188209],
                            [118.508372, 32.184255],
                            [118.506466, 32.182113],
                            [118.496831, 32.178574],
                            [118.495592, 32.177053],
                            [118.496172, 32.172228],
                            [118.495627, 32.165191],
                            [118.498385, 32.160863],
                            [118.505482, 32.143522],
                            [118.507458, 32.137893],
                            [118.500607, 32.14171],
                            [118.499211, 32.141282],
                            [118.497744, 32.138433],
                            [118.499053, 32.135224],
                            [118.498183, 32.133619],
                            [118.49503, 32.132886],
                            [118.494696, 32.130964],
                            [118.49756, 32.125445],
                            [118.500713, 32.122194],
                            [118.499114, 32.120382],
                            [118.49453, 32.121613],
                            [118.489479, 32.120728],
                            [118.486072, 32.119441],
                            [118.482119, 32.116979],
                            [118.477139, 32.117588],
                            [118.473371, 32.115817],
                            [118.472879, 32.113728],
                            [118.473617, 32.110006],
                            [118.470736, 32.108277],
                            [118.462876, 32.100653],
                            [118.460171, 32.101387],
                            [118.458054, 32.100723],
                            [118.453285, 32.096973],
                            [118.449894, 32.097859],
                            [118.447585, 32.094261],
                            [118.444765, 32.093873],
                            [118.441085, 32.092033],
                            [118.438195, 32.08856],
                            [118.434217, 32.0904],
                            [118.433514, 32.086678],
                            [118.42582, 32.086276],
                            [118.420024, 32.085529],
                            [118.415096, 32.087425],
                            [118.412769, 32.081557],
                            [118.411161, 32.080519],
                            [118.405453, 32.080782],
                            [118.404671, 32.079689],
                            [118.40504, 32.075371],
                            [118.403643, 32.074804],
                            [118.400016, 32.077779],
                            [118.395765, 32.077184],
                            [118.394746, 32.075565],
                            [118.396942, 32.072202],
                            [118.395563, 32.066292],
                            [118.393279, 32.062679],
                            [118.390047, 32.062028],
                            [118.388282, 32.063149],
                            [118.385023, 32.060755],
                            [118.385085, 32.058111],
                            [118.388001, 32.053875],
                            [118.392032, 32.053183],
                            [118.39436, 32.048407],
                            [118.393306, 32.046012],
                            [118.388607, 32.043326],
                            [118.387983, 32.042246],
                            [118.385972, 32.033121],
                            [118.386622, 32.030172],
                            [118.389494, 32.027416],
                            [118.395458, 32.024938],
                            [118.398804, 32.024093],
                            [118.401087, 32.021739],
                            [118.401535, 32.018678],
                            [118.399357, 32.016989],
                            [118.392269, 32.016601],
                            [118.389643, 32.012045],
                            [118.390249, 32.006394],
                            [118.389239, 32.001172],
                            [118.39125, 31.995894],
                            [118.390996, 31.989536],
                            [118.389266, 31.985075],
                            [118.387175, 31.98326],
                            [118.376715, 31.981723],
                            [118.375634, 31.980351],
                            [118.376407, 31.977774],
                            [118.379341, 31.974213],
                            [118.380377, 31.970181],
                            [118.3792, 31.967271],
                            [118.374993, 31.963987],
                            [118.371252, 31.95983],
                            [118.369003, 31.956172],
                            [118.368871, 31.949312],
                            [118.369486, 31.944211],
                            [118.363944, 31.934966],
                            [118.363373, 31.931764],
                            [118.364375, 31.930156],
                            [118.368792, 31.928645],
                            [118.375301, 31.925332],
                            [118.378023, 31.922851],
                            [118.38093, 31.918817],
                            [118.386016, 31.914796],
                            [118.388326, 31.914158],
                            [118.395545, 31.914006],
                            [118.400077, 31.914741],
                            [118.402958, 31.914033],
                            [118.408087, 31.910151],
                            [118.415931, 31.901444],
                            [118.420067, 31.899586],
                            [118.430651, 31.896216],
                            [118.440128, 31.892694],
                            [118.44379, 31.888616],
                            [118.449192, 31.887257],
                            [118.452283, 31.88465],
                            [118.472309, 31.879629],
                            [118.473152, 31.877618],
                            [118.4723, 31.874262],
                            [118.467092, 31.86888],
                            [118.466652, 31.864982],
                            [118.467373, 31.863095],
                            [118.466758, 31.858032],
                            [118.467636, 31.856728],
                            [118.4723, 31.854355],
                            [118.475444, 31.850318],
                            [118.490612, 31.843159],
                            [118.49835, 31.841577],
                            [118.504735, 31.841743],
                            [118.505939, 31.844893],
                            [118.513264, 31.854092],
                            [118.530101, 31.878215],
                            [118.555369, 31.897353],
                            [118.567806, 31.911718],
                            [118.580436, 31.921853],
                            [118.593075, 31.927412],
                            [118.599846, 31.929131],
                            [118.608225, 31.931265],
                            [118.613319, 31.937448],
                            [118.626555, 31.948965],
                            [118.641811, 31.967452],
                            [118.653247, 31.979575],
                            [118.657788, 31.984383],
                            [118.663822, 31.9939],
                            [118.664594, 31.997958],
                            [118.670523, 32.010452],
                            [118.678454, 32.023124],
                            [118.687983, 32.03722],
                            [118.696099, 32.054553],
                            [118.711232, 32.075593],
                            [118.724099, 32.089791],
                            [118.726655, 32.092946],
                            [118.744906, 32.11554],
                            [118.7609, 32.125984],
                            [118.765695, 32.132458],
                            [118.769358, 32.137423],
                            [118.775673, 32.148611],
                            [118.776744, 32.157904],
                            [118.773951, 32.16808],
                            [118.769867, 32.181339],
                            [118.767654, 32.187725],
                            [118.755085, 32.187559],
                            [118.751792, 32.18355],
                            [118.747646, 32.184822],
                            [118.74257, 32.179472],
                            [118.732838, 32.167679],
                            [118.730555, 32.167901],
                            [118.729834, 32.17397],
                            [118.73066, 32.1778],
                            [118.734041, 32.177896],
                            [118.737124, 32.176666],
                            [118.739742, 32.180288],
                            [118.739461, 32.185375],
                            [118.736483, 32.188983],
                            [118.73925, 32.190186],
                            [118.739399, 32.19541],
                            [118.738573, 32.198603],
                            [118.734551, 32.200815],
                            [118.733523, 32.202363],
                            [118.7342, 32.204989],
                            [118.73088, 32.207545],
                            [118.731661, 32.21299],
                            [118.728535, 32.214289],
                            [118.725654, 32.217744],
                            [118.723581, 32.21907],
                            [118.724503, 32.221737],
                            [118.723704, 32.223865],
                            [118.721666, 32.225219],
                            [118.721842, 32.230622],
                            [118.721122, 32.234877],
                            [118.722729, 32.239989],
                            [118.719058, 32.246275],
                            [118.720586, 32.249037],
                            [118.719506, 32.250032],
                            [118.705347, 32.248816],
                            [118.674897, 32.251054]
                        ]
                    ]
                ]
            }
        },
        {
            "type": "Feature",
            "properties": {
                "adcode": 320113,
                "name": "栖霞区",
                "center": [118.808702, 32.102147],
                "centroid": [118.958759, 32.159333],
                "childrenNum": 0,
                "level": "district",
                "parent": { "adcode": 320100 },
                "subFeatureIndex": 5,
                "acroutes": [100000, 320000, 320100]
            },
            "geometry": {
                "type": "MultiPolygon",
                "coordinates": [
                    [
                        [
                            [118.799773, 32.095133],
                            [118.802461, 32.097042],
                            [118.806606, 32.098066],
                            [118.809127, 32.09617],
                            [118.811674, 32.095575],
                            [118.818033, 32.095672],
                            [118.819149, 32.10367],
                            [118.82628, 32.103601],
                            [118.826438, 32.104901],
                            [118.831392, 32.105275],
                            [118.834431, 32.104279],
                            [118.841677, 32.106036],
                            [118.842318, 32.105275],
                            [118.839569, 32.103296],
                            [118.840307, 32.101041],
                            [118.833491, 32.095063],
                            [118.834466, 32.093998],
                            [118.843029, 32.101885],
                            [118.844698, 32.098869],
                            [118.841765, 32.099035],
                            [118.84281, 32.09707],
                            [118.847851, 32.097554],
                            [118.849037, 32.096973],
                            [118.854316, 32.09772],
                            [118.858619, 32.096627],
                            [118.859963, 32.098343],
                            [118.863854, 32.100169],
                            [118.867437, 32.100709],
                            [118.868685, 32.099671],
                            [118.871741, 32.101013],
                            [118.874323, 32.09974],
                            [118.877547, 32.100847],
                            [118.878197, 32.103255],
                            [118.883589, 32.103642],
                            [118.887006, 32.101802],
                            [118.889834, 32.098315],
                            [118.891538, 32.098066],
                            [118.897124, 32.094565],
                            [118.900637, 32.095326],
                            [118.904054, 32.090663],
                            [118.907883, 32.088103],
                            [118.90834, 32.086512],
                            [118.900918, 32.082429],
                            [118.89766, 32.082457],
                            [118.897177, 32.081045],
                            [118.893066, 32.078554],
                            [118.894173, 32.077862],
                            [118.892961, 32.07461],
                            [118.888657, 32.074707],
                            [118.888051, 32.076644],
                            [118.884959, 32.078319],
                            [118.8851, 32.075523],
                            [118.881604, 32.074167],
                            [118.883879, 32.070762],
                            [118.880225, 32.072617],
                            [118.877002, 32.075343],
                            [118.875904, 32.072395],
                            [118.881499, 32.06935],
                            [118.882658, 32.067648],
                            [118.884915, 32.067108],
                            [118.88806, 32.060962],
                            [118.885969, 32.06099],
                            [118.888244, 32.058637],
                            [118.888262, 32.054747],
                            [118.887313, 32.05076],
                            [118.881587, 32.047881],
                            [118.87954, 32.049736],
                            [118.877766, 32.048919],
                            [118.879646, 32.046496],
                            [118.877634, 32.045555],
                            [118.878943, 32.041401],
                            [118.882474, 32.042578],
                            [118.882035, 32.041],
                            [118.885706, 32.039075],
                            [118.885012, 32.036735],
                            [118.883062, 32.035544],
                            [118.885522, 32.034631],
                            [118.892003, 32.034575],
                            [118.894384, 32.032069],
                            [118.895235, 32.028178],
                            [118.893303, 32.026212],
                            [118.897299, 32.02599],
                            [118.898687, 32.027389],
                            [118.906645, 32.030089],
                            [118.916719, 32.040058],
                            [118.918519, 32.041235],
                            [118.914444, 32.043243],
                            [118.920899, 32.051522],
                            [118.916359, 32.055287],
                            [118.919213, 32.059398],
                            [118.921137, 32.063689],
                            [118.920653, 32.066029],
                            [118.917158, 32.068658],
                            [118.920425, 32.077461],
                            [118.922568, 32.077378],
                            [118.929208, 32.074624],
                            [118.932089, 32.074984],
                            [118.934302, 32.076603],
                            [118.936691, 32.080201],
                            [118.93814, 32.084644],
                            [118.941329, 32.086678],
                            [118.943586, 32.086622],
                            [118.943656, 32.095603],
                            [118.949031, 32.098398],
                            [118.957401, 32.100391],
                            [118.960326, 32.100418],
                            [118.963866, 32.101843],
                            [118.968784, 32.106589],
                            [118.974238, 32.10973],
                            [118.978156, 32.10955],
                            [118.980738, 32.107724],
                            [118.980307, 32.101816],
                            [118.981625, 32.09873],
                            [118.983364, 32.097416],
                            [118.980316, 32.095202],
                            [118.979218, 32.092351],
                            [118.973202, 32.086955],
                            [118.976285, 32.083827],
                            [118.971946, 32.082706],
                            [118.971103, 32.080533],
                            [118.970778, 32.073932],
                            [118.973386, 32.072229],
                            [118.976188, 32.071842],
                            [118.97841, 32.072977],
                            [118.980386, 32.0718],
                            [118.985384, 32.07162],
                            [118.984558, 32.066444],
                            [118.985586, 32.065655],
                            [118.988809, 32.066499],
                            [118.992735, 32.066167],
                            [118.993605, 32.068838],
                            [118.998216, 32.071579],
                            [118.998453, 32.073087],
                            [119.00295, 32.076202],
                            [119.008343, 32.078194],
                            [119.007965, 32.081724],
                            [119.003872, 32.081793],
                            [119.002678, 32.089653],
                            [119.001861, 32.091397],
                            [119.005111, 32.09332],
                            [119.00807, 32.096516],
                            [119.01118, 32.095797],
                            [119.017117, 32.096599],
                            [119.020973, 32.098163],
                            [119.023722, 32.095728],
                            [119.029387, 32.095022],
                            [119.036413, 32.095036],
                            [119.038407, 32.096032],
                            [119.039707, 32.094704],
                            [119.042763, 32.095908],
                            [119.046013, 32.094302],
                            [119.049105, 32.094441],
                            [119.050457, 32.098191],
                            [119.04733, 32.099422],
                            [119.047076, 32.101373],
                            [119.050141, 32.104417],
                            [119.051362, 32.105496],
                            [119.049271, 32.110242],
                            [119.046795, 32.109854],
                            [119.046443, 32.107793],
                            [119.045381, 32.111542],
                            [119.039926, 32.112248],
                            [119.03723, 32.114309],
                            [119.03254, 32.114018],
                            [119.026655, 32.115955],
                            [119.02193, 32.114254],
                            [119.020771, 32.115263],
                            [119.018092, 32.114157],
                            [119.016976, 32.114987],
                            [119.008887, 32.115941],
                            [119.009704, 32.121641],
                            [119.009239, 32.124684],
                            [119.016028, 32.128488],
                            [119.020516, 32.12893],
                            [119.022378, 32.130895],
                            [119.027815, 32.141932],
                            [119.032865, 32.14597],
                            [119.031749, 32.148667],
                            [119.035043, 32.15276],
                            [119.039347, 32.157033],
                            [119.043852, 32.156065],
                            [119.047374, 32.156314],
                            [119.04769, 32.15836],
                            [119.053241, 32.157627],
                            [119.054682, 32.158982],
                            [119.05542, 32.155899],
                            [119.058494, 32.156452],
                            [119.05895, 32.159162],
                            [119.054945, 32.159881],
                            [119.051476, 32.159356],
                            [119.047972, 32.161264],
                            [119.049298, 32.163739],
                            [119.052293, 32.16125],
                            [119.058889, 32.162896],
                            [119.062709, 32.161941],
                            [119.066091, 32.162508],
                            [119.067479, 32.160725],
                            [119.076016, 32.161679],
                            [119.076955, 32.170652],
                            [119.079257, 32.174938],
                            [119.076455, 32.176085],
                            [119.078659, 32.178726],
                            [119.086898, 32.178505],
                            [119.093555, 32.179859],
                            [119.09821, 32.181601],
                            [119.108065, 32.183758],
                            [119.116347, 32.186384],
                            [119.119755, 32.186619],
                            [119.124375, 32.19013],
                            [119.136715, 32.193392],
                            [119.14151, 32.191927],
                            [119.146613, 32.189232],
                            [119.154456, 32.186177],
                            [119.163397, 32.185569],
                            [119.174991, 32.187587],
                            [119.184547, 32.189633],
                            [119.191081, 32.185417],
                            [119.193813, 32.184836],
                            [119.19939, 32.185845],
                            [119.209526, 32.189439],
                            [119.216253, 32.190697],
                            [119.218159, 32.193075],
                            [119.219705, 32.198589],
                            [119.221392, 32.201105],
                            [119.236147, 32.210406],
                            [119.241663, 32.216293],
                            [119.229006, 32.222166],
                            [119.177204, 32.238898],
                            [119.153763, 32.243664],
                            [119.132315, 32.245156],
                            [119.107503, 32.243954],
                            [119.086019, 32.241136],
                            [119.073714, 32.232542],
                            [119.056113, 32.20995],
                            [119.042781, 32.195784],
                            [119.033796, 32.188942],
                            [119.016168, 32.183799],
                            [118.985323, 32.179542],
                            [118.951543, 32.175131],
                            [118.930104, 32.1748],
                            [118.909877, 32.177634],
                            [118.892847, 32.178283],
                            [118.875974, 32.177634],
                            [118.872953, 32.18315],
                            [118.863511, 32.202363],
                            [118.855001, 32.216334],
                            [118.848703, 32.222912],
                            [118.839999, 32.22714],
                            [118.827203, 32.22989],
                            [118.807133, 32.228411],
                            [118.790244, 32.222456],
                            [118.773767, 32.212285],
                            [118.768453, 32.207476],
                            [118.765124, 32.201616],
                            [118.764747, 32.19606],
                            [118.767654, 32.187725],
                            [118.769867, 32.181339],
                            [118.773951, 32.16808],
                            [118.776744, 32.157904],
                            [118.775673, 32.148611],
                            [118.769358, 32.137423],
                            [118.765695, 32.132458],
                            [118.783235, 32.127644],
                            [118.786871, 32.128128],
                            [118.788197, 32.126455],
                            [118.781751, 32.122886],
                            [118.784394, 32.120686],
                            [118.787082, 32.121724],
                            [118.789374, 32.125472],
                            [118.792097, 32.125057],
                            [118.792984, 32.122429],
                            [118.795751, 32.121751],
                            [118.798851, 32.123315],
                            [118.801029, 32.126565],
                            [118.803576, 32.1268],
                            [118.803313, 32.124352],
                            [118.805948, 32.12218],
                            [118.806132, 32.119123],
                            [118.804455, 32.114641],
                            [118.802312, 32.112953],
                            [118.801424, 32.108927],
                            [118.800248, 32.109301],
                            [118.798702, 32.104721],
                            [118.800766, 32.104929],
                            [118.800915, 32.101055],
                            [118.804086, 32.099284],
                            [118.79936, 32.095991],
                            [118.799773, 32.095133]
                        ]
                    ]
                ]
            }
        },
        {
            "type": "Feature",
            "properties": {
                "adcode": 320114,
                "name": "雨花台区",
                "center": [118.77207, 31.995946],
                "centroid": [118.694503, 31.938238],
                "childrenNum": 0,
                "level": "district",
                "parent": { "adcode": 320100 },
                "subFeatureIndex": 6,
                "acroutes": [100000, 320000, 320100]
            },
            "geometry": {
                "type": "MultiPolygon",
                "coordinates": [
                    [
                        [
                            [118.813115, 31.975557],
                            [118.809373, 31.974726],
                            [118.803286, 31.980573],
                            [118.795944, 31.991739],
                            [118.795874, 31.996033],
                            [118.787872, 31.997543],
                            [118.785861, 31.999177],
                            [118.781997, 32.005701],
                            [118.778975, 32.005881],
                            [118.769402, 32.008624],
                            [118.764079, 32.012488],
                            [118.759776, 32.013208],
                            [118.75866, 32.00951],
                            [118.754734, 32.00354],
                            [118.754242, 32.000175],
                            [118.741691, 31.982679],
                            [118.73203, 31.974227],
                            [118.724573, 31.968588],
                            [118.71789, 31.960398],
                            [118.714315, 31.958223],
                            [118.711715, 31.957779],
                            [118.711636, 31.955867],
                            [118.700991, 31.957419],
                            [118.666202, 31.963128],
                            [118.661784, 31.964334],
                            [118.658763, 31.967618],
                            [118.653247, 31.979575],
                            [118.641811, 31.967452],
                            [118.626555, 31.948965],
                            [118.613319, 31.937448],
                            [118.608225, 31.931265],
                            [118.599846, 31.929131],
                            [118.595174, 31.912813],
                            [118.594102, 31.905784],
                            [118.597861, 31.900598],
                            [118.596939, 31.894566],
                            [118.5939, 31.887604],
                            [118.593733, 31.885746],
                            [118.599873, 31.883429],
                            [118.606583, 31.884248],
                            [118.610983, 31.882722],
                            [118.614848, 31.882819],
                            [118.620126, 31.880864],
                            [118.619792, 31.879477],
                            [118.615647, 31.874151],
                            [118.617869, 31.874164],
                            [118.61873, 31.875038],
                            [118.621944, 31.874178],
                            [118.620829, 31.872916],
                            [118.61858, 31.873374],
                            [118.61793, 31.87053],
                            [118.624149, 31.868353],
                            [118.628821, 31.86906],
                            [118.63215, 31.867187],
                            [118.635057, 31.866563],
                            [118.637569, 31.867728],
                            [118.644657, 31.873096],
                            [118.652781, 31.878395],
                            [118.654986, 31.88207],
                            [118.654195, 31.885898],
                            [118.654942, 31.890863],
                            [118.656514, 31.894746],
                            [118.65979, 31.897866],
                            [118.661766, 31.89849],
                            [118.666175, 31.897991],
                            [118.676021, 31.900196],
                            [118.677953, 31.899627],
                            [118.680738, 31.895592],
                            [118.684707, 31.895425],
                            [118.689239, 31.897769],
                            [118.691303, 31.901083],
                            [118.688906, 31.904148],
                            [118.683557, 31.904799],
                            [118.681879, 31.906089],
                            [118.680272, 31.910054],
                            [118.677189, 31.911163],
                            [118.676855, 31.914643],
                            [118.679473, 31.918068],
                            [118.687553, 31.923059],
                            [118.690987, 31.922976],
                            [118.692524, 31.924251],
                            [118.696705, 31.924514],
                            [118.701298, 31.926303],
                            [118.705391, 31.926206],
                            [118.70843, 31.923586],
                            [118.710846, 31.923017],
                            [118.713085, 31.924237],
                            [118.712058, 31.925596],
                            [118.717143, 31.92676],
                            [118.718979, 31.929754],
                            [118.719769, 31.934634],
                            [118.725443, 31.932222],
                            [118.723555, 31.928257],
                            [118.723642, 31.92572],
                            [118.726146, 31.92432],
                            [118.726875, 31.922393],
                            [118.726365, 31.918927],
                            [118.72756, 31.917444],
                            [118.732276, 31.9156],
                            [118.738898, 31.917749],
                            [118.740989, 31.916543],
                            [118.741937, 31.913825],
                            [118.746408, 31.912508],
                            [118.749306, 31.912675],
                            [118.754629, 31.914449],
                            [118.756025, 31.91639],
                            [118.761778, 31.915212],
                            [118.766143, 31.917957],
                            [118.768725, 31.918775],
                            [118.771949, 31.917389],
                            [118.776147, 31.917763],
                            [118.777886, 31.92195],
                            [118.775225, 31.926829],
                            [118.776656, 31.934149],
                            [118.77273, 31.938972],
                            [118.770377, 31.940996],
                            [118.769042, 31.944572],
                            [118.769569, 31.947926],
                            [118.76891, 31.953095],
                            [118.769279, 31.955437],
                            [118.772449, 31.958569],
                            [118.775014, 31.958625],
                            [118.780697, 31.956809],
                            [118.781961, 31.96317],
                            [118.787951, 31.966038],
                            [118.795478, 31.968283],
                            [118.796971, 31.965941],
                            [118.801899, 31.967355],
                            [118.806097, 31.961368],
                            [118.809839, 31.963045],
                            [118.809224, 31.966343],
                            [118.810445, 31.969863],
                            [118.809259, 31.971401],
                            [118.811367, 31.972648],
                            [118.813115, 31.975557]
                        ]
                    ],
                    [
                        [
                            [118.617869, 31.874164],
                            [118.615647, 31.874151],
                            [118.614417, 31.872444],
                            [118.61793, 31.87053],
                            [118.61858, 31.873374],
                            [118.617869, 31.874164]
                        ]
                    ]
                ]
            }
        },
        {
            "type": "Feature",
            "properties": {
                "adcode": 320115,
                "name": "江宁区",
                "center": [118.850621, 31.953418],
                "centroid": [118.830792, 31.85463],
                "childrenNum": 0,
                "level": "district",
                "parent": { "adcode": 320100 },
                "subFeatureIndex": 7,
                "acroutes": [100000, 320000, 320100]
            },
            "geometry": {
                "type": "MultiPolygon",
                "coordinates": [
                    [
                        [
                            [118.61793, 31.87053],
                            [118.614417, 31.872444],
                            [118.615647, 31.874151],
                            [118.619792, 31.879477],
                            [118.620126, 31.880864],
                            [118.614848, 31.882819],
                            [118.610983, 31.882722],
                            [118.606583, 31.884248],
                            [118.599873, 31.883429],
                            [118.593733, 31.885746],
                            [118.5939, 31.887604],
                            [118.596939, 31.894566],
                            [118.597861, 31.900598],
                            [118.594102, 31.905784],
                            [118.595174, 31.912813],
                            [118.599846, 31.929131],
                            [118.593075, 31.927412],
                            [118.580436, 31.921853],
                            [118.567806, 31.911718],
                            [118.555369, 31.897353],
                            [118.530101, 31.878215],
                            [118.513264, 31.854092],
                            [118.505939, 31.844893],
                            [118.504735, 31.841743],
                            [118.493186, 31.811351],
                            [118.486124, 31.795416],
                            [118.482154, 31.778353],
                            [118.487389, 31.77652],
                            [118.492738, 31.776173],
                            [118.499711, 31.778145],
                            [118.50319, 31.778047],
                            [118.504323, 31.772535],
                            [118.50593, 31.769508],
                            [118.510769, 31.76562],
                            [118.515319, 31.765522],
                            [118.519745, 31.763092],
                            [118.523601, 31.761995],
                            [118.533851, 31.767244],
                            [118.53667, 31.766592],
                            [118.539674, 31.761551],
                            [118.545488, 31.762162],
                            [118.54735, 31.758995],
                            [118.546305, 31.758329],
                            [118.539753, 31.758676],
                            [118.537522, 31.753996],
                            [118.538699, 31.749371],
                            [118.529407, 31.748551],
                            [118.523592, 31.745482],
                            [118.522126, 31.743051],
                            [118.523979, 31.742245],
                            [118.530022, 31.742315],
                            [118.530118, 31.738036],
                            [118.531119, 31.7363],
                            [118.536293, 31.738564],
                            [118.537311, 31.737203],
                            [118.545102, 31.732077],
                            [118.54692, 31.73655],
                            [118.55002, 31.735967],
                            [118.55313, 31.729021],
                            [118.554754, 31.728215],
                            [118.557187, 31.729646],
                            [118.562158, 31.737856],
                            [118.567235, 31.742717],
                            [118.571706, 31.746232],
                            [118.573014, 31.745495],
                            [118.575298, 31.740926],
                            [118.579356, 31.740676],
                            [118.593101, 31.744412],
                            [118.600716, 31.753982],
                            [118.605634, 31.756232],
                            [118.609341, 31.75719],
                            [118.613706, 31.75469],
                            [118.616674, 31.751496],
                            [118.619037, 31.750065],
                            [118.621997, 31.751871],
                            [118.6227, 31.754037],
                            [118.625703, 31.756246],
                            [118.627056, 31.759468],
                            [118.638105, 31.759051],
                            [118.641662, 31.758245],
                            [118.642909, 31.753857],
                            [118.644525, 31.752246],
                            [118.647784, 31.751037],
                            [118.648381, 31.748801],
                            [118.641697, 31.744009],
                            [118.642391, 31.742287],
                            [118.64608, 31.740356],
                            [118.652105, 31.739773],
                            [118.650779, 31.733577],
                            [118.653976, 31.730146],
                            [118.662961, 31.73041],
                            [118.66852, 31.729312],
                            [118.677268, 31.728576],
                            [118.680202, 31.726464],
                            [118.684909, 31.724895],
                            [118.68729, 31.720963],
                            [118.687342, 31.716169],
                            [118.69082, 31.715086],
                            [118.691874, 31.713641],
                            [118.697697, 31.709417],
                            [118.696336, 31.707916],
                            [118.692603, 31.707374],
                            [118.690249, 31.704803],
                            [118.680729, 31.696604],
                            [118.673869, 31.696451],
                            [118.671586, 31.695006],
                            [118.670172, 31.692685],
                            [118.671401, 31.688474],
                            [118.663259, 31.680579],
                            [118.654916, 31.675631],
                            [118.6507, 31.678467],
                            [118.649611, 31.680093],
                            [118.646976, 31.679885],
                            [118.644903, 31.673935],
                            [118.643234, 31.67135],
                            [118.643796, 31.669737],
                            [118.646967, 31.666359],
                            [118.648504, 31.662272],
                            [118.647951, 31.65938],
                            [118.643629, 31.650009],
                            [118.644754, 31.647131],
                            [118.650427, 31.646686],
                            [118.654819, 31.642709],
                            [118.657849, 31.641124],
                            [118.673817, 31.64054],
                            [118.684795, 31.636229],
                            [118.688827, 31.636285],
                            [118.694975, 31.639734],
                            [118.698014, 31.639692],
                            [118.704109, 31.638399],
                            [118.71182, 31.642251],
                            [118.716941, 31.639469],
                            [118.717134, 31.635075],
                            [118.717986, 31.633671],
                            [118.719409, 31.627454],
                            [118.724942, 31.627371],
                            [118.724863, 31.630528],
                            [118.72626, 31.631014],
                            [118.727753, 31.634018],
                            [118.730238, 31.633059],
                            [118.731723, 31.633879],
                            [118.73405, 31.632057],
                            [118.736711, 31.634157],
                            [118.735842, 31.635896],
                            [118.736545, 31.639275],
                            [118.739891, 31.642556],
                            [118.738371, 31.646784],
                            [118.741419, 31.648758],
                            [118.739399, 31.65108],
                            [118.744203, 31.654806],
                            [118.745152, 31.656711],
                            [118.743817, 31.660534],
                            [118.744985, 31.664413],
                            [118.74437, 31.668361],
                            [118.748858, 31.673101],
                            [118.747971, 31.675464],
                            [118.751124, 31.677716],
                            [118.756324, 31.6778],
                            [118.760513, 31.68026],
                            [118.768295, 31.67748],
                            [118.774136, 31.682609],
                            [118.779713, 31.680079],
                            [118.7845, 31.674978],
                            [118.788645, 31.671934],
                            [118.793037, 31.671058],
                            [118.798166, 31.668653],
                            [118.799035, 31.666373],
                            [118.792589, 31.65938],
                            [118.783086, 31.656516],
                            [118.783744, 31.651747],
                            [118.788434, 31.648466],
                            [118.789559, 31.646547],
                            [118.787969, 31.642543],
                            [118.78904, 31.640234],
                            [118.791886, 31.63787],
                            [118.792835, 31.635701],
                            [118.790446, 31.630083],
                            [118.796041, 31.628303],
                            [118.799018, 31.625145],
                            [118.802759, 31.619485],
                            [118.805368, 31.618372],
                            [118.81452, 31.619234],
                            [118.820607, 31.623254],
                            [118.819553, 31.628525],
                            [118.827159, 31.629429],
                            [118.83321, 31.630583],
                            [118.83552, 31.635965],
                            [118.840052, 31.640624],
                            [118.843741, 31.640888],
                            [118.848765, 31.63794],
                            [118.850548, 31.638885],
                            [118.84822, 31.642264],
                            [118.849713, 31.64378],
                            [118.855071, 31.644614],
                            [118.858198, 31.645977],
                            [118.863819, 31.646853],
                            [118.869879, 31.646241],
                            [118.876343, 31.64353],
                            [118.882096, 31.642612],
                            [118.885346, 31.643099],
                            [118.886611, 31.644336],
                            [118.888385, 31.650399],
                            [118.886224, 31.651441],
                            [118.885293, 31.65361],
                            [118.887805, 31.654862],
                            [118.890045, 31.662216],
                            [118.891977, 31.664149],
                            [118.897238, 31.663148],
                            [118.903044, 31.664927],
                            [118.906355, 31.669793],
                            [118.907865, 31.674714],
                            [118.906293, 31.677535],
                            [118.905924, 31.684068],
                            [118.907426, 31.684318],
                            [118.918862, 31.688961],
                            [118.926231, 31.687571],
                            [118.934065, 31.680385],
                            [118.935549, 31.676813],
                            [118.937297, 31.674769],
                            [118.940494, 31.673796],
                            [118.944877, 31.674616],
                            [118.947459, 31.677285],
                            [118.947793, 31.67919],
                            [118.943059, 31.682901],
                            [118.943884, 31.68575],
                            [118.947266, 31.692088],
                            [118.94738, 31.697535],
                            [118.948794, 31.699384],
                            [118.944473, 31.703886],
                            [118.942128, 31.709305],
                            [118.936094, 31.714099],
                            [118.93316, 31.719129],
                            [118.931983, 31.720004],
                            [118.917623, 31.725895],
                            [118.900496, 31.733688],
                            [118.899759, 31.735258],
                            [118.90141, 31.745329],
                            [118.901269, 31.747009],
                            [118.895358, 31.759356],
                            [118.894673, 31.766703],
                            [118.899126, 31.77216],
                            [118.903272, 31.778575],
                            [118.903632, 31.782782],
                            [118.902095, 31.788322],
                            [118.903983, 31.78946],
                            [118.91166, 31.786392],
                            [118.917131, 31.782477],
                            [118.921778, 31.778117],
                            [118.92739, 31.775867],
                            [118.93028, 31.777423],
                            [118.940968, 31.772521],
                            [118.948285, 31.770049],
                            [118.95308, 31.767675],
                            [118.962706, 31.769674],
                            [118.969838, 31.770063],
                            [118.976654, 31.766772],
                            [118.981036, 31.769383],
                            [118.982951, 31.775243],
                            [118.982029, 31.778047],
                            [118.982556, 31.782976],
                            [118.985498, 31.784448],
                            [119.002924, 31.783435],
                            [119.007877, 31.792334],
                            [119.006068, 31.793847],
                            [119.006358, 31.798623],
                            [119.000745, 31.801413],
                            [118.998427, 31.801468],
                            [118.992665, 31.808881],
                            [118.99205, 31.812448],
                            [118.99003, 31.812809],
                            [118.986412, 31.817875],
                            [118.980624, 31.820664],
                            [118.978006, 31.822788],
                            [118.971885, 31.824328],
                            [118.970391, 31.826077],
                            [118.972912, 31.829796],
                            [118.970795, 31.830989],
                            [118.969452, 31.834597],
                            [118.97156, 31.836415],
                            [118.976592, 31.835805],
                            [118.979324, 31.838233],
                            [118.979658, 31.842354],
                            [118.99227, 31.84413],
                            [118.996916, 31.842798],
                            [119.00338, 31.845781],
                            [119.010749, 31.845878],
                            [119.014666, 31.846572],
                            [119.020358, 31.845934],
                            [119.025909, 31.846364],
                            [119.028974, 31.850318],
                            [119.032812, 31.853759],
                            [119.035956, 31.854314],
                            [119.041595, 31.85387],
                            [119.043369, 31.854425],
                            [119.045855, 31.858406],
                            [119.050044, 31.859946],
                            [119.055929, 31.861125],
                            [119.061831, 31.864566],
                            [119.066644, 31.868242],
                            [119.069753, 31.868796],
                            [119.071932, 31.865509],
                            [119.075401, 31.864177],
                            [119.092405, 31.860446],
                            [119.094521, 31.861],
                            [119.097174, 31.86408],
                            [119.100327, 31.8658],
                            [119.102918, 31.873568],
                            [119.103761, 31.878866],
                            [119.105623, 31.880905],
                            [119.107784, 31.885135],
                            [119.113791, 31.887743],
                            [119.11647, 31.890475],
                            [119.117032, 31.892832],
                            [119.11669, 31.899045],
                            [119.112149, 31.900459],
                            [119.111183, 31.901638],
                            [119.112685, 31.906824],
                            [119.110032, 31.91065],
                            [119.108434, 31.922989],
                            [119.104341, 31.931251],
                            [119.104165, 31.933608],
                            [119.102259, 31.933178],
                            [119.101495, 31.935646],
                            [119.097718, 31.933012],
                            [119.093511, 31.934564],
                            [119.088514, 31.932638],
                            [119.084957, 31.935909],
                            [119.076876, 31.936727],
                            [119.067637, 31.94022],
                            [119.06155, 31.939277],
                            [119.055297, 31.939541],
                            [119.051537, 31.935937],
                            [119.046505, 31.935923],
                            [119.043615, 31.937323],
                            [119.03752, 31.938986],
                            [119.033023, 31.944558],
                            [119.029325, 31.950268],
                            [119.029246, 31.957086],
                            [119.034402, 31.962255],
                            [119.041525, 31.963627],
                            [119.046847, 31.968546],
                            [119.053101, 31.968768],
                            [119.064888, 31.973424],
                            [119.070421, 31.972357],
                            [119.07375, 31.969613],
                            [119.077333, 31.970597],
                            [119.079625, 31.972758],
                            [119.082849, 31.974241],
                            [119.090121, 31.97413],
                            [119.095136, 31.97122],
                            [119.096708, 31.969502],
                            [119.102962, 31.965581],
                            [119.107942, 31.965789],
                            [119.111042, 31.969475],
                            [119.111745, 31.974989],
                            [119.113914, 31.979838],
                            [119.115987, 31.979908],
                            [119.118587, 31.977996],
                            [119.121125, 31.977552],
                            [119.121634, 31.984826],
                            [119.115838, 31.986391],
                            [119.114222, 31.988192],
                            [119.11416, 31.997889],
                            [119.112474, 32.000452],
                            [119.107503, 32.00343],
                            [119.102812, 32.004884],
                            [119.100871, 32.002322],
                            [119.092896, 32.002793],
                            [119.092361, 32.004122],
                            [119.097903, 32.011241],
                            [119.096366, 32.018332],
                            [119.094311, 32.022237],
                            [119.094934, 32.027998],
                            [119.092334, 32.032221],
                            [119.092668, 32.037621],
                            [119.087732, 32.045624],
                            [119.086617, 32.05321],
                            [119.092835, 32.06034],
                            [119.098509, 32.07162],
                            [119.10016, 32.085944],
                            [119.100178, 32.088823],
                            [119.098869, 32.091037],
                            [119.094548, 32.091839],
                            [119.089752, 32.089695],
                            [119.086397, 32.092241],
                            [119.082954, 32.097001],
                            [119.081119, 32.100667],
                            [119.079783, 32.107322],
                            [119.07555, 32.108083],
                            [119.069261, 32.107917],
                            [119.060566, 32.104043],
                            [119.057668, 32.102245],
                            [119.055674, 32.104002],
                            [119.050141, 32.104417],
                            [119.047076, 32.101373],
                            [119.04733, 32.099422],
                            [119.050457, 32.098191],
                            [119.049105, 32.094441],
                            [119.046013, 32.094302],
                            [119.042763, 32.095908],
                            [119.039707, 32.094704],
                            [119.038407, 32.096032],
                            [119.036413, 32.095036],
                            [119.029387, 32.095022],
                            [119.023722, 32.095728],
                            [119.020973, 32.098163],
                            [119.017117, 32.096599],
                            [119.01118, 32.095797],
                            [119.00807, 32.096516],
                            [119.005111, 32.09332],
                            [119.001861, 32.091397],
                            [119.002678, 32.089653],
                            [119.003872, 32.081793],
                            [119.007965, 32.081724],
                            [119.008343, 32.078194],
                            [119.00295, 32.076202],
                            [118.998453, 32.073087],
                            [118.998216, 32.071579],
                            [118.993605, 32.068838],
                            [118.992735, 32.066167],
                            [118.988809, 32.066499],
                            [118.985586, 32.065655],
                            [118.984558, 32.066444],
                            [118.985384, 32.07162],
                            [118.980386, 32.0718],
                            [118.97841, 32.072977],
                            [118.976188, 32.071842],
                            [118.973386, 32.072229],
                            [118.970778, 32.073932],
                            [118.971103, 32.080533],
                            [118.971946, 32.082706],
                            [118.976285, 32.083827],
                            [118.973202, 32.086955],
                            [118.979218, 32.092351],
                            [118.980316, 32.095202],
                            [118.983364, 32.097416],
                            [118.981625, 32.09873],
                            [118.980307, 32.101816],
                            [118.980738, 32.107724],
                            [118.978156, 32.10955],
                            [118.974238, 32.10973],
                            [118.968784, 32.106589],
                            [118.963866, 32.101843],
                            [118.960326, 32.100418],
                            [118.957401, 32.100391],
                            [118.949031, 32.098398],
                            [118.943656, 32.095603],
                            [118.943586, 32.086622],
                            [118.941329, 32.086678],
                            [118.93814, 32.084644],
                            [118.936691, 32.080201],
                            [118.934302, 32.076603],
                            [118.932089, 32.074984],
                            [118.929208, 32.074624],
                            [118.922568, 32.077378],
                            [118.920425, 32.077461],
                            [118.917158, 32.068658],
                            [118.920653, 32.066029],
                            [118.921137, 32.063689],
                            [118.919213, 32.059398],
                            [118.916359, 32.055287],
                            [118.920899, 32.051522],
                            [118.914444, 32.043243],
                            [118.918519, 32.041235],
                            [118.916719, 32.040058],
                            [118.906645, 32.030089],
                            [118.898687, 32.027389],
                            [118.897299, 32.02599],
                            [118.895051, 32.022847],
                            [118.884959, 32.018914],
                            [118.880638, 32.014842],
                            [118.875851, 32.011726],
                            [118.875518, 32.008942],
                            [118.873489, 32.00656],
                            [118.867516, 32.002889],
                            [118.865944, 32.00059],
                            [118.863002, 32.001809],
                            [118.853543, 31.995562],
                            [118.849731, 31.991046],
                            [118.850021, 31.988539],
                            [118.846569, 31.987846],
                            [118.840895, 31.982679],
                            [118.83545, 31.981376],
                            [118.829504, 31.981016],
                            [118.819491, 31.978107],
                            [118.813115, 31.975557],
                            [118.811367, 31.972648],
                            [118.809259, 31.971401],
                            [118.810445, 31.969863],
                            [118.809224, 31.966343],
                            [118.809839, 31.963045],
                            [118.806097, 31.961368],
                            [118.801899, 31.967355],
                            [118.796971, 31.965941],
                            [118.795478, 31.968283],
                            [118.787951, 31.966038],
                            [118.781961, 31.96317],
                            [118.780697, 31.956809],
                            [118.775014, 31.958625],
                            [118.772449, 31.958569],
                            [118.769279, 31.955437],
                            [118.76891, 31.953095],
                            [118.769569, 31.947926],
                            [118.769042, 31.944572],
                            [118.770377, 31.940996],
                            [118.77273, 31.938972],
                            [118.776656, 31.934149],
                            [118.775225, 31.926829],
                            [118.777886, 31.92195],
                            [118.776147, 31.917763],
                            [118.771949, 31.917389],
                            [118.768725, 31.918775],
                            [118.766143, 31.917957],
                            [118.761778, 31.915212],
                            [118.756025, 31.91639],
                            [118.754629, 31.914449],
                            [118.749306, 31.912675],
                            [118.746408, 31.912508],
                            [118.741937, 31.913825],
                            [118.740989, 31.916543],
                            [118.738898, 31.917749],
                            [118.732276, 31.9156],
                            [118.72756, 31.917444],
                            [118.726365, 31.918927],
                            [118.726875, 31.922393],
                            [118.726146, 31.92432],
                            [118.723642, 31.92572],
                            [118.723555, 31.928257],
                            [118.725443, 31.932222],
                            [118.719769, 31.934634],
                            [118.718979, 31.929754],
                            [118.717143, 31.92676],
                            [118.712058, 31.925596],
                            [118.713085, 31.924237],
                            [118.710846, 31.923017],
                            [118.70843, 31.923586],
                            [118.705391, 31.926206],
                            [118.701298, 31.926303],
                            [118.696705, 31.924514],
                            [118.692524, 31.924251],
                            [118.690987, 31.922976],
                            [118.687553, 31.923059],
                            [118.679473, 31.918068],
                            [118.676855, 31.914643],
                            [118.677189, 31.911163],
                            [118.680272, 31.910054],
                            [118.681879, 31.906089],
                            [118.683557, 31.904799],
                            [118.688906, 31.904148],
                            [118.691303, 31.901083],
                            [118.689239, 31.897769],
                            [118.684707, 31.895425],
                            [118.680738, 31.895592],
                            [118.677953, 31.899627],
                            [118.676021, 31.900196],
                            [118.666175, 31.897991],
                            [118.661766, 31.89849],
                            [118.65979, 31.897866],
                            [118.656514, 31.894746],
                            [118.654942, 31.890863],
                            [118.654195, 31.885898],
                            [118.654986, 31.88207],
                            [118.652781, 31.878395],
                            [118.644657, 31.873096],
                            [118.637569, 31.867728],
                            [118.635057, 31.866563],
                            [118.63215, 31.867187],
                            [118.628821, 31.86906],
                            [118.624149, 31.868353],
                            [118.61793, 31.87053]
                        ]
                    ],
                    [
                        [
                            [118.61858, 31.873374],
                            [118.620829, 31.872916],
                            [118.621944, 31.874178],
                            [118.61873, 31.875038],
                            [118.617869, 31.874164],
                            [118.61858, 31.873374]
                        ]
                    ]
                ]
            }
        },
        {
            "type": "Feature",
            "properties": {
                "adcode": 320116,
                "name": "六合区",
                "center": [118.85065, 32.340655],
                "centroid": [118.841561, 32.394058],
                "childrenNum": 0,
                "level": "district",
                "parent": { "adcode": 320100 },
                "subFeatureIndex": 8,
                "acroutes": [100000, 320000, 320100]
            },
            "geometry": {
                "type": "MultiPolygon",
                "coordinates": [
                    [
                        [
                            [119.086019, 32.241136],
                            [119.079177, 32.245031],
                            [119.074777, 32.248968],
                            [119.05657, 32.251676],
                            [119.039803, 32.257408],
                            [119.037089, 32.259867],
                            [119.037283, 32.262712],
                            [119.0399, 32.266234],
                            [119.041068, 32.271717],
                            [119.040875, 32.276661],
                            [119.039882, 32.279326],
                            [119.040322, 32.285623],
                            [119.039312, 32.29167],
                            [119.036325, 32.294625],
                            [119.039215, 32.299209],
                            [119.039838, 32.303737],
                            [119.035588, 32.308707],
                            [119.037502, 32.314022],
                            [119.037502, 32.322828],
                            [119.03586, 32.325437],
                            [119.037933, 32.328556],
                            [119.042034, 32.332158],
                            [119.041955, 32.33329],
                            [119.028429, 32.345075],
                            [119.027314, 32.347849],
                            [119.027305, 32.35134],
                            [119.029448, 32.353658],
                            [119.034191, 32.354872],
                            [119.037019, 32.356817],
                            [119.037493, 32.359397],
                            [119.039338, 32.362074],
                            [119.0438, 32.365178],
                            [119.035816, 32.370531],
                            [119.021719, 32.375442],
                            [119.020112, 32.378021],
                            [119.022545, 32.380449],
                            [119.035623, 32.380366],
                            [119.038407, 32.38158],
                            [119.039004, 32.384835],
                            [119.03745, 32.388849],
                            [119.027472, 32.388297],
                            [119.02316, 32.390932],
                            [119.022984, 32.394187],
                            [119.021746, 32.396738],
                            [119.01753, 32.399248],
                            [119.016493, 32.40515],
                            [119.016449, 32.413176],
                            [119.018013, 32.418181],
                            [119.021974, 32.420607],
                            [119.024222, 32.420869],
                            [119.025259, 32.424606],
                            [119.029475, 32.428825],
                            [119.027911, 32.434463],
                            [119.022466, 32.440308],
                            [119.021825, 32.445022],
                            [119.023739, 32.456076],
                            [119.027411, 32.456641],
                            [119.030546, 32.456021],
                            [119.035904, 32.452437],
                            [119.043343, 32.460004],
                            [119.047014, 32.462898],
                            [119.054559, 32.464304],
                            [119.05881, 32.464152],
                            [119.060522, 32.462733],
                            [119.064879, 32.461644],
                            [119.067443, 32.462416],
                            [119.066144, 32.464634],
                            [119.065125, 32.469444],
                            [119.065608, 32.473936],
                            [119.064088, 32.476196],
                            [119.064554, 32.482052],
                            [119.062788, 32.484587],
                            [119.05051, 32.492936],
                            [119.045776, 32.498102],
                            [119.043308, 32.502827],
                            [119.042544, 32.5097],
                            [119.041393, 32.514755],
                            [119.039083, 32.516022],
                            [119.029756, 32.515237],
                            [119.021754, 32.517854],
                            [119.019216, 32.517992],
                            [119.015211, 32.5147],
                            [119.012848, 32.513998],
                            [119.007517, 32.514066],
                            [119.006015, 32.509108],
                            [119.003398, 32.506463],
                            [118.997434, 32.503901],
                            [118.990838, 32.503405],
                            [118.987834, 32.504328],
                            [118.979824, 32.503874],
                            [118.974853, 32.505871],
                            [118.967923, 32.514549],
                            [118.967168, 32.523046],
                            [118.964797, 32.526709],
                            [118.944894, 32.543495],
                            [118.940591, 32.547805],
                            [118.937561, 32.553064],
                            [118.936542, 32.557538],
                            [118.933266, 32.556409],
                            [118.925572, 32.557153],
                            [118.923429, 32.555872],
                            [118.919784, 32.557249],
                            [118.916341, 32.556051],
                            [118.915972, 32.549526],
                            [118.914005, 32.548851],
                            [118.90588, 32.552293],
                            [118.906372, 32.557924],
                            [118.904124, 32.557951],
                            [118.899715, 32.553119],
                            [118.891389, 32.553147],
                            [118.887875, 32.55484],
                            [118.888148, 32.556864],
                            [118.890168, 32.559066],
                            [118.894489, 32.561682],
                            [118.896518, 32.560223],
                            [118.898643, 32.56047],
                            [118.896904, 32.569308],
                            [118.897062, 32.574428],
                            [118.896395, 32.577264],
                            [118.898143, 32.57769],
                            [118.90004, 32.581682],
                            [118.90935, 32.586856],
                            [118.909771, 32.588893],
                            [118.907874, 32.59232],
                            [118.901998, 32.589031],
                            [118.896342, 32.587035],
                            [118.887884, 32.58709],
                            [118.885082, 32.586361],
                            [118.883238, 32.58354],
                            [118.884204, 32.580429],
                            [118.881227, 32.578612],
                            [118.878873, 32.578943],
                            [118.874982, 32.582962],
                            [118.873296, 32.582549],
                            [118.874218, 32.57747],
                            [118.872646, 32.576066],
                            [118.862633, 32.575598],
                            [118.855958, 32.574373],
                            [118.852208, 32.572047],
                            [118.851927, 32.570712],
                            [118.848519, 32.568193],
                            [118.844777, 32.567312],
                            [118.842652, 32.567986],
                            [118.842748, 32.572777],
                            [118.840526, 32.574084],
                            [118.83754, 32.572639],
                            [118.836108, 32.570671],
                            [118.827036, 32.57268],
                            [118.826605, 32.576066],
                            [118.827554, 32.581159],
                            [118.825551, 32.582824],
                            [118.820492, 32.582535],
                            [118.819254, 32.586223],
                            [118.8226, 32.587462],
                            [118.824629, 32.589622],
                            [118.825534, 32.595388],
                            [118.82549, 32.599668],
                            [118.824559, 32.602516],
                            [118.820984, 32.604305],
                            [118.817357, 32.601993],
                            [118.813729, 32.600824],
                            [118.8086, 32.594797],
                            [118.805315, 32.593434],
                            [118.806053, 32.589636],
                            [118.804806, 32.586843],
                            [118.801785, 32.584338],
                            [118.794363, 32.583966],
                            [118.788751, 32.582287],
                            [118.784763, 32.582452],
                            [118.78125, 32.584283],
                            [118.777912, 32.587517],
                            [118.77483, 32.587682],
                            [118.776454, 32.594398],
                            [118.775787, 32.597728],
                            [118.76826, 32.601636],
                            [118.76292, 32.603686],
                            [118.757518, 32.603961],
                            [118.749745, 32.599379],
                            [118.744335, 32.59887],
                            [118.74329, 32.597728],
                            [118.743316, 32.592609],
                            [118.74069, 32.589375],
                            [118.738275, 32.588439],
                            [118.735482, 32.588797],
                            [118.726031, 32.596297],
                            [118.725302, 32.608226],
                            [118.722896, 32.61234],
                            [118.718996, 32.614363],
                            [118.717582, 32.608419],
                            [118.711478, 32.608901],
                            [118.703652, 32.608295],
                            [118.697987, 32.60641],
                            [118.697074, 32.602778],
                            [118.699164, 32.600328],
                            [118.700403, 32.597342],
                            [118.701272, 32.591742],
                            [118.700851, 32.588535],
                            [118.696679, 32.588274],
                            [118.695054, 32.591136],
                            [118.694667, 32.597012],
                            [118.692814, 32.600246],
                            [118.691058, 32.600975],
                            [118.689046, 32.604759],
                            [118.687211, 32.603617],
                            [118.690355, 32.599806],
                            [118.691839, 32.593311],
                            [118.69147, 32.590407],
                            [118.689547, 32.588535],
                            [118.68577, 32.588921],
                            [118.677075, 32.592953],
                            [118.668801, 32.594893],
                            [118.667203, 32.593655],
                            [118.66441, 32.594618],
                            [118.661072, 32.593875],
                            [118.658727, 32.594453],
                            [118.657603, 32.597301],
                            [118.653598, 32.598099],
                            [118.651192, 32.595306],
                            [118.652281, 32.593063],
                            [118.649277, 32.590847],
                            [118.646299, 32.590957],
                            [118.645491, 32.588687],
                            [118.641249, 32.58709],
                            [118.642409, 32.583333],
                            [118.638825, 32.582838],
                            [118.639668, 32.581393],
                            [118.63316, 32.578282],
                            [118.631131, 32.582934],
                            [118.627153, 32.589829],
                            [118.623402, 32.592609],
                            [118.604545, 32.596517],
                            [118.601796, 32.59737],
                            [118.60083, 32.599971],
                            [118.598072, 32.601347],
                            [118.591072, 32.596255],
                            [118.589061, 32.59532],
                            [118.585152, 32.596021],
                            [118.581253, 32.594549],
                            [118.572847, 32.588136],
                            [118.569501, 32.58643],
                            [118.56662, 32.580195],
                            [118.563731, 32.564366],
                            [118.564899, 32.562095],
                            [118.568078, 32.55875],
                            [118.578205, 32.552568],
                            [118.584678, 32.549002],
                            [118.591415, 32.547695],
                            [118.598986, 32.544652],
                            [118.605827, 32.540273],
                            [118.608831, 32.537051],
                            [118.608568, 32.533485],
                            [118.605573, 32.526737],
                            [118.604844, 32.522853],
                            [118.607373, 32.521091],
                            [118.614444, 32.520416],
                            [118.616789, 32.515733],
                            [118.617465, 32.512414],
                            [118.615331, 32.508502],
                            [118.608006, 32.501752],
                            [118.595086, 32.502758],
                            [118.592363, 32.499879],
                            [118.592794, 32.490869],
                            [118.592117, 32.48201],
                            [118.593338, 32.478827],
                            [118.596711, 32.476623],
                            [118.60805, 32.475851],
                            [118.608568, 32.470574],
                            [118.621259, 32.470422],
                            [118.624711, 32.468493],
                            [118.628101, 32.467652],
                            [118.631439, 32.469058],
                            [118.634293, 32.471263],
                            [118.6411, 32.470188],
                            [118.643427, 32.470477],
                            [118.645087, 32.474391],
                            [118.647696, 32.476526],
                            [118.652641, 32.477036],
                            [118.653914, 32.47592],
                            [118.669592, 32.470711],
                            [118.672903, 32.469843],
                            [118.681194, 32.472241],
                            [118.689292, 32.473495],
                            [118.691347, 32.472448],
                            [118.69263, 32.465117],
                            [118.690627, 32.458557],
                            [118.691549, 32.452796],
                            [118.690144, 32.450232],
                            [118.686912, 32.429817],
                            [118.689029, 32.420663],
                            [118.688906, 32.418208],
                            [118.685761, 32.404971],
                            [118.684462, 32.402365],
                            [118.678682, 32.393952],
                            [118.679947, 32.389428],
                            [118.68779, 32.384532],
                            [118.690188, 32.37827],
                            [118.692182, 32.37787],
                            [118.693894, 32.382325],
                            [118.696196, 32.383828],
                            [118.698769, 32.38318],
                            [118.701746, 32.379525],
                            [118.700921, 32.376794],
                            [118.697372, 32.375607],
                            [118.698022, 32.373552],
                            [118.702388, 32.373111],
                            [118.703512, 32.37209],
                            [118.703073, 32.367703],
                            [118.698093, 32.369],
                            [118.69609, 32.367979],
                            [118.699691, 32.361646],
                            [118.702229, 32.359563],
                            [118.702045, 32.357935],
                            [118.696099, 32.356969],
                            [118.694492, 32.356045],
                            [118.692911, 32.351698],
                            [118.694386, 32.350222],
                            [118.699858, 32.349739],
                            [118.69725, 32.347062],
                            [118.6966, 32.345075],
                            [118.697531, 32.342646],
                            [118.700051, 32.341225],
                            [118.704812, 32.340342],
                            [118.707903, 32.338396],
                            [118.708184, 32.336616],
                            [118.706946, 32.332241],
                            [118.703222, 32.328956],
                            [118.698585, 32.328749],
                            [118.692656, 32.33024],
                            [118.687641, 32.329991],
                            [118.684382, 32.327935],
                            [118.68397, 32.32407],
                            [118.68678, 32.322635],
                            [118.693376, 32.3224],
                            [118.696538, 32.320564],
                            [118.696327, 32.317721],
                            [118.693684, 32.317266],
                            [118.687817, 32.31808],
                            [118.681554, 32.317473],
                            [118.678463, 32.316534],
                            [118.674791, 32.314132],
                            [118.67047, 32.309811],
                            [118.660264, 32.305435],
                            [118.658095, 32.303199],
                            [118.657305, 32.300189],
                            [118.659983, 32.296351],
                            [118.662557, 32.295674],
                            [118.667326, 32.296379],
                            [118.670259, 32.291809],
                            [118.670778, 32.285609],
                            [118.668081, 32.281825],
                            [118.659246, 32.26611],
                            [118.660106, 32.263209],
                            [118.664375, 32.259121],
                            [118.667431, 32.257546],
                            [118.674466, 32.256262],
                            [118.675828, 32.253831],
                            [118.674897, 32.251054],
                            [118.705347, 32.248816],
                            [118.719506, 32.250032],
                            [118.720586, 32.249037],
                            [118.719058, 32.246275],
                            [118.722729, 32.239989],
                            [118.721122, 32.234877],
                            [118.721842, 32.230622],
                            [118.721666, 32.225219],
                            [118.723704, 32.223865],
                            [118.724503, 32.221737],
                            [118.723581, 32.21907],
                            [118.725654, 32.217744],
                            [118.728535, 32.214289],
                            [118.731661, 32.21299],
                            [118.73088, 32.207545],
                            [118.7342, 32.204989],
                            [118.733523, 32.202363],
                            [118.734551, 32.200815],
                            [118.738573, 32.198603],
                            [118.739399, 32.19541],
                            [118.73925, 32.190186],
                            [118.736483, 32.188983],
                            [118.739461, 32.185375],
                            [118.739742, 32.180288],
                            [118.737124, 32.176666],
                            [118.734041, 32.177896],
                            [118.73066, 32.1778],
                            [118.729834, 32.17397],
                            [118.730555, 32.167901],
                            [118.732838, 32.167679],
                            [118.74257, 32.179472],
                            [118.747646, 32.184822],
                            [118.751792, 32.18355],
                            [118.755085, 32.187559],
                            [118.767654, 32.187725],
                            [118.764747, 32.19606],
                            [118.765124, 32.201616],
                            [118.768453, 32.207476],
                            [118.773767, 32.212285],
                            [118.790244, 32.222456],
                            [118.807133, 32.228411],
                            [118.827203, 32.22989],
                            [118.839999, 32.22714],
                            [118.848703, 32.222912],
                            [118.855001, 32.216334],
                            [118.863511, 32.202363],
                            [118.872953, 32.18315],
                            [118.875974, 32.177634],
                            [118.892847, 32.178283],
                            [118.909877, 32.177634],
                            [118.930104, 32.1748],
                            [118.951543, 32.175131],
                            [118.985323, 32.179542],
                            [119.016168, 32.183799],
                            [119.033796, 32.188942],
                            [119.042781, 32.195784],
                            [119.056113, 32.20995],
                            [119.073714, 32.232542],
                            [119.086019, 32.241136]
                        ]
                    ]
                ]
            }
        },
        {
            "type": "Feature",
            "properties": {
                "adcode": 320117,
                "name": "溧水区",
                "center": [119.028732, 31.653061],
                "centroid": [119.033054, 31.591332],
                "childrenNum": 0,
                "level": "district",
                "parent": { "adcode": 320100 },
                "subFeatureIndex": 9,
                "acroutes": [100000, 320000, 320100]
            },
            "geometry": {
                "type": "MultiPolygon",
                "coordinates": [
                    [
                        [
                            [119.121924, 31.424476],
                            [119.123619, 31.430386],
                            [119.126298, 31.437465],
                            [119.128713, 31.441019],
                            [119.132525, 31.442816],
                            [119.134124, 31.441576],
                            [119.138761, 31.442496],
                            [119.140913, 31.444962],
                            [119.140535, 31.448558],
                            [119.141299, 31.451498],
                            [119.149002, 31.457949],
                            [119.152612, 31.464636],
                            [119.155941, 31.4756],
                            [119.156046, 31.480113],
                            [119.149143, 31.484013],
                            [119.148616, 31.486952],
                            [119.153016, 31.493178],
                            [119.166401, 31.493457],
                            [119.170143, 31.494599],
                            [119.171741, 31.497969],
                            [119.174367, 31.499],
                            [119.183537, 31.500197],
                            [119.186734, 31.505893],
                            [119.186962, 31.509472],
                            [119.189096, 31.511031],
                            [119.193725, 31.516573],
                            [119.194454, 31.51823],
                            [119.198204, 31.521739],
                            [119.19946, 31.524538],
                            [119.197634, 31.528269],
                            [119.198635, 31.530023],
                            [119.189386, 31.529856],
                            [119.186154, 31.528673],
                            [119.180182, 31.527642],
                            [119.181095, 31.538111],
                            [119.18748, 31.545837],
                            [119.186866, 31.549637],
                            [119.189088, 31.551739],
                            [119.19766, 31.551864],
                            [119.206785, 31.55828],
                            [119.206469, 31.563124],
                            [119.215797, 31.570402],
                            [119.217905, 31.576455],
                            [119.216034, 31.580518],
                            [119.216245, 31.585416],
                            [119.219846, 31.590787],
                            [119.221866, 31.59478],
                            [119.228699, 31.61157],
                            [119.230148, 31.619276],
                            [119.234065, 31.627037],
                            [119.232511, 31.632266],
                            [119.226802, 31.630027],
                            [119.22234, 31.630194],
                            [119.216578, 31.627816],
                            [119.212424, 31.627718],
                            [119.211642, 31.62872],
                            [119.211783, 31.633434],
                            [119.206223, 31.637092],
                            [119.206715, 31.643836],
                            [119.204739, 31.646645],
                            [119.200866, 31.646422],
                            [119.199109, 31.647326],
                            [119.187322, 31.649147],
                            [119.186101, 31.651191],
                            [119.190396, 31.65596],
                            [119.192276, 31.659839],
                            [119.189255, 31.665094],
                            [119.187445, 31.666818],
                            [119.186066, 31.671447],
                            [119.18662, 31.677661],
                            [119.190203, 31.683137],
                            [119.190405, 31.687056],
                            [119.186435, 31.694117],
                            [119.178574, 31.696438],
                            [119.17384, 31.696618],
                            [119.167947, 31.699189],
                            [119.157697, 31.699384],
                            [119.156204, 31.704233],
                            [119.153552, 31.70358],
                            [119.14801, 31.712112],
                            [119.142371, 31.717239],
                            [119.138673, 31.722102],
                            [119.134958, 31.722699],
                            [119.130909, 31.722116],
                            [119.129267, 31.723589],
                            [119.126746, 31.731882],
                            [119.124998, 31.735786],
                            [119.12058, 31.738773],
                            [119.114432, 31.740259],
                            [119.108882, 31.746857],
                            [119.110823, 31.751357],
                            [119.109242, 31.752551],
                            [119.105412, 31.751343],
                            [119.09677, 31.754093],
                            [119.094003, 31.756051],
                            [119.0928, 31.762731],
                            [119.089893, 31.769633],
                            [119.085791, 31.773951],
                            [119.077842, 31.77391],
                            [119.07714, 31.775826],
                            [119.078185, 31.781616],
                            [119.077105, 31.783948],
                            [119.069709, 31.783865],
                            [119.068884, 31.781907],
                            [119.065757, 31.781949],
                            [119.055639, 31.788974],
                            [119.041657, 31.7881],
                            [119.034964, 31.783657],
                            [119.029677, 31.784712],
                            [119.021552, 31.778603],
                            [119.017214, 31.778478],
                            [119.016643, 31.777325],
                            [119.012067, 31.777367],
                            [119.009291, 31.778686],
                            [119.005023, 31.777756],
                            [119.001747, 31.770022],
                            [118.998892, 31.767203],
                            [118.995722, 31.768619],
                            [118.991207, 31.765522],
                            [118.984128, 31.764064],
                            [118.980457, 31.764661],
                            [118.979333, 31.766911],
                            [118.981036, 31.769383],
                            [118.976654, 31.766772],
                            [118.969838, 31.770063],
                            [118.962706, 31.769674],
                            [118.95308, 31.767675],
                            [118.948285, 31.770049],
                            [118.940968, 31.772521],
                            [118.93028, 31.777423],
                            [118.92739, 31.775867],
                            [118.921778, 31.778117],
                            [118.917131, 31.782477],
                            [118.91166, 31.786392],
                            [118.903983, 31.78946],
                            [118.902095, 31.788322],
                            [118.903632, 31.782782],
                            [118.903272, 31.778575],
                            [118.899126, 31.77216],
                            [118.894673, 31.766703],
                            [118.895358, 31.759356],
                            [118.901269, 31.747009],
                            [118.90141, 31.745329],
                            [118.899759, 31.735258],
                            [118.900496, 31.733688],
                            [118.917623, 31.725895],
                            [118.931983, 31.720004],
                            [118.93316, 31.719129],
                            [118.936094, 31.714099],
                            [118.942128, 31.709305],
                            [118.944473, 31.703886],
                            [118.948794, 31.699384],
                            [118.94738, 31.697535],
                            [118.947266, 31.692088],
                            [118.943884, 31.68575],
                            [118.943059, 31.682901],
                            [118.947793, 31.67919],
                            [118.947459, 31.677285],
                            [118.944877, 31.674616],
                            [118.940494, 31.673796],
                            [118.937297, 31.674769],
                            [118.935549, 31.676813],
                            [118.934065, 31.680385],
                            [118.926231, 31.687571],
                            [118.918862, 31.688961],
                            [118.907426, 31.684318],
                            [118.905924, 31.684068],
                            [118.906293, 31.677535],
                            [118.907865, 31.674714],
                            [118.906355, 31.669793],
                            [118.903044, 31.664927],
                            [118.897238, 31.663148],
                            [118.891977, 31.664149],
                            [118.890045, 31.662216],
                            [118.887805, 31.654862],
                            [118.885293, 31.65361],
                            [118.886224, 31.651441],
                            [118.888385, 31.650399],
                            [118.886611, 31.644336],
                            [118.885346, 31.643099],
                            [118.882096, 31.642612],
                            [118.876343, 31.64353],
                            [118.869879, 31.646241],
                            [118.863819, 31.646853],
                            [118.858198, 31.645977],
                            [118.855071, 31.644614],
                            [118.849713, 31.64378],
                            [118.84822, 31.642264],
                            [118.850548, 31.638885],
                            [118.848765, 31.63794],
                            [118.843741, 31.640888],
                            [118.840052, 31.640624],
                            [118.83552, 31.635965],
                            [118.83321, 31.630583],
                            [118.841071, 31.628553],
                            [118.845032, 31.626244],
                            [118.849986, 31.624283],
                            [118.854878, 31.624895],
                            [118.858549, 31.623949],
                            [118.863353, 31.615201],
                            [118.86872, 31.611376],
                            [118.870775, 31.599329],
                            [118.862536, 31.595197],
                            [118.862062, 31.593124],
                            [118.865321, 31.591802],
                            [118.87507, 31.591635],
                            [118.877318, 31.589924],
                            [118.876686, 31.586126],
                            [118.873427, 31.578737],
                            [118.873243, 31.574354],
                            [118.875632, 31.570736],
                            [118.881982, 31.56478],
                            [118.876861, 31.557459],
                            [118.875149, 31.552421],
                            [118.875843, 31.543749],
                            [118.873208, 31.538097],
                            [118.873744, 31.531958],
                            [118.8794, 31.532947],
                            [118.883923, 31.531485],
                            [118.886286, 31.527684],
                            [118.885592, 31.514164],
                            [118.883185, 31.496479],
                            [118.880594, 31.487955],
                            [118.881121, 31.487551],
                            [118.919169, 31.446091],
                            [118.926134, 31.436978],
                            [118.930473, 31.426009],
                            [118.932423, 31.420155],
                            [118.934961, 31.417005],
                            [118.939871, 31.412196],
                            [118.941531, 31.405826],
                            [118.945421, 31.399789],
                            [118.948531, 31.397893],
                            [118.953537, 31.397112],
                            [118.956418, 31.395718],
                            [118.960203, 31.391759],
                            [118.960151, 31.387213],
                            [118.963233, 31.384675],
                            [118.969935, 31.381022],
                            [118.974792, 31.383379],
                            [118.976979, 31.382096],
                            [118.978902, 31.383239],
                            [118.978226, 31.385219],
                            [118.98267, 31.386432],
                            [118.984857, 31.389709],
                            [118.984725, 31.391382],
                            [118.986605, 31.392999],
                            [118.98657, 31.395091],
                            [118.995607, 31.395648],
                            [118.994878, 31.392149],
                            [119.000025, 31.385916],
                            [119.001685, 31.382974],
                            [119.005365, 31.380548],
                            [119.008053, 31.382584],
                            [119.010293, 31.382682],
                            [119.012866, 31.391982],
                            [119.01529, 31.395551],
                            [119.019005, 31.397963],
                            [119.020059, 31.401309],
                            [119.017222, 31.409743],
                            [119.017758, 31.41405],
                            [119.034015, 31.429299],
                            [119.041086, 31.430079],
                            [119.043703, 31.429382],
                            [119.049052, 31.424476],
                            [119.051081, 31.42364],
                            [119.054822, 31.425312],
                            [119.059205, 31.42863],
                            [119.060549, 31.431069],
                            [119.062745, 31.432114],
                            [119.065081, 31.428337],
                            [119.068269, 31.425912],
                            [119.075111, 31.427807],
                            [119.078071, 31.431138],
                            [119.081373, 31.432769],
                            [119.083437, 31.431166],
                            [119.082515, 31.425577],
                            [119.086898, 31.422413],
                            [119.101091, 31.425062],
                            [119.104455, 31.424588],
                            [119.105158, 31.42049],
                            [119.106677, 31.419472],
                            [119.111235, 31.423096],
                            [119.113326, 31.423166],
                            [119.119026, 31.420936],
                            [119.121924, 31.424476]
                        ]
                    ],
                    [
                        [
                            [119.130242, 31.421828],
                            [119.12939, 31.42003],
                            [119.130865, 31.418511],
                            [119.132139, 31.419709],
                            [119.136785, 31.41957],
                            [119.136021, 31.416949],
                            [119.141124, 31.415347],
                            [119.142195, 31.416629],
                            [119.146358, 31.417047],
                            [119.146965, 31.419054],
                            [119.14519, 31.422609],
                            [119.143504, 31.422567],
                            [119.143091, 31.42856],
                            [119.141545, 31.433284],
                            [119.136223, 31.436127],
                            [119.132912, 31.436155],
                            [119.133483, 31.434957],
                            [119.131419, 31.431793],
                            [119.132596, 31.430804],
                            [119.130242, 31.421828]
                        ]
                    ],
                    [
                        [
                            [118.856775, 31.506492],
                            [118.863292, 31.516434],
                            [118.865865, 31.518968],
                            [118.864179, 31.521405],
                            [118.861491, 31.522463],
                            [118.856432, 31.52224],
                            [118.849265, 31.514234],
                            [118.846262, 31.509138],
                            [118.845603, 31.505656],
                            [118.84671, 31.503052],
                            [118.848835, 31.502258],
                            [118.852541, 31.502509],
                            [118.856775, 31.506492]
                        ]
                    ]
                ]
            }
        },
        {
            "type": "Feature",
            "properties": {
                "adcode": 320118,
                "name": "高淳区",
                "center": [118.87589, 31.327132],
                "centroid": [118.966446, 31.330188],
                "childrenNum": 0,
                "level": "district",
                "parent": { "adcode": 320100 },
                "subFeatureIndex": 10,
                "acroutes": [100000, 320000, 320100]
            },
            "geometry": {
                "type": "MultiPolygon",
                "coordinates": [
                    [
                        [
                            [118.880594, 31.487955],
                            [118.877784, 31.478748],
                            [118.87052, 31.463048],
                            [118.866076, 31.444879],
                            [118.867815, 31.42803],
                            [118.867718, 31.42364],
                            [118.869633, 31.421577],
                            [118.864355, 31.414761],
                            [118.856959, 31.40255],
                            [118.853727, 31.397754],
                            [118.851154, 31.392539],
                            [118.84952, 31.391982],
                            [118.847386, 31.393948],
                            [118.835186, 31.383909],
                            [118.83653, 31.381915],
                            [118.829495, 31.377508],
                            [118.822012, 31.375054],
                            [118.819667, 31.375235],
                            [118.811103, 31.371386],
                            [118.800256, 31.368988],
                            [118.791895, 31.369322],
                            [118.784552, 31.368597],
                            [118.773161, 31.364678],
                            [118.771281, 31.363116],
                            [118.767584, 31.363981],
                            [118.767935, 31.367272],
                            [118.769577, 31.370703],
                            [118.770877, 31.376936],
                            [118.770341, 31.379321],
                            [118.767478, 31.382626],
                            [118.765405, 31.387938],
                            [118.755665, 31.385791],
                            [118.754602, 31.385066],
                            [118.745749, 31.372697],
                            [118.735051, 31.34476],
                            [118.726488, 31.331786],
                            [118.723862, 31.325522],
                            [118.721016, 31.322355],
                            [118.720762, 31.312685],
                            [118.719611, 31.294794],
                            [118.71493, 31.296929],
                            [118.704434, 31.302777],
                            [118.701457, 31.302721],
                            [118.699753, 31.300223],
                            [118.704232, 31.298757],
                            [118.707912, 31.296803],
                            [118.714657, 31.291988],
                            [118.726585, 31.282231],
                            [118.729, 31.28131],
                            [118.732329, 31.281575],
                            [118.755252, 31.279621],
                            [118.761383, 31.277681],
                            [118.764114, 31.275419],
                            [118.770526, 31.268258],
                            [118.776349, 31.264265],
                            [118.779976, 31.259532],
                            [118.780767, 31.253947],
                            [118.779045, 31.246434],
                            [118.779388, 31.243599],
                            [118.781408, 31.239843],
                            [118.785703, 31.235611],
                            [118.789128, 31.233181],
                            [118.793046, 31.231575],
                            [118.79532, 31.229438],
                            [118.801653, 31.229299],
                            [118.803014, 31.228097],
                            [118.806369, 31.229508],
                            [118.809312, 31.234075],
                            [118.813738, 31.23441],
                            [118.819798, 31.235849],
                            [118.824076, 31.230458],
                            [118.826676, 31.22955],
                            [118.831287, 31.229438],
                            [118.83624, 31.232399],
                            [118.83595, 31.233502],
                            [118.840078, 31.236226],
                            [118.843205, 31.236002],
                            [118.850425, 31.23948],
                            [118.854289, 31.23955],
                            [118.870415, 31.242175],
                            [118.872496, 31.240164],
                            [118.882895, 31.238712],
                            [118.891239, 31.237985],
                            [118.897809, 31.238251],
                            [118.903887, 31.239186],
                            [118.912371, 31.243236],
                            [118.915199, 31.244186],
                            [118.92061, 31.244102],
                            [118.921936, 31.241379],
                            [118.924966, 31.239689],
                            [118.928909, 31.23955],
                            [118.934434, 31.240346],
                            [118.937649, 31.239955],
                            [118.94637, 31.235639],
                            [118.948724, 31.235541],
                            [118.953054, 31.237776],
                            [118.956708, 31.238013],
                            [118.963479, 31.237483],
                            [118.968547, 31.237692],
                            [118.977137, 31.236519],
                            [118.981089, 31.23853],
                            [118.984233, 31.237469],
                            [118.986464, 31.231156],
                            [118.991365, 31.230332],
                            [118.994457, 31.230765],
                            [119.003284, 31.23374],
                            [119.014552, 31.241505],
                            [119.01919, 31.241742],
                            [119.022879, 31.238167],
                            [119.028675, 31.238698],
                            [119.034639, 31.236603],
                            [119.039522, 31.238432],
                            [119.042746, 31.235625],
                            [119.048841, 31.233544],
                            [119.054945, 31.234047],
                            [119.058625, 31.236994],
                            [119.062323, 31.238488],
                            [119.068058, 31.237818],
                            [119.073776, 31.232874],
                            [119.076446, 31.232218],
                            [119.080223, 31.234396],
                            [119.083727, 31.239731],
                            [119.085457, 31.240262],
                            [119.087231, 31.238726],
                            [119.091922, 31.236687],
                            [119.102224, 31.236058],
                            [119.105298, 31.235276],
                            [119.10536, 31.238013],
                            [119.10702, 31.250581],
                            [119.113299, 31.257758],
                            [119.120018, 31.261696],
                            [119.123892, 31.261263],
                            [119.13177, 31.262561],
                            [119.137207, 31.26675],
                            [119.140667, 31.276033],
                            [119.150091, 31.277164],
                            [119.152059, 31.285093],
                            [119.158136, 31.29478],
                            [119.16619, 31.29217],
                            [119.168983, 31.292156],
                            [119.176229, 31.293942],
                            [119.176888, 31.296692],
                            [119.180313, 31.299999],
                            [119.182922, 31.301269],
                            [119.187489, 31.301869],
                            [119.188332, 31.307187],
                            [119.19015, 31.308763],
                            [119.195341, 31.309364],
                            [119.19578, 31.313494],
                            [119.193049, 31.318559],
                            [119.195754, 31.320959],
                            [119.197238, 31.323722],
                            [119.198336, 31.330656],
                            [119.201243, 31.333419],
                            [119.208243, 31.341789],
                            [119.2118, 31.343993],
                            [119.21801, 31.348861],
                            [119.214435, 31.353492],
                            [119.216262, 31.353967],
                            [119.214128, 31.355905],
                            [119.20805, 31.35677],
                            [119.204484, 31.357858],
                            [119.202956, 31.36426],
                            [119.200093, 31.369099],
                            [119.190071, 31.379084],
                            [119.18683, 31.380994],
                            [119.1825, 31.381719],
                            [119.174446, 31.380799],
                            [119.171776, 31.38561],
                            [119.170433, 31.391591],
                            [119.169185, 31.394031],
                            [119.169572, 31.400849],
                            [119.169221, 31.421493],
                            [119.168351, 31.42849],
                            [119.166445, 31.434413],
                            [119.14519, 31.422609],
                            [119.146965, 31.419054],
                            [119.146358, 31.417047],
                            [119.142195, 31.416629],
                            [119.141124, 31.415347],
                            [119.136021, 31.416949],
                            [119.136785, 31.41957],
                            [119.132139, 31.419709],
                            [119.130865, 31.418511],
                            [119.12939, 31.42003],
                            [119.130242, 31.421828],
                            [119.121924, 31.424476],
                            [119.119026, 31.420936],
                            [119.113326, 31.423166],
                            [119.111235, 31.423096],
                            [119.106677, 31.419472],
                            [119.105158, 31.42049],
                            [119.104455, 31.424588],
                            [119.101091, 31.425062],
                            [119.086898, 31.422413],
                            [119.082515, 31.425577],
                            [119.083437, 31.431166],
                            [119.081373, 31.432769],
                            [119.078071, 31.431138],
                            [119.075111, 31.427807],
                            [119.068269, 31.425912],
                            [119.065081, 31.428337],
                            [119.062745, 31.432114],
                            [119.060549, 31.431069],
                            [119.059205, 31.42863],
                            [119.054822, 31.425312],
                            [119.051081, 31.42364],
                            [119.049052, 31.424476],
                            [119.043703, 31.429382],
                            [119.041086, 31.430079],
                            [119.034015, 31.429299],
                            [119.017758, 31.41405],
                            [119.017222, 31.409743],
                            [119.020059, 31.401309],
                            [119.019005, 31.397963],
                            [119.01529, 31.395551],
                            [119.012866, 31.391982],
                            [119.010293, 31.382682],
                            [119.008053, 31.382584],
                            [119.005365, 31.380548],
                            [119.001685, 31.382974],
                            [119.000025, 31.385916],
                            [118.994878, 31.392149],
                            [118.995607, 31.395648],
                            [118.98657, 31.395091],
                            [118.986605, 31.392999],
                            [118.984725, 31.391382],
                            [118.984857, 31.389709],
                            [118.98267, 31.386432],
                            [118.978226, 31.385219],
                            [118.978902, 31.383239],
                            [118.976979, 31.382096],
                            [118.974792, 31.383379],
                            [118.969935, 31.381022],
                            [118.963233, 31.384675],
                            [118.960151, 31.387213],
                            [118.960203, 31.391759],
                            [118.956418, 31.395718],
                            [118.953537, 31.397112],
                            [118.948531, 31.397893],
                            [118.945421, 31.399789],
                            [118.941531, 31.405826],
                            [118.939871, 31.412196],
                            [118.934961, 31.417005],
                            [118.932423, 31.420155],
                            [118.930473, 31.426009],
                            [118.926134, 31.436978],
                            [118.919169, 31.446091],
                            [118.881121, 31.487551],
                            [118.880594, 31.487955]
                        ]
                    ],
                    [
                        [
                            [119.140913, 31.444962],
                            [119.138761, 31.442496],
                            [119.134124, 31.441576],
                            [119.132525, 31.442816],
                            [119.128713, 31.441019],
                            [119.126298, 31.437465],
                            [119.123619, 31.430386],
                            [119.121924, 31.424476],
                            [119.130242, 31.421828],
                            [119.132596, 31.430804],
                            [119.131419, 31.431793],
                            [119.133483, 31.434957],
                            [119.132912, 31.436155],
                            [119.136223, 31.436127],
                            [119.141545, 31.433284],
                            [119.143091, 31.42856],
                            [119.143504, 31.422567],
                            [119.14519, 31.422609],
                            [119.166445, 31.434413],
                            [119.164126, 31.441102],
                            [119.159955, 31.44081],
                            [119.155545, 31.438636],
                            [119.153113, 31.439514],
                            [119.147052, 31.443708],
                            [119.140913, 31.444962]
                        ]
                    ]
                ]
            }
        }
    ]
}

 Finally, if there are errors or areas that need improvement in the article, please leave a private message! Thanks!

Guess you like

Origin blog.csdn.net/youyudehan/article/details/135144817