



china, type name as city, and detailed field and type information. The type of the location field is geo_point which can represent location information, and level is the object type and contains subfield information. For more information on field types, please see Field Datatypes.

PUT china{"mappings": {"city": {"properties":{"name":{ "type": "keyword" },"province":{ "type": "keyword" },"location": {"type": "geo_point"},"x":{ "type": "integer" },"level":{"properties":{"level":{ "type": "integer" },"range":{ "type": "integer" },"name":{ "type": "keyword" }}},"y":{ "type": "integer" },"cityNo":{ "type": "integer" }}}}}

PUT china/city/wuhan{"name":"Wuhan","province":"No.188, Yanjiang Avenue, Jiang'an District, Hubei Province","location":{"lat":30.5952548577,"lon":114.2999398195},"x":6384,"level":{"level":2,"range":19,"name":"New first-tier city"},"y":4231,"cityNo":7}
GET /china/city/wuhan
POST _bulk{ "index" : { "_index": "china", "_type" : "city", "_id" : "beijing" } }{"name":"Beijing","province":"Beijing","location":{"lat":39.9031324643,"lon":116.4010433787},"x":6763,"level":{"range":4,"level":1,"name":"First-tier city"},"y":6381,"cityNo":1}{ "index" : { "_index": "china", "_type" : "city", "_id" : "shanghai" } }{"name":"Shanghai","province":"Shanghai","location":{"lat":31.2319526784,"lon":121.469443249},"x":7779,"level":{"range":4,"level":1,"name":"First-tier city"},"y":4409,"cityNo":2}{ "index" : { "_index": "china", "_type" : "city", "_id" : "guangzhou" } }{"name":"Guangzhou","province":"No.79, Jixiang Road, Yuexiu District, Guangdong Province","location":{"lat":23.1317146641,"lon":113.2595185241},"x":6173,"level":{"range":4,"level":1,"name":"First-tier city"},"y":2560,"cityNo":3}{ "index" : { "_index": "china", "_type" : "city", "_id" : "shenzhen" } }{"name":"Shenzhen","province":"No.37, Xinyuan Road, Futian District, Guangdong Province","location":{"lat":22.5455465546,"lon":114.0527779134},"x":6336,"level":{"range":4,"level":1,"name":"First-tier city"},"y":2429,"cityNo":4}{ "index" : { "_index": "china", "_type" : "city", "_id" : "chengdu" } }{"name":"Chengdu","province":"No. 88-1, Hongxing Road 4th Section, Jinjiang District, Sichuan Province","location":{"lat":30.6522796787,"lon":104.0725574128},"x":4387,"level":{"level":2,"range":19,"name":"New first-tier city"},"y":4304,"cityNo":5}{ "index" : { "_index": "china", "_type" : "city", "_id" : "hangzhou" } }{"name":"Hangzhou","province":"No.316, Huancheng North Road, Gongshu District, Zhejiang Province","location":{"lat":30.2753694112,"lon":120.1509063337},"x":7530,"level":{"level":2,"range":19,"name":"New first-tier city"},"y":4182,"cityNo":6}
GET /china/city/_search
china created above and click Next step to proceed to the next step.




china index mentioned above, follow the steps below:

count metric, aggregate the statistics by the level.level field, and click Save.

Feedback