Outdoor Map
Using Mappedin SDK for Android with your own map requires a Pro license. Try a demo map for free or refer to the Pricing page for more information.
The outdoor map shown around the Mappedin indoor map gives users context for their indoor navigation.
Styles
Styles can be applied to the outdoor map to change its colors. Mappedin provides five pre-built styles to choose from.
info
The URLs listed below can be used in Mappedin SDKs. They require authentication and cannot be used in other contexts.
- Classic:
https://tiles-cdn.mappedin.com/styles/mappedin/style.json - Beach Please:
https://tiles-cdn.mappedin.com/styles/beachplease/style.json - Honeycrisp:
https://tiles-cdn.mappedin.com/styles/honeycrisp/style.json - Fresh Mint:
https://tiles-cdn.mappedin.com/styles/freshmint/style.json - Night Blue:
https://tiles-cdn.mappedin.com/styles/midnightblue/style.json - Starlight:
https://tiles-cdn.mappedin.com/styles/starlight/style.json - Dark Roast:
https://tiles-cdn.mappedin.com/styles/darkroast/style.json
To change the style used by the Outdoor map, pass the URL of the style in the outdoorView object of Show3DMapOptions as shown below.
mapView.show3dMap(
Show3DMapOptions(
outdoorView =
Show3DMapOptions.OutdoorViewOptions(
style = "https://tiles-cdn.mappedin.com/styles/darkroast/style.json",
),
),
) { r ->
r.onSuccess {
// Successfully initialized the map.
}
}
The outdoor style can also be changed at runtime using mapView.outdoor.setStyle().
mapView.outdoor.setStyle("https://tiles-cdn.mappedin.com/styles/midnightblue/style.json")