Top Google Map Results Using Beacons in Private Searches

Is it possible to make Google maps aware of our lighthouses through their registry or api or something else, so that a Google map can accurately give internal direction to users in an object that we control (where we can deploy lighthouses)?

Example. Can we put beacons in our shopping center and send them to Google Maps so that they can give better results?

Some links that I found but cannot find the answer:

+6
source share
3 answers

Google used this service to determine location based on Google’s lighthouse radio stations here, but it was canceled due to privacy reasons, but then you can do the following to find your lighthouses.

Let's say you have several lighthouses in one mall. To simplify this explanation, simply treat closed cards and normal cards as one and the same beacons you are about to add are similar to places on Google Maps. > First of all, you must make your building floor plan available on Google Maps. You can do this by following the steps below to send the location of your lighthouse using building floor maps so that your lighthouse location can be automatically aligned with your stores / buildings. https://support.google.com/maps/answer/2803784?co=GENIE.Platform%3DDesktop&hl=en

Once your floor plans appear on Google Maps, you can send your beacon location using the Map Marker tool (Retired March 2017, after which it has moved to Google Maps). You can then use the Google Maps API Maps object to work with your internal map, including getting the 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 you are accessing. You can use the getLevels () function to get all the levels in the building, and then use getActiveLevelIndex () to get the active level you are working on.
Once you get to the desired floor, there remains interaction between the Google Beacon API with the maps you created. latLng and internalLevel in the Proximity Beacon API will then return the exact location and level of detail that your beacons are located.

+2
source

I believe that there are currently no plans to use registered beacons for indoor routes or even for a wide / long type location (more to display a semantic location), but I think this is a very good FR, so I went ahead and added it to Android problem tracker: Including support for BLE beacons in FusedLocationProvider . Please run it to receive updates.

As you can read in other answers, beacons can be used at present to improve the accuracy of determining the location in the room for third-party applications, but this requires a lot of developer work, and it is not supported by the Google Maps mobile phone.

0
source

You can use this link to download the internal map of the building.

https://maps.google.com/floorplans/find

Send the floor details and everything.

Hope this helps.

0
source

Source: https://habr.com/ru/post/1012196/


All Articles