Mobile AR App Development for Museum

NOVASOLUTIONS.TECHNOLOGY is engaged in the development, support and maintenance of iOS, Android, PWA mobile applications. We have extensive experience and expertise in publishing mobile applications in popular markets like Google Play, App Store, Amazon, AppGallery and others.
Development and support of all types of mobile applications:
Information and entertainment mobile applications
News apps, games, reference guides, online catalogs, weather apps, fitness and health apps, travel apps, educational apps, social networks and messengers, quizzes, blogs and podcasts, forums, aggregators
E-commerce mobile applications
Online stores, B2B apps, marketplaces, online exchanges, cashback services, exchanges, dropshipping platforms, loyalty programs, food and goods delivery, payment systems.
Business process management mobile applications
CRM systems, ERP systems, project management, sales team tools, financial management, production management, logistics and delivery management, HR management, data monitoring systems
Electronic services mobile applications
Classified ads platforms, online schools, online cinemas, electronic service platforms, cashback platforms, video hosting, thematic portals, online booking and scheduling platforms, online trading platforms

These are just some of the types of mobile applications we work with, and each of them may have its own specific features and functionality, tailored to the specific needs and goals of the client.

Showing 1 of 1 servicesAll 1735 services
Mobile AR App Development for Museum
Complex
from 2 weeks to 3 months
FAQ
Our competencies:
Development stages
Latest works
  • image_mobile-applications_feedme_467_0.webp
    Development of a mobile application for FEEDME
    756
  • image_mobile-applications_xoomer_471_0.webp
    Development of a mobile application for XOOMER
    624
  • image_mobile-applications_rhl_428_0.webp
    Development of a mobile application for RHL
    1054
  • image_mobile-applications_zippy_411_0.webp
    Development of a mobile application for ZIPPY
    947
  • image_mobile-applications_affhome_429_0.webp
    Development of a mobile application for Affhome
    862
  • image_mobile-applications_flavors_409_0.webp
    Development of a mobile application for the FLAVORS company
    445

Museum AR Mobile Application Development

Museum AR operates in conditions that cannot be fully controlled: varied lighting across halls, display glass in front of exhibits, visitors blocking the camera, older devices with limited ARKit support. The application must be robust in these conditions—otherwise visitors become frustrated rather than impressed.

A well-designed museum AR experience is not simply "look at the exhibit and see animation." It is integration with the exhibition, room navigation, offline functionality, and accessibility.

Technical Stack for Museum AR

Two baseline scenarios determine the architectural approach:

Image Tracking — point at an exhibit or label, supplementary content appears. ARImageTrackingConfiguration is simpler, requires no plane detection, and works through display glass (if reflections are minimal). Limitation: physical markers or high-texture images are required.

Location + Plane Detection — navigate through a room with AR guides. ARWorldTrackingConfiguration + ARGeoAnchor (for outdoor) or custom indoor positioning via Bluetooth Beacons / UWB. More complex, but provides freedom of movement.

Museums typically use a hybrid: image tracking for content activation at specific exhibits, plane detection plus beacons for navigation between rooms.

Image Tracking: Implementation Details

Each AR marker is an ARReferenceImage with a physicalSize parameter (actual image size in meters). Incorrect physicalSize → ARKit misjudges distance → content appears in the wrong position.

let referenceImage = ARReferenceImage(cgImage, orientation: .up, physicalWidth: 0.15) // 15 cm

ARImageTrackingConfiguration.maximumNumberOfTrackedImages limits simultaneously tracked images. Maximum: 4–8 (device-dependent). A room with 50 exhibits cannot load all 50 markers simultaneously. Solution: proximity detection via Bluetooth Beacons—activate tracking only for the nearest 5–6 exhibits.

Marker quality: ARReferenceImage.validate() checks contrast histogram. Labels with small text on white backgrounds make poor markers. Solution: use a specialized QR code next to the label (high uniqueness) or apply invisible UV markers to the exhibit frame.

Content: From 3D Models to Video

Museum AR content is more than a 3D object. A typical set for one exhibit includes:

  • 3D reconstruction (complete appearance, in color—e.g., antique statue)
  • Annotations with facts (hotspots)
  • Animation (mechanism movement, creation process)
  • Video fragment (archival footage, curator interview)

AR video overlaid on an exhibit—via VideoMaterial in RealityKit:

let videoURL = Bundle.main.url(forResource: "artifact_story", withExtension: "mp4")!
let player = AVPlayer(url: videoURL)
let videoMaterial = VideoMaterial(avPlayer: player)
planeEntity.model?.materials = [videoMaterial]
player.play()

Offline functionality is critical. Museums often lack Wi-Fi in exhibition halls or it is overloaded. All AR resources must be available offline. Strategy: on first launch (or when Wi-Fi is available)—background load content for the current exhibition. BackgroundTasks framework for iOS, WorkManager for Android.

Content package size: 20–100 MB per exhibition—acceptable for one-time pre-visit downloads.

Accessibility and Age Groups

A museum is a public institution. The application must work for audiences from 8 to 80 years old, on visitors' own devices (not museum-issued), including older ones.

Minimum device requirements: iOS 14+ (ARKit 4), Android 8.0+ with ARCore. iPhone 6s support makes no sense—ARKit requires A9 chip and higher (iPhone 6s is the support boundary, but plane detection works poorly). The realistic minimum is iPhone 8 / iOS 14.

Dynamic Type for AR labels—via UIFont.preferredFont(forTextStyle:). Users with large system fonts should see readable annotations.

Audio guide as AR alternative—for users without compatible devices or with limited vision: a "Listen" button on each exhibit without requiring AR.

Museum System Integration

Museum CMS (usually Axiell, MuseumPlus, or custom) stores exhibit data: inventory numbers, texts, images. Integration via REST API: when a marker is scanned—query by inventory number → receive text, multimedia. Cache locally.

For editing AR content without developers—admin panel: curators upload 3D models, video, text → they are linked to inventory numbers → on next app sync, visitors see updated content.

Case Study

A history museum with 3 thematic halls and 120 exhibits. Image tracking via QR codes next to labels (100 markers active simultaneously through lazy loading). Content: 3D reconstructions for 30 key exhibits, text annotations for others. MuseumPlus integration via REST API. Offline caching on hall entry via BLE beacons.

Main challenge: display glass with anti-reflective coating distorted AR tracking. Solution: markers were placed on external side surfaces of cases, not behind glass.

Timeline

Scope Timeline
MVP: 1 hall, image tracking, 20 exhibits 2–3 months
Full application: 3+ halls, navigation, CMS integration 5–9 months
Platform supporting multiple museums 10–16 months

Costs are calculated after detailed discussion of the exhibition, accessibility requirements, and integrations.