Internal maps do not display all places of the building?

I applied the closed-card sample application, and then the default demo files.

But in my application, only internal maps display non-displayed store positions, like the default Google Google application, like an attached image. enter image description here

How I will achieve this.

If anyone has an idea, please help me.

Thanks in advance.

+6
source share
1 answer

It is almost impossible to tell what your specific problem is without looking at your code. My best guess when looking at your map image is that you are missing some key points. 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);

, , -. , . , .

+2

All Articles