Does Google Maps have a tile API to receive meta information about buildings?
For example: HERE Maps offers a tile API to obtain information about buildings. But data is mainly only in cities available. See: Here Map Tile API.
A response from the HERE Map Tile API looks like this:
{ "metadata" : {
"street labels":[ { "name":"Danziger Straße", "font size":"13", "vertices": [ 38.21, -18.57, 79.17, 4.82, 88.82, 10.34, 121.50, 30.46 ] } ],
"labels":[{ "name": "111", "type":"TEXT", "bounding boxes": [ { "annotation box":[ 146.69, 139.41, 26.62, 16.75 ] } ] }],
"city center labels":[],
"buildings":[ { "id": "1609441356716643099", "sectors": [ { "info": { "bottom height": 0, "height": 6.125 }, "vertices": [ 248, 138.69, 243, 146.91, 231, 174.84, 256, 189.18, 256, 142.78, 219, 197.88, 125, 82.78, 99, 132.09 ], "polygons": [ [ 0, 1, 2, 3, 4], [ 5, 2, 1, 6, 7]], "outlines": [ [ 2, 5, 7, 6, 1, 0, 4 ], [ 3, 2 ]] } ] } ],
"transit stops":[ ],
"POIs":[ ]
}
The metadata can be used to tell a few things about the building such as length, etc.
Google Maps is able draw buildings on all places see here: Buildings (Countryside).
But how would I be able to obtain those meta information?