Google maps 这个对谷歌地图引擎的请求缺少什么?

Google maps 这个对谷歌地图引擎的请求缺少什么?,google-maps,google-maps-api-3,google-maps-engine,Google Maps,Google Maps Api 3,Google Maps Engine,我想使用Google地图引擎API的batchInsert。我用dojo/请求来调用这个 调用批插入的代码如下所示: request("https://www.googleapis.com/mapsengine/v1/tables/1453899488279955151311853667273131550346/features/batchInsert", { headers : {

我想使用Google地图引擎API的batchInsert。我用dojo/请求来调用这个

调用批插入的代码如下所示:

request("https://www.googleapis.com/mapsengine/v1/tables/1453899488279955151311853667273131550346/features/batchInsert",

                {
                    headers : {
                        "Authorization": 'Bearer '+ token.access_token,
                        "Access-Control-Allow-Origin" : null,
                        "X-Requested-With": null,
                        "Content-Type": "application/json"
                    },
                    handleAs : 'json',
                    method : 'POST',
                    data :datastring
                }
        ).then(function(data){
                    console.log("Got data :"+data);
                }, function(err){
                    console.log("Got error :"+err.response.text);
                }, function(evt){
                    console.log("Got Event :"+evt);
                });
请求如下

{
"features":[
{"type":"Feature",
"geomerty":
{
"type":"Point",
"coordinates":[-34.678393740116476,150.765380859375]
},
"properties":
{
"gx_id":"2",
"FID":2,
"sapobjectid":"12345sdf",
"sapobjectname":"Test",
"Features":"Point"}
}
]
} 
但我得到的错误是

Got error :{
"error": {
"errors": [
 {
"domain": "global",
"reason": "required",
"message": "A value is required.",
"locationType": "other",
"location": "features[0].geometry"
}
],
"code": 400,
"message": "A value is required."
}
}

请让我知道我遗漏了什么。

我认为这是语法问题:“geomerty”

请改用
“几何图形”
重试该请求