getting Google places indoor data

607 Views Asked by At

I am doing google maps indoor api for a mall. Google maps for android is only displaying floors without shop informations.

I checked this , https://stackoverflow.com/a/26007932/1602333

He's saying that use google places api for getting details about floors. But I couldn't find any floor information in this ,

https://developers.google.com/places/webservice/details?hl=en

The placeId which is I am using is , ChIJ7418PMfIXzkRuJT-zFxZyN0 which is for Inorbit Mall Vadodara. i am not getting any floor information in details responce.

Am I missing something ?

1

There are 1 best solutions below

1
On

You can look at how to display indoor maps from Google example

import com.google.android.gms.maps.*;
    import com.google.android.gms.maps.model.*;
    import android.app.Activity;
    import android.os.Bundle;

public class MapPane extends Activity implements OnMapReadyCallback {

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.map_activity);

    MapFragment mapFragment = (MapFragment) getFragmentManager()
            .findFragmentById(R.id.map);
    mapFragment.getMapAsync(this);
}

@Override
public void onMapReady(GoogleMap map) {
    // Some buildings have indoor maps. Center the camera over
    // the building, and a floor picker will automatically appear.
        map.moveCamera(CameraUpdateFactory.newLatLngZoom(
                new LatLng(-33.86997, 151.2089), 18));
    }
}

If you need to add floor plan, you can do it over here.