In the web app manifest of a progressive web app, is it possible to set different orientations based on what page the user is viewing?
Here's what my manifest.json
looks like:
{
"dir": "ltr",
"lang": "en-US",
"name": "My Application",
"scope": "/",
"display": "standalone",
"start_url": "start_page.aspx",
"short_name": "My App",
"theme_color": "transparent",
"description": "My App Description",
"orientation": "portrait",
"background_color": "#00A3CC",
"related_applications": [],
"prefer_related_applications": false,
"icons": [
{
"src": "Images/Icon.png",
"type": "image/png",
"sizes": "192x192"
},
{
"src": "Images/Icon.png",
"type": "image/png",
"sizes": "512x512"
}
]
}
The above manifest causes https://example.com/start_page.aspx
and every other page to be displayed in portrait orientation when the app is installed. Is it possible to force https://example.com/other_page.aspx
to be displayed in landscape orientation while keeping the rest of my site in portrait orientation?