All Products
Search
Document Center

Mobile Platform as a Service:H5 container positioning offset solution

Last Updated:Jun 17, 2026

If you encounter H5 container positioning offset when using mPaaS containers, add the following code to skip LBS positioning:

- (void)application:(UIApplication *)application beforeDidFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{

    // Skip LBS targeting
    [LBSmPaaSAdaptor sharedInstance].shouldSkipLBSLocation = YES;

    .......
    
}