Does Google Maps have a Map Tile API like HERE Maps?

10,629

We made the same questions many times and finally we had a response to it. There is a new API launch by Google that you can use in very special cases and you have to justify the use of it. Here is the documentation:

https://developers.google.com/maps/documentation/tile/#tile_requests

Hope this help!

Share:
10,629
user3606329
Author by

user3606329

I work for GoWager OÜ - https://www.gowager.io GoWager provides services to the E-Sport industry.

Updated on June 13, 2022

Comments

  • user3606329
    user3606329 almost 2 years

    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?