I implemented indoor maps sample app followed by default api demos.
But in my app only indoor maps is displaying not displayed shops positions like default google application as the attached image.
How I will achieve this.
If anybody have idea ,will you please help me.
Thanks in advance.
You can see what some places look like on the inside before you visit. On Google Maps, you can see: The interior of places like stores, airports, or hotels.
It is nearly impossible to tell what is your exact problem without looking at your code. My best guess by looking at your map image is that you are missing some of the keypoints. Take a look at the following methods:
// Initialize type of map
map.setMapType(GoogleMap.MAP_TYPE_HYBRID);
// Initialize 3D buildings enabled for map view
map.setBuildingsEnabled(false);
// Initialize whether indoor maps are shown if available
map.setIndoorEnabled(false);
// Initialize traffic overlay
map.setTrafficEnabled(false);
For detailed information please check this webpage. It clearly explains what do you need. I hope it will help you to resolve the problem.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With