I’ve set outdoor view to enabled but no outdoor maps are showing. Any ideas why that might be? I don’t see any errors relating to it.
outdoorView = MPIOptions.OutdoorView(enabled = true)
I’ve set outdoor view to enabled but no outdoor maps are showing. Any ideas why that might be? I don’t see any errors relating to it.
outdoorView = MPIOptions.OutdoorView(enabled = true)
Almost! So for outdoor view, it requires multi-buffer rendering to be enabled. Make sure you’ve enabled that within your app as well.
Here’s an example:
mapView.loadVenue(
MPIOptions.Init(
"5eab30aa91b055001a68e996",
"RJyRXKcryCMy4erZqqCbuB1NbR66QTGNXVE0x3Pg6oCIlUR1",
"mappedin-demo-mall",
), multiBufferRendering = true,
outdoorView = MPIOptions.OutdoorView(enabled = true)
)) { Log.e(javaClass.simpleName, "Error loading map view") }
Aha, thanks! I knew it’d be something simple like that. It’s showing the outdoors in all its glory now!