google-mapsgoogle-maps-api-3beaconindoor-positioning-systemgoogle-indoor-maps

Better result in Google map using beacons in Indoor search


Would it be possible make Google maps aware of our beacons via their registry or api or something, so that google map can accurately give indoor direction to users in a facility that is under our control(where we can deploy beacons)?

Example: In a mall we own, can we place beacons and submit them to Google Maps so it can give better results?

Some links I found, but can't figure out an answer:


Solution

  • Google used to develop this beacon-based location service call Google Here but it was scrapped due to the reasons of privacy, but then you can do the following to get your beacons locationing up.


    Let say you have multiple beacons in one mall.To make this explanation simple, just treat the indoor maps and normal maps as the same thing, and those beacons you going to add are like the places in the Google Maps.

    First of all you need to make your building floor plan available on the Google Maps. You can do so by using the following steps to submit your beacons location with the floor maps of the building, so that your beacons location can be automatically align with your stores/building. https://support.google.com/maps/answer/2803784?co=GENIE.Platform%3DDesktop&hl=en

    After your floor plans appear on Google Maps, you can submit your beacons location using the Map Marker tool (Retired March 2017, moved to Google Maps after that). You can then use the Google Maps API's Map Object to work with your indoor map, including getting location of all your beacons. https://developers.google.com/maps/documentation/android-api/map#indoor_maps

    The IndoorBuilding Object allows you to get the active level that you are accessing. You can use the function getLevels() to get all the levels in the building, and then use getActiveLevelIndex() to get active level you are working on.
    After getting to the right floor, what is left is the interaction between Google Beacon API with the maps you created. latLng and indoorLevel in the Proximity Beacon API would then return the exact location and detail level that your beacons located.