Reputation: 321
We have Google Maps Engine account. I recently uploaded a shape file which has approximately 179,000 features.
Find below the exact stats for the Table
I am trying to perform an intersect query as following
"https://www.googleapis.com/mapsengine/v1/tables/{tableid}/features?where=ST_INTERSECTS(geometry,ST_POINT(55.300153,25.256426))"
But it throws the following error
error: {errors: [{domain: "usageLimits",reason: "limitExceeded",message: "This resource is too large to be accessed via this API call."}],code: 403,message: "This resource is too large to be accessed via this API call."}
To make sure if I am using the OAuth correctly, I change the tableID and perform the same query on another table which has 1500 records, and I get the proper results.
Questions
Thanks in advance for your help.
Upvotes: 1
Views: 242
Reputation: 86
No. The API key is only used to access public tables.
GME API limits are detailed at: https://developers.google.com/maps-engine/documentation/limits#capacity
Examples of how to use the intersects function can be found at: https://developers.google.com/maps-engine/documentation/read#geographic_restrictions
If there's something specifically that you need additional help with don't be afraid to raise a support case at: http://google.com/enterprise/portal
Upvotes: 1